From: Paul Schmidt (prs_at_[hidden])
Date: 2003-07-11 12:27:01


I have two toolset jam files, one for Metrowerks' Playstation2 tools,
and one for SN Systems' ProDG Playstation2 system.

In the SN toolset, I have:

AS = ps2cc ;
ASFLAGS = -xassembler-with-cpp -Wa,-al ;

And in the MW toolset, I have:

AS = asm_r5900_elf ;

Independently, they work just fine. But when I run:

bjam -sTOOLS="snps2 mwps2" -d2

both toolsets attempt to execute

asm_r5900_elf -xassembler-with-cpp -Wa,-al -o
bin\hello.elf\snps2\debug\crt0.o crt0.s

This behavior doesn't seem right to me - I would have thought the
variables would have been reset between toolset invocations - but of
course, I could be doing something wrong. Anyone? Beuhler?

tia

-Paul