Jeff Flinn wrote:
Jeff Flinn wrote:
Trying to build universal static libs for darwin.
bjam --toolset=darwin --architecture=combined stage
appears to only build libboost_*_mt-1_35.dylib's and libboost_test_exec_monitor-mt-1_35.a. Whereas the default for 1.34.1 was to build all libs.
I need to build release and debug static libs. I'm having problems finding the command line flags in the docs.
This is my first foray into mac/unix builds for boost. Any help is appreciated.
Thanks, Jeff
Ok, that was easy after reading the boost build docs:
bjam --toolset=darwin --architecture=combined link=static threading=multi stage debug release
For Posterity, the full command req'dis: bjam --toolset=darwin --architecture=combined link=static threading=multi address-model=32 macosx-version=10.4 stage debug release Thanks, Jeff