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 you go.
Or so I thought.
The problem is that some of the Boost libraries depend on each other, and - using the default build process going through ./bootstrap.sh
/ ./bjam
- it seems that the --prefix
path is not added to the library search path for the Boost libs, i.e. no -Wl,-rpath
is applied. That means that Boost libraries depending on other Boost libraries cannot find those at runtime.
My application - linking those /custom/path
Boost libraries - already fails at ./configure
stage because libboost_filesystem.so
cannot find libboost_system.so
, even though I passed -Wl,-rpath=/custom/path/boost/lib
to my own compiler line (i.e. the correct path to the Boost libs, I double-checked that libboost_system.so
is there).
Now, to avoid heavy-handed methods like setting LD_LIBRARY_PATH
, I'd like to build Boost in a way so that all the Boost libraries have the proper search path for the other Boost libs compiled into them. However, I was unable to find the proper procedure for that. Can anybody help me?