$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Arjan Knepper (arjan.knepper_at_[hidden])
Date: 2006-04-12 10:18:07
Vladimir Prus wrote:
> On Wednesday 12 April 2006 16:44, Arjan Knepper wrote:
>
>> I need to add the -WD flag when compiling sources for a DLL and the -WA
>> when compiling sources for a static LIB. How do I achieve that?
>>
>
> Hi Arjan,
> something like:
>
> flags dmc.compile OPTIONS <link>shared : -WD ;
> flags dmc.compile OPTIONS <link>static : -WA ;
>
>
When using the above flags I see the -WD flag on building an executable
which is linked against shared libs.
The -WD flag should be used ONLY when building an actual shared lib (DLL).
The -WA flag should be used when building EXE or building a static LIB.
Is that possible or did I misunderstood the suggestion?
BTW The BBv2 example/hello and example/libraries do compile and run ok
for dmc.
Thanks
Arjan