11 Nov
2015
11 Nov
'15
7:47 p.m.
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 Thomas