|
Boost-Build : |
From: Vladimir Prus (ghost_at_[hidden])
Date: 2005-06-08 09:39:26
Hi Olaf,
> actions compile.c bind RSP
> {
> $(.CC) /Zm800 -nologo -TC -U$(UNDEFS) $(CFLAGS) $(USER_CFLAGS)
> @"$(RSP:W)" -c -Fo"$(<[1]:W)" && del "$(RSP)"
> }
> actions compile.c++ bind RSP
> {
> $(.CC) /Zm800 -nologo -TP -U$(UNDEFS) $(CFLAGS) $(USER_CFLAGS)
> @"$(RSP:W)" -c -Fo"$(<[1]:W)"
> }
>
> It seems that '&& del "$(RSP)"' has been forgotten in the c++ action.
You are right.
> Second: version 1.39 changed the check
>
> if [ MATCH ^(8) : $(version) ]
>
> to
>
> if ! [ MATCH ^([67]\..*) : $(version) ]
>
> This breaks our build system which uses the toolset name 'msvc-6'. I
> changed it to
>
> if ! [ MATCH ^([67]\.?.*) : $(version) ]
>
> but maybe another regular expression is more appropriate.
I think that ^([67]\.?.*) is the same as ^([67].*).
I've made both changes and committed. Thanks!
- Volodya
-- Vladimir Prus http://vladimir_prus.blogspot.com Boost.Build V2: http://boost.org/boost-build2
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