$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] [tools] How to use 1.58.0/bjam --toolset=sun for specified stdlib feature?
From: John Maddock (jz.maddock_at_[hidden])
Date: 2015-04-18 14:04:42
> The question is, how exactly should I define bjam's options in my bash
> script shown above, if for example, I want to use gnu library in c++03
> mode?
bjam toolset=sun stdlib=gnu
Or for GNU lib in C++11 mode:
bjam toolset=sun stdlib=gnu cxxflags=-std=c++11
HTH, John.