diff options
author | Steven Knight <knight@baldmt.com> | 2004-07-30 13:05:28 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-07-30 13:05:28 (GMT) |
commit | 079f408e8ef5233f3899ad7df423a058b989448b (patch) | |
tree | 1d8aa3d3678e309f15c83131a38e570cca175035 /doc | |
parent | f7819c098ee0aa1ac27f3b2d2555e7fc6393cbf0 (diff) | |
download | SCons-079f408e8ef5233f3899ad7df423a058b989448b.zip SCons-079f408e8ef5233f3899ad7df423a058b989448b.tar.gz SCons-079f408e8ef5233f3899ad7df423a058b989448b.tar.bz2 |
Move LIB{PREFIX,SUFFIX} definitions from the Platform modules to individual Tool modules. (Chris Murray)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/scons.1 | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index b3e4ad4..9dff843 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -5143,6 +5143,11 @@ env = Environment(LINKCOM="my_linker $_LIBDIRFLAGS $_LIBFLAGS -o $TARGET $SOURCE .IP LIBPREFIX The prefix used for (static) library file names. +A default value is set for each platform +(posix, win32, os2, etc.), +but the value is overridden by individual tools +(ar, mslib, sgiar, sunar, tlib, etc.) +to reflect the names of the libraries they create. .IP LIBPREFIXES An array of legal prefixes for library file names. @@ -5174,6 +5179,11 @@ env = Environment(LINKCOM="my_linker $_LIBDIRFLAGS $_LIBFLAGS -o $TARGET $SOURCE .IP LIBSUFFIX The suffix used for (static) library file names. +A default value is set for each platform +(posix, win32, os2, etc.), +but the value is overridden by individual tools +(ar, mslib, sgiar, sunar, tlib, etc.) +to reflect the names of the libraries they create. .IP LIBSUFFIXES An array of legal suffixes for library file names. |