$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Vladimir Prus (ghost_at_[hidden])
Date: 2004-10-20 04:26:01
Hi Johan
> a couple of minor bbv2 questions:
>
> - Is there a way of declaring and using path-independent pre-built targets?
Could you clarify?
> - Where did $(SUFLIB) et al go?
It's 'type.set-generated-target-suffix'.
> - How do I set up a linker search path (global / per project)?
Use the <library-path> property as requirement on the top-level project.
project :
: requirements <library-path> whatever
;
It's not possible to get this globally, but when configuring toolset you can
pass additional options:
using gcc : : : <linkflags>-Lfooo ;
> - Reference for the various available requirements?
Take a look at:
http://boost.org/boost-build2/doc/html/bbv2.advanced.builtins.features.html
though it's not complete.
> - How can I run specific build system tests (e.g. tests for path.jam)
bjam --debug-module=path
HTH,
Volodya