diff options
author | Steven Knight <knight@baldmt.com> | 2004-11-15 16:17:39 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-11-15 16:17:39 (GMT) |
commit | 8f770d113261de635c6a20434c9309899165a024 (patch) | |
tree | 7ec0601495656d320e0663f22e2e4422b6cb6187 /doc/man | |
parent | e21dbacfba7a9bdcd3882caa9fa7f8fa89ceb061 (diff) | |
download | SCons-8f770d113261de635c6a20434c9309899165a024.zip SCons-8f770d113261de635c6a20434c9309899165a024.tar.gz SCons-8f770d113261de635c6a20434c9309899165a024.tar.bz2 |
More command-line configurability: , .
Diffstat (limited to 'doc/man')
-rw-r--r-- | doc/man/scons.1 | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 88dea7e..511dbac 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -5660,6 +5660,15 @@ for the variable that expands to library search path options. .IP LINKCOM The command line used to link object files into an executable. +.IP LINKCOMSTR +The string displayed when object files +are linked into an executable. +If this is not set, then $LINKCOM (the command line) is displayed. + +.ES +env = Environment(LINKCOMSTR = "Linking $TARGET") +.EE + .IP M4 The M4 macro preprocessor. @@ -6428,6 +6437,17 @@ The suffix used for shared library file names. .IP SHLINK The linker for programs that use shared libraries. +.IP SHLINKCOM +The command line used to link programs using shared libaries. + +.IP SHLINKCOMSTR +The string displayed when programs using shared libraries are linked. +If this is not set, then $SHLINKCOM (the command line) is displayed. + +.ES +env = Environment(SHLINKCOMSTR = "Linking shared $TARGET") +.EE + .IP SHLINKFLAGS General user options passed to the linker for programs using shared libraries. Note that this variable should |