Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
3answers
2k views

How to build Boost with C++0x support?

I don't know how to build Boost with C++0x compilers. Which option must be given to bjam? Should the user.config file be modified?Can someone help me? Best, Vicente
7
votes
1answer
1k views

Building a subset of boost in windows

I'm trying setup a subset of boost and get it properly compiled using bjam, however I'm not getting the result I'm looking for. I'm working on windows using boost 1.37.0. Let's say I want the ...
6
votes
4answers
3k views

what is boost jam and is it jam worth migrating to?

what is boost jam and is it jam worth migrating to? I understand that jam is build system built by perforce however I am not sure how the boost jam & regular jam is different. I'm also hoping ...
6
votes
5answers
3k views

Boost 1.37

I can't find a pre-built set of MSVC++ libs for Boost 1.37.0 (latest stable version), only the source. I don't understand how their weird build system works... are there any places I can find a ...
5
votes
0answers
36 views

Current state of pythonPort in Boost.Build.V2

I'm currently using bjam boost.build as my preference C++ building tool. But using bjam programming language is sometimes quite hard and non-intuitive to me. Henceforth I'm waiting with impatience to ...
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
1answer
1k views

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

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 ...
4
votes
1answer
5k views

Static Compile of Thread Example

I compiled the Boost C++ libraries as follows: bjam install variant=release link=static threading=multi runtime-link=static No errors. Then I compiled the following source: #include ...
3
votes
4answers
502 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 ...
3
votes
2answers
829 views

How to tell what optimizations bjam is using to build boost

I'm building the boost libraries with bjam for both the intel compiler and vs2008, and I can't tell what optimizations are being passed to the compiler from bjam. For one of the compiler's gcc, I can ...
2
votes
1answer
187 views

Add to include path ( -I ) in Jamroot

I have a boost iostreams based project and executing export CPATH=/apps/bzip2/include/ before bjam link=static works. Is there a way to set this in the Jamroot : project infracore : ...
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
1answer
252 views

How to create simple Boost.Build make file containing links to libs I use on Windows and Linux?

main.cpp which should be executable C++ app. It shall depend on Lib1 be a required to be compiled first (before main.cpp) project-lib (with lib1.h and lib1.cpp inside some separate folders) ...
2
votes
2answers
259 views

Boost Jam vs Jam

I recently built the Boost libraries in Linux and noticed the package needed an executable called bjam in order to do the build. Is bjam related to jam? If it is related to jam, did they somehow ...
2
votes
1answer
439 views

Bjam: ignore specific library

Using Visual Studio, it is possible to 'Ignore Specific Library' (Project Properties > Configuration Properties > Linker > Input > Ignore Specific Library). We found this useful in a project. Now we ...
2
votes
2answers
2k views

Change GCC version used by bjam

I am trying to build a library (luabind) with bjam. I came across an error and it seems like the problem is that I need to compile with gcc 4.2, but the default on this computer (Mac OSX) is 4.0. I ...
2
votes
2answers
124 views

How can I work with filenames with spaces in bjam?

I need to describe an external library in a Jamfile. The location of the library is held in an environment variable. set EX_LIB_PATH=C:\Program Files\Ext Here is the snippet from the Jamfile: ...
1
vote
1answer
66 views

Why does boost.log crash on Windows XP?

I'm using boost.log. Apart from the extreme amount of agro actually getting and building it, it's been running OK on Windows 7 and Vista. I'm now trying to use the application on Windows XP, but ...
1
vote
2answers
40 views

linking between two modules with distutils

I have recently exposed a problem when working with several compiled C++ modules and would like to rephrase the question. I have two modules 'mod1' and 'mod2'. They are compiled as two distinct ...
1
vote
1answer
45 views

ar command line length

I have an extremely long command line given to ar (android ar exactly) by bjam, and ar just corrupts a file path and complains that file does not exist. Is there a way to make ar allocate a bigger ...
1
vote
1answer
56 views

Add -L to project in bjam

I have boost_iostreams in my project and it depends on bzip2 and zlib. Hence running export LIBRARY_PATH=/apps/bzip2/lib:/apps/zlib/lib and then running bjam link=static works. Is there a way to ...
1
vote
1answer
297 views

bjam `Unable to find file or target named 'libboost_python'`

What am I missing in my Boost.Python configuration/installation? I'm trying to compile tutorial example, and I get error with libboost_python not found cd ...
1
vote
1answer
367 views

How to compile Boost.Process library?

So there is Boost.Process 2006, Boost.Process 2008 and most recent Boost.Process seems like 2009 by looking at sources) I need some kind of step by step guidance on how to compile that beast. Because ...
1
vote
1answer
259 views

How do I force bjam in boost to build cleanly and consistently?

Is there any way to get bjam to build cleanly and consistently? It seems fairly random when it decides to rebuild my libs and when it decides to simply copy them over from somewhere. I've tried bjam ...
1
vote
4answers
2k views

Unable to build Boost libraries with GCC

I am using Windows 7 64-bit, and want to compile the non-precompiled libraries (specifically, I need Filesystem) from the command line (I do not use MSVC). I have MinGW, but read on the Boost website ...
1
vote
1answer
118 views

Automatically including object files using Boost.build

I'm using the latest version of boost-build found in boost 1.46. Given main.cpp which depends on a.h and b.h, using the boost-build's ability to auto-detect dependencies my jam file is simply exe ...
1
vote
1answer
383 views

How to build boost for msvc9.0 instead of msvc10.0?

I've run the bootstrap batch and then the bjam exe, but as I have MSVC 2010 it generates the -vc100- files in the $boost\stage\lib. I'm using vc90 libraries so I need the *-vc90-* files, but if I ...
1
vote
1answer
818 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
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
3answers
160 views

Boost 1.44 --builddir and --includedir not working in Windows?

I'm trying to build Boost 1.44 into a certain directory instead of the default. I do the same thing on my linux machine by doing the following steps from the boost root directory: ./bootstrap.sh bjam ...
1
vote
1answer
414 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
463 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
837 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
214 views

How do I specify 64-bit machine architecture when building boost libraries with bjam on solaris?

How do I specify 64-bit machine architecture when building boost libraries with bjam on solaris?
1
vote
1answer
66 views

Is it possible to do an out-of-source build with bjam?

Due to quota restrictions I really need to build a project that I'm working on with all of the temporary files and build products in a separate directory (in my case /tmp/somewhere). I'm used to ...
1
vote
1answer
736 views

how to create a new variant in bjam

I've tried reading the documentation but it is rather impenetrable so I'm hoping someone may have a simple answer. I want to define a new 'variant', based on 'debug', which just adds some macro ...
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
665 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
1k views

Building and using shared libraries with bjam

Using bjam on ubuntu, I am building a c++ shared library and trying to use it in an executable. I have to build as shared since it wont link as static (lots of undefined references arise). Thats fine. ...
1
vote
1answer
449 views

change command used by bjam when installing C++ boost library

I am trying to make the installation of boost library a little bit slower. So I add this in /etc/site-config.jam using gcc ; ; "sleep 10; g++" ; However, it gives this error: $ ./bjam install ...
1
vote
3answers
1k views

Makefile generator for c++?

Do the following build systems: cmake, jam and bjam also generate makefiles like qmake does? What utility does MS visual c++ uses to generate make file?
1
vote
1answer
541 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 ...
1
vote
1answer
222 views

Boost Jam Not Producing Thread Library on Windows

I downloaded the latest Boost Jam binary from SourceForge and I'm using the command: bjam toolset=gcc --build-type=complete stage I've installed Cygwin along with the GCC compiler. While the ...
1
vote
1answer
233 views

Does Boost::Jam (bjam) have a “question mode”?

I use Code::Blocks with Boost::Jam. A recent update to C::B added some new "custom makefile" commands, one of which is "ask if rebuild is needed". According to this message, it's meant to call make in ...
0
votes
0answers
11 views

Boost: How bjam constructs a library name?

I was looking in the jam files how the name of library is constructed. Example: libboost_log-mgw46-mt-1_48.dll I would like to ignore the last part, how to pass linker the -o parameter with my ...
0
votes
1answer
61 views

How do I use a library in multiple classes w/o getting “multiple definition” errors

I am starting a new c++ project and I want to use Boost.Build / bjam. I'm getting "multiple definition" errors because, I think maybe, the jam file is not written correctly or I am not including the ...
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
0answers
60 views

boost 1.48 compilation in linux(centos) how do i get the compiler name in the files with bjam?

Im trying to compile the boost 1.48 in centos 5.6 . i need the files to be in this format boost_program_options-gcc41-mt-1_48 im compiling with this bjam flags : ./b2 -q --toolset=gcc ...

1 2