pcaudiolib
pcaudiolib copied to clipboard
Requires C11
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.