The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
20 views

openbsd boost compiler error

I am trying to build boost 1.53 from the ports branch and I get the following errors error: Duplicate name of actual target: <pstage/lib>libboost_system.a error: previous virtual target { ...
0
votes
0answers
20 views

Error while running bjam in Boost Python

I have installed boostpro (boost 1.47) in my system. (Windows 7 32-bit) when I run bjam command on "C:\Program Files\boost\boost_1_47\libs\python\example" I get the following error C:\Program ...
1
vote
1answer
72 views

How can I get Clang colors to work in boost-bjam?

b2 release link=static toolset=clang works, but it does not show the nice colors that I find useful in clang's output.
1
vote
1answer
123 views

error during boost 1.53.0 installation

I'm following the steps at http://www.boost.org/doc/libs/1_53_0/doc/html/bbv2/installation.html, but I get the following error in step 3 ./b2 install --prefix=PATH-TO-PREFIX import error: length of ...
1
vote
1answer
56 views

How do I get boost-bjam to properly id my libraries when they build?

On Debian/squeeze in /usr/lib I have: /usr/lib/libboost_python-py25.so /usr/lib/libboost_python-py26.so I'm trying to build /usr/lib/libboost_python-py27.so to go with a pythonbrewed ...
0
votes
0answers
29 views

Building custom boost library names

How does one build boost with custom library/DLL names? There are two reason for this -- Our software simultaneously runs 32-bit and 64-bit versions of itself, and things are easier if the library ...
0
votes
0answers
88 views

Select (sub)BOOST_AUTO_TEST_SUITE to compile and execute using boost build

To reduce compilation-time/ dependencies/ complexity/ ..., I want to execute a specific sub-testsuite. For better explanation, lets use a simple example: test.cpp: #define BOOST_TEST_MODULE simple ...
2
votes
0answers
82 views

Portable compile parameters of a Jamfile

Here is a Jamfile that I currently use to build a test. exe file_test : file_test.cpp ../src/file.hpp ../src//file : <cxxflags>--std=c++11 : <linkflags>-ltag ...
0
votes
1answer
286 views

Boost Python hello example gives errors .

I have been trying to get Boost.Python running . I am following the steps mentioned here http://www.boost.org/doc/libs/1_50_0/libs/python/doc/tutorial/doc/html/python/hello.html . However when i try ...
1
vote
1answer
176 views

Boost.Python installation failing with bjam errors

I have been struggling to get Boost.Python running . i am following the steps mentioned in http://www.boost.org/doc/libs/1_41_0/libs/python/doc/building.html . I followed section 3.1 step 2 . Bjam ...
0
votes
0answers
63 views

Command line potions for Boost Cross compilation

I'm modifying user-config.jam as specified at http://www.boost.org/boost-build2/doc/html/bbv2/tasks/crosscompile.html to cross compile the Boost libraries. Can I specify these parameters from the ...
1
vote
2answers
182 views

Building Boost 1.52 with non-standard location of MinGW

I tried to build Boost from source for 64bit using MinGW (x64) but failed when creating the bjam.exe. Any pointer to help is appreciated. Thanks. Package: Boost 1.52.0 (download from sourceforge, ...
1
vote
0answers
116 views

Does bjam's cxxflags option remove trailing minus signs?

I'm trying to pass a Visual-C++ compiler option /Zc:wchar_t- (note trailing minus to switch it off) to bjam, boost's build tool like so: bjam --build-type=complete runtime-link=shared variant=debug ...
0
votes
0answers
98 views

building documentation for boost-log

I am somehow stuck. I would like to build the latest beta version of boost-log. So I symlinked the boost/log and libs/log directories into the boost 1.51 tree and was able to successfully build all ...
1
vote
0answers
112 views

Building Boost in Release mode with Asserts

This seems to be a really hard thing to google for based on all the keywords in the question. When building boost with bjam / b2, how do I get a fully-optimised release build but with asserts ...
0
votes
2answers
82 views

Boost build how-to: native-built tools in a cross-compile environment

I have ported a project using boost-build from Windows (using msvc) to Linux (using gcc), and am now porting it further to a cross-compiled Linux (also using gcc). I want to support all 3 platforms ...
0
votes
1answer
111 views

BOOST- BJAM SETTING PATH FOR VC++ 6 IDE [closed]

Recently I build BOOST release 1_34_1 for VC6 with the latest bjam (boost-build-2.0-m12) (I have just downloaded souce and run bjam , no changes made anywhere ) i used following command bjam ...
0
votes
1answer
274 views

Unable to determine lua include directory

I am trying to install Luabind in my Windows 8 RP. This is what I have done so far. My Visual Studio is 2012 RC version. I have installed LuaforWindows 5.1.4 I have downloaded luabind-0.9.1 I have ...
0
votes
1answer
96 views

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 ; ...
1
vote
1answer
102 views

Using bjam's pythonpath feature

I have a Jamfile that I am using with Boost.Python to wrap some C++ classes. I have the Jamfile automatically running a python script and loading the extension as a post-compile step: rule run-test ( ...
2
votes
3answers
1k views

How do I build boost with Visual Studio 2008 when I have multiple Visual Studio versions installed?

I know how to build boost with the latest visual studio on my machine (this question, for example) However, I need to build the libs for Visual Studio 2008 (vc9) I tried using toolset=vc9 but I get ...
0
votes
1answer
71 views

Boost-build/BJam language - checking the value of a flag

I need to edit a .jam file used by boost-build for a specific kind of projects. The official manual on BJAM language says: One of the toolsets that cares about DEF files is msvc. The following ...
0
votes
0answers
74 views

I am unable to build boost.python with gcc 3.3.5 and python2.4 : compilation error

In file included from boost/unordered/detail/emplace_args.hpp:16, from boost/unordered/detail/allocator_helpers.hpp:18, from boost/unordered/unordered_set.hpp:17, from boost/unordered_set.hpp:16, ...
1
vote
1answer
159 views

Boost-bjam: link result with precompiled library

What should I put into my jamroot.jam file so that libAPLibrary.so is linked with the result of MyProject compilation? root |-MyProject | |-jamroot.jam | |-AnotherProject |-lib ...
0
votes
1answer
236 views

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 ...
2
votes
1answer
867 views

Build with Boost.build and link against boost

As I am starting a project with boost lib, it seems my set-up isn't working : main.cpp : #include <boost/asio.hpp> int main(int argc, char* argv[]) { boost::asio::io_service io_service_; ...
0
votes
1answer
41 views

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 ...
1
vote
0answers
47 views

make bjam run a script before compiling

Is it possible to have bjam run a script prior to building? If so, how? I would like apply a patch to the code before compiling, but do not want to change the normal workflow for developers. Thanks!
4
votes
2answers
1k views

Build 32 and 64 bit libraries for boost at sametime?

Will the option "--address-model=32,64" build both 32 and 64 libraries or do you have to do two separate builds?
0
votes
1answer
380 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
245 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 ...
3
votes
2answers
450 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 ...
0
votes
0answers
362 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 ...
2
votes
1answer
86 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 ...
0
votes
1answer
1k 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
1answer
436 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
137 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.
4
votes
1answer
2k 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 ...
4
votes
6answers
2k 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 ...
1
vote
0answers
433 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
71 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
2k 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 ...
4
votes
1answer
3k 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 ...
0
votes
1answer
352 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 ; ...
3
votes
2answers
766 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 ...
2
votes
1answer
993 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
890 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
837 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
2k 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++ ...
13
votes
3answers
4k 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 ...

1 2