|
From: <pl...@pi...> - 2015-12-09 20:08:08
|
> It's not from a package. It's a standard library that any C++ compiler > links against. > > Mac OS X ships with both libstdc++ and libc++. Only libc++ supports > C++11, but libstdc++ was the default before version 10.9. > > Mojca > There is a compiler switch in gcc to force only stdc syntax, IIRC -std=c99 This should flush out any C11 specific code as errors. I think that is what you are trying to do. If that is not exactly what you need, you will probably find there is another switch to turn of C11 specifics that are not in your earlier libc++ Peter |