What is the value of "Compiler Default" for "C++ Standard Library" and "C++ Language Dialect" in Xcode 4.5?
My guess is libstdc++ and GNU++98, but it would be nice to have clarification.
From the Xcode 4.5 release notes:
Projects created using this Xcode release use the new libc++ implementation of the standard C++ library. The libc++ library is available only on iOS 5.0 and later and OS X 10.7 and later. 12221787
To enable deployment on earlier releases of iOS and OS X in your project, set the C++ Standard Library build setting to libstdc++ (Gnu C++ standard library).
I notice that creating a new project explicitly sets GNU++11 and libc++, but "Compiler Default" is probably something else.
Here is the best way to find out:
Just build a test project with the compiler defaults and run it.