I want to recompile our boost library, but with the -g, debugging flag enabled. I've been reading and see that we build boost with jam
. While I know make
very well, jam
has always eluded me and my frustration is mounting.
Asked
Active
Viewed 4,269 times
10

John Rocha
- 1,656
- 3
- 19
- 30
-
I fond the properties `cxxflags` and `cflags`, that looks like what i want to do... trying that now. – John Rocha Mar 14 '12 at 20:44
1 Answers
9
Sorry. I know answering your own question is distasteful, but I was able to figure this out shortly after posting. the cxxflags
and cflags
properties are what I need to use, as outlined at: http://www.boost.org/boost-build2/doc/html/bbv2/overview/invocation.html under the PROPERTIES sectin.

John Rocha
- 1,656
- 3
- 19
- 30
-
9
-
See http://meta.stackexchange.com/questions/17463/can-i-answer-my-own-questions-even-those-where-i-knew-the-answer-before-asking – John Carter Mar 14 '12 at 21:46
-
@PlasmaHH Reading the extended fine manual. The normal build instructions didn't have it.. but then again, it *IS* labeled quick start. – John Rocha Mar 14 '12 at 22:06