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 | 31af139b8a20b975430974a638e957b61cd4cf23 (patch) | |
tree | 1d8aa3d3678e309f15c83131a38e570cca175035 /doc/man/scons.1 | |
parent | b2a820a2b535f0eeeb0e3074cbc32355ab54db4f (diff) | |
download | SCons-31af139b8a20b975430974a638e957b61cd4cf23.zip SCons-31af139b8a20b975430974a638e957b61cd4cf23.tar.gz SCons-31af139b8a20b975430974a638e957b61cd4cf23.tar.bz2 |
Move LIB{PREFIX,SUFFIX} definitions from the Platform modules to individual Tool modules. (Chris Murray)
Diffstat (limited to 'doc/man/scons.1')
-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. |