Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
1k views

How can I decode the boost library naming?

I tried to find out that gd means in boost library name and I only found two other people looking for the same thing. I suppose it should be a place where this is clearly documented and I would like ...
4
votes
1answer
2k views

`bjam --toolset=` and tag values for Apple compilers?

When building Boost binary libraries with bjam, one may specify which compiler to use, without specifying a particular compiler version, by using certain values for the --toolset= option. For ...
4
votes
2answers
4k views

Boost bjam versus GNU make

I am a newbie to Boost C++ libraries. I was wondering if there are any advantages of Boost bjam over GNU make? And what are the cons if I use make for building C++ code utilizing Boost.Python ...
3
votes
2answers
128 views

Building a subset of boost libraries

I'm trying to build only a subset of boost libraries. For example, I have this code: test.cpp: #include <boost/thread.hpp> int main (){ return 0; } I then do ./bcp --scan test.cpp ...
3
votes
4answers
503 views

Build Boost 1.45 using MinGW

Try to compile Boost 1.45 on Windows XP using MinGW. I did it a year ago and almost forgot how to repeat it. %PATH% contains MinGW path. user-config.jam contains using gcc ; bjam (the ntx86 one) from ...
2
votes
1answer
43 views

rule to get bjam's callstack or why am I registering 2 identic generators

Is there a rule that returns the current call in bjam ? I know if you call "bjam.exe -d+10 ..." it will print you the callstack but your own ECHO's not. What I intend to do is print the callstack in ...
2
votes
2answers
2k views

Building basic Boost applications with bjam

I can find tons of general purpose documentation on Boost.Build, but surprisingly nothing on how to use it to build simple Boost applications. I compiled Boost for mingw with bjam, got all the ...
1
vote
1answer
822 views

Building boost under msys, can't find mingw.jam

I need to build boost to use the regex library. I was able to creat bjam using bootstrap.sh like so: ./bootstrap.sh --with-toolset=mingw Note - if I leave out the --with-toolset=mingw argument ...
1
vote
0answers
305 views

Writing jamroot.jam with default-build properties

How would I write a jam file, such as jamroot.jam for my project such that executing 'bjam' in the jam file directory runs the equivalent of 'bjam toolset=gcc toolset=msvc variant=debug ...
1
vote
1answer
50 views

How to specify “install --backup” in bjam

I have a Jamfile with the following commands . I think bjam uses the unix install command to install. I'd like to change that to install --backup or install -b for a particular command. exe datagen ...
1
vote
1answer
415 views

Getting a buildable Boost extract with bcp

I'm using bcp to extract Boost.Archive from Boost. Unfortunately I can't build this extract. Boost.Archive is not a header-only library. bjam complains Unable to load Boost.Build: could not find ...
1
vote
1answer
464 views

Build Boost for Windows CE 5.0

Does anyone have a set of instructions for building boost libraries for use on Windows CE? I've found some discussions on it: boost build mailing list and another one from the boost build mailing ...
1
vote
1answer
395 views

How to force Boost to use rpath?

I have to build Boost outside the "usual" directory tree (i.e., /custom/dir instead of /usr), which is not that much of a problem: Just pass --prefix=/custom/path to ./runscript.sh / ./bjam, and there ...
1
vote
2answers
840 views

How to change include path using bjam

I have the following directory structure: APPDIR/ APPDIR/APPHDRS (has *.h) APPDIR/APPLIBSRCS (has *.cpp need to make a library, say libtest.a) APPDIR/APPMAIN (has main.cpp that will compile if g++ ...
1
vote
1answer
174 views

How do you create rules in BJAM?

I would like to compile a file with a specific compiler not supported on boost. I made a rule: rule my_rule ( source : target ) { compile_specially source target ; } actions compile_specially { ...
1
vote
1answer
666 views

Linking to boost_filesystem in a bjam-based project

I'm trying to set up Boost.Build for my own project, which references libboost_filesystem. When I run bjam release avg_asp I get the following output: andreas@rodin:~/src/libdoas/src/tools$ bjam ...
1
vote
1answer
542 views

Boost.Build best practice to introduct a pre-built library to the project

We currently use the `lib' like this to introduce an external pre-built library into a project: lib ace_lib_static : : <name>libboost_ace-vc80-mt-sgd.lib <variant>debug ...
0
votes
0answers
15 views

How do I import a path-constant or constant from a non-parent Jamfile?

I have a Jamfile hierarchy like: data/reader/vendor/Jamfile utility/api/vendor/Jamfile I want to access variables declared in utility/api/vendor/Jamfile from data/reader/vendor/Jamfile. How can I ...
0
votes
1answer
47 views

Why does bjam seem to ignore my arguments?

I'm trying to build boost.lib with bjam, but no matter what I do, I can't get it to recognise my BOOST_LOG_NO_COMPILER_TLS flag. I'm building like this: bjam address-model=32 --toolset=msvc-10.0 ...
0
votes
1answer
72 views

boost build: disable -Weffc++ per module

I use boost build for a large project that is divided into different subprojects. Here the jamroot file: project : requirements <variant>debug:<define>DEBUG ...
0
votes
0answers
115 views

Building boost_thread with stlport using bjam

I am trying to build Boost thread from boost_1_38_0 using stl port. I have modified the user-config.jam as follows using stlport : 5.1.0 : C:/STLPORT_PATH/STLport-5.1.0/stlport ...
0
votes
1answer
439 views

bjam runtime-link=static

I am trying to compile in a way such that the exec links to gcc statically. I presumed running bjam link=static runtime-link=static should do the trick ? When I tried that I get the following errors ...
0
votes
0answers
111 views

bjam install: How does one rename the installed target?

Bjam install allows to to copy the target to a install directory. Here I can install the target hello to the location /usr/bin install dist : hello : /usr/bin ; However suppose I had a need to ...
0
votes
1answer
248 views

Generate package config file automagically using Scons, bjam, and/or cmake

Hey Stackoverflowers: one comment and one question. Comment: You guys/girls are great, thanks for taking a look. Question: Can Bjam, Scons, or Cmake easily install a .pc file for library projects? ...
0
votes
1answer
61 views

bjam scripts output a define

Is it possible to write to console a define from a bjam script? I have something like $(PROJECT_ROOT) and I want to echo it.
0
votes
3answers
496 views

Help compiling and using boost c++ libraries

I am working on a C++ project where I'd like to use boost's serialization libraries. I downloaded and installed the latest boost libraries from boost's home page. When I tried to compile and run the ...
0
votes
1answer
178 views

Is it possible to install the debug and release variant of a library with same command?

I am using the following Jamfile ( in directory /home/morpheus/base/CDef ) : lib CDef : [ glob *.cpp ] : static ; install libCDef : CDef : LIB "/home/morpheus/base_install/lib" : release ; ...
0
votes
2answers
455 views

How could I change boost release variant to use cxxflags=-O2?

On my machine cxxflags for variant=release is -O3 by default. I need to change it to -O2. Please advise how to proceed. I am fine with defining a new variant as well, if someone could advise me on ...
0
votes
1answer
40 views

Do newer versions of BJam support backwards compatibility with older versions of Boost?

I'm trying to build version 1.35 of Boost with the newest version of bjam that is bundled with version 1.42 Boost. Will this adversely affect the results of the build? Is this even possible? The ...
0
votes
1answer
1k views

simple install using bjam

I'm a boost.build newby and while bjam is quite easy to use for most compiling tasks and I didn't figured out how to do something that should be really simple : installing my application in the ...