pcaudiolib icon indicating copy to clipboard operation
pcaudiolib copied to clipboard

Requires C11

Open ryandesign opened this issue 4 years ago • 0 comments

The README says pcaudiolib requires "a functional c compiler" however that does not appear to be sufficient. It fails to build with the older versions of clang included with Xcode on OS X 10.9 and earlier:

src/TPCircularBuffer/TPCircularBuffer.h:55:14: fatal error: 'stdatomic.h' file not found
    #include <stdatomic.h>
             ^

I believe this means you actually require a C11 compiler or newer. If that's intentional, please update the readme with that requirement.

ryandesign avatar Aug 18 '21 03:08 ryandesign