$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Jeff Flinn (TriumphSprint2000_at_[hidden])
Date: 2008-06-09 14:19:49
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
Thanks, Jeff