$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] How to build Boost with C++0x compilers
From: Larry Evans (cppljevans_at_[hidden])
Date: 2010-05-22 09:27:56
On 05/22/10 05:21, vicente.botet wrote:
> Hi,
> I don't know how to build Boost with C++0x compilers. Which option must be used with bjam? Should the user.config file be modified? 
> 
> Can someone help me?
> 
Vincente,
Here's what I have near the top of my user-config.jam:
-{--cut here--
import toolset : using ;
#  Configure gcc
#
using gcc
   : 4.4_20090630
   : "/home/evansl/download/gcc/4.4-20090630/install/bin/g++"
   : <cxxflags>-std=gnu++0x
   ;
using gcc
   : 4.4_20090630_v
   : "/home/evansl/download/gcc/4.4-20090630/install/bin/g++"
   : <cxxflags>-std=gnu++0x
     <cxxflags>-DCXX0X_VARIADIC_TEMPLATES
   ;
-}--cut here--
The second entry is for using variadic templates.  Then:
   bjam --toolset=gcc-4.4_20090630_v
or something like this is used to invoke the variadic compiler created
in:
home/evansl/download/gcc/4.4-20090630/install/bin/g++
HTH.
-Larry