bjam is the old name of the engine used by Boost.Build The new name is b2
Questions tagged [bjam]
263 questions
0
votes
1 answer
Boost.Build conditional variable
How can I set a variable in Jamfile, that's value would depend on used feature ?
That is, I am using feature library:
import feature : feature ;
feature myoption : A B C : symmetric propagated ;
Now I want to set a global variable depending on …

Marc Andreson
- 3,405
- 5
- 35
- 51
0
votes
1 answer
Boost wave - building with MSVC 64 bit
I need a dynamically linkable build of some boost libraries, and wave is one of them. When using the b2.exe command line tool, some libraries won't build (among them is wave). This is what I used for the command line parameters:
C:\boost>b2.exe…

teodron
- 1,410
- 1
- 20
- 41
0
votes
1 answer
Error building Boost 1.50 with bjam on MSVC 2010
Building Boost 1.50 with bjam on MSVC 2010
I'm trying to build the latest Boost (1.50) using MSVC 2010. I have MSVC 2003 and 2008 installed on the same machine (Windows Vista), and have successfully been able to build Boost 1.50 using both toolsets.…

Rikardo Koder
- 672
- 9
- 16
0
votes
1 answer
Compile boost under win xp with gcc
I'm trying to compile the boost 1.49 using bjam.exe. I found the commandline:
bjam.exe toolset=gcc variant=release threading=multi link=static boost_thread
but it throws some errors:
warning: mismatched versions of Boost.Build engine and…

Joshua Behrens
- 818
- 13
- 23
0
votes
1 answer
How to compile cpp file as objective-c++ based on toolset using Jamfile?
I have a Jamfile and one of the C++ sources MUST be compiled as Objective-C++ on darwin only. How I can make this example Jamfile compile file2 as Objective-C++ on darwin only? Please note that using a MM file extension is not a solution…

junglecat
- 643
- 1
- 10
- 19
0
votes
1 answer
Multiple Boost.Build projects
I have two projects using Boost.Build engine, with the following structure:
|_Project 1
| |_Source files
| |_Jamroot.jam
|
|_Project 2
| |_Source files
| |_Jamroot.jam
How can I trigger the build process of project 1 from project 2, and in…

Marc Andreson
- 3,405
- 5
- 35
- 51
-1
votes
1 answer
Compile with mingw and then debug with visual studio 2010
I compile the project using bjam with following command bjam toolset=gcc (using gcc-mingw-4.5.2)
I want to debug the project in visual studio 2010.How can it be done?
Note:Using bjam is requirment of my system.

YAKOVM
- 9,805
- 31
- 116
- 217
-1
votes
1 answer
C++ Segmentation fault in AIX
Hi I have written a piece of code in C++ at AIX 6 as part of my project as below:
It compiles and build properly.But getting segmentation fault on executing below lines,
"EquipmentSMU _equipmentSMU=_smuArray[i];"
I am building it with bjam and…

user2185374
- 29
- 1