[Scons-users] Bug? Docs: 9.2. Controlling How SCons Prints Build Commands
Ivan Kravets
me at ikravets.com
Sat Jul 16 13:54:41 EDT 2016
Hi,
Could someone explain me how to achieve the results described in the docs?
> % scons -Q
>
> Compiling foo.o
> Linking foo
> %
> scons -Q -c
>
> Removed foo.o
> Removed foo
> %
> scons -Q VERBOSE=1
>
> cc -o foo.o -c foo.c
> cc -o foo foo.o
In my case, "env['CCCOMSTR'] = "Compiling $TARGET"" prints "Compiling foo.o" and "cc -o foo.o -c foo.c".
Is it a bug?
- Ivan
More information about the Scons-users
mailing list