Boost logo

Boost-Build :

From: Larry Evans (cppljevans_at_[hidden])
Date: 2004-06-14 10:47:38


On 06/14/2004 10:23 AM, Rene Rivera wrote:
> Larry Evans wrote:
>
>>After a cvs update today, in boost/tools/build/jam_src/ I did:
>>
>> ./build.sh
>
>
> Which toolset did that use? I'm guessing it wasn't the como toolset?

It was gcc.

>>which worked OK, then did the following:
>>
>><------------------------------
>>cd ~/prog_dev/boost-cvs/boost/tools/build/jam_src/
>>./build.sh como
[snip]
>
> Only thing I can think of is to add the "--c99" option. Both in build.sh
> and build.jam.

Thanks. I tried that by searching for como in both files. Then, in
build.sh, changed:

como)
BOOST_JAM_CC=como
;;

to:

como)
BOOST_JAM_CC=como --c99
;;

and in build.jam, changed:

## Comeau C/C++ 4.x
toolset como como : "-o " : -D
:
[ opt --release : --inlining ]
[ opt --debug : --no_inlining ] ;

to:

## Comeau C/C++ 4.x
toolset como como : "-o " : -D
:
[ opt --release : --inlining --c99 ]
[ opt --debug : --no_inlining --c99 ] ;

then did:

./build.sh como

but got:

./build.sh como
./build.sh: --c99: command not found

What should I have changed in these files instead of the above?

TIA.

 


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