Boost logo

Boost-Build :

Subject: Re: [Boost-build] Trouble running test in the Boost Graph library
From: Vladimir Prus (ghost_at_[hidden])
Date: 2011-12-15 07:50:34


On 15/12/11 16:47, Jens Müller wrote:
> Am 15.12.2011 13:29, schrieb Vladimir Prus:
>> On 15/12/11 03:44, Jens Müller wrote:
>>> >
>>> > $ ../../../tools/build/v2/bjam -s
>>> > LEDA=/home/jens/devel/leda-free/LEDA-6.3-free-fedora-core-8-64-g++-4.1.2-mt/
>> You might need to remove that space after "-s"
>>
>> HTH,
>
> Hi Vladimir,
>
> thanks, I'll try it out tonight.
>
> However, the section was conditional on LEDA being set:
>
> | if [ modules.peek : LEDA ] != ""
>
> - and Jam apparently executed the compile action contained in it. So it apparently worked with the
> space?!

Wierd, I don't think it should. In that case, you probably need to fix this:

     compile leda_graph_cc.cpp
          $(LEDA_DEPENDENCIES) ;

by writing

     compile leda_graph_cc.cpp :
          $(LEDA_DEPENDENCIES) ;

I.e. adding <space> + <colon> + <space> at the end of first line. Let me know whether
that helps.

- Volodya


Boost-Build list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk