$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Vladimir Prus (ghost_at_[hidden])
Date: 2003-09-02 09:31:46
Wieger Wesselink wrote:
> The link command of BBV2 has the form 'g++ -s ...'. This works fine
> on cygwin, but not on linux. If I replace -s by -static, it does
> work on linux.
And, BTW, "-s" option means "strip debug info". It's on in release build. The
static linking of runtime should be enabled by -Wl,-Bstatic option at the end
of command line, but somehow it does not work.
- Volodya