On Wed, Nov 11, 2015 at 11:47 AM, Thomas Trummer
On 11 Nov 2015, at 05:41, Marshall Clow
wrote: Have I missed anything?
I’ve looked into the build related warnings for OS X: The main problem seems be that ‘darwin.jam' defaults to gcc which is just a front-end for clang for quite some time now. Fortunately there is already ‘clang-darwin.jam’ for current versions of OS X. The second problem is the use of C++11 code without providing the corresponding compiler option. So the correct command line for building Boost with a recent OS X version is as follows (and which should probably become the default at some point in the future):
./b2 toolset=clang-darwin cxxflags=-std=c++11
I have a custom toolset which is exactly that "clang-darwin-11" (also clang-darwin-14 and clang-darwin-1z, for that matter :-)) -- Marshall