diff options
author | Steven Knight <knight@baldmt.com> | 2004-11-15 15:11:40 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-11-15 15:11:40 (GMT) |
commit | ed117ec5bd99c6239b443014d4924b5784920a4d (patch) | |
tree | 7a8954335f9cca8edb4510fffc126001c7295746 /doc | |
parent | 949becdd3c7437c6f6af345e25c80c24d696d487 (diff) | |
download | SCons-ed117ec5bd99c6239b443014d4924b5784920a4d.zip SCons-ed117ec5bd99c6239b443014d4924b5784920a4d.tar.gz SCons-ed117ec5bd99c6239b443014d4924b5784920a4d.tar.bz2 |
More command-line customization: , .
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/scons.1 | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index b2ccd71..88dea7e 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -4533,7 +4533,7 @@ is compiled to a (static) object file. If this is not set, then $CCCOM (the command line) is displayed. .ES -env = Environment(CCCOMSTR = "Compiling $TARGET") +env = Environment(CCCOMSTR = "Compiling static object $TARGET") .EE .IP CCFLAGS @@ -4797,7 +4797,7 @@ is compiled to a (static) object file. If this is not set, then $CXXCOM (the command line) is displayed. .ES -env = Environment(CXXCOMSTR = "Compiling $TARGET") +env = Environment(CXXCOMSTR = "Compiling static object $TARGET") .EE .IP CXXFLAGS @@ -6240,6 +6240,15 @@ to a shared-library object file. Any options specified in the $SHCCFLAGS and $CPPFLAGS construction variables are included on this command line. +.IP SHCCCOMSTR +The string displayed when a C source file +is compiled to a shared object file. +If this is not set, then $SHCCCOM (the command line) is displayed. + +.ES +env = Environment(SHCCCOMSTR = "Compiling shared object $TARGET") +.EE + .IP SHCCFLAGS Options that are passed to the C compiler to generate shared-library objects. @@ -6253,6 +6262,15 @@ to a shared-library object file. Any options specified in the $SHCXXFLAGS and $CPPFLAGS construction variables are included on this command line. +.IP SHCXXCOMSTR +The string displayed when a C++ source file +is compiled to a shared object file. +If this is not set, then $SHCXXCOM (the command line) is displayed. + +.ES +env = Environment(SHCXXCOMSTR = "Compiling shared object $TARGET") +.EE + .IP SHCXXFLAGS Options that are passed to the C++ compiler to generate shared-library objects. |