How to build Boost with C++0x support?
I have found the answer. I was waiting for a features something like ‘std’ and call it as follows: bjam std=0x but currently we need to use the low level variables cxxflags and add the specific compiler flags. For example for gcc we can do bjam toolset=gcc cxxflags=-std=gnu++0x Other compilers will need a different setting. … Read more