Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to determine value of cxxflags in bjam? Or append to it?

Tags:

c++

bjam

I need to add to compiler flags using bjam. So either I need a way to append to the existing flags -- like CXXFLAGS+=whatever using gmake -- or I need to know the currently-used value of cxxflags so I can replace it with my additions.

As usual, the documentation leaves me astonished at the complexity of bjam but no closer to being able to do anything useful with it.

like image 240
c-urchin Avatar asked Apr 27 '10 15:04

c-urchin


1 Answers

If you are only looking to do this on the command line you can add flags by specifying "feature=value" arguments. In the case of the make CXXFLAGS the corresponding would be "cxxflags=--some-option". Refer to the Boost Build docs section on built-in features for other such possible features to use. If you are using Boost Build as your build system, and hence need to specify them in your Jamfiles, then you need to add requirements to you project and/or targets (see BB projects and BBv2 targets).

like image 164
GrafikRobot Avatar answered Oct 01 '22 21:10

GrafikRobot