diff options
author | Steven Knight <knight@baldmt.com> | 2003-03-28 07:17:58 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-03-28 07:17:58 (GMT) |
commit | 4ffdf4ec07e36786269b5551c15486b6b31a19c6 (patch) | |
tree | 676849b026ffeb3cb24d0424bc38f6225eb3fdb2 /doc | |
parent | e94e7726d2602503cd6ea7ba1acb37558821827e (diff) | |
download | SCons-4ffdf4ec07e36786269b5551c15486b6b31a19c6.zip SCons-4ffdf4ec07e36786269b5551c15486b6b31a19c6.tar.gz SCons-4ffdf4ec07e36786269b5551c15486b6b31a19c6.tar.bz2 |
Prepare for release, more doc patches, one portability fix.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/scons.1 | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 367cc37..e40036b 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -867,11 +867,22 @@ msvc nasm pdflatex pdftex +sgiar +sgias +sgicc +sgif77 +sgilink tar tex yacc +zip .EE +Additionally, there is a "tool" named +.B default +which configures the +environment with a default set of tools for the current platform. + On posix and cygwin platforms the GNU tools (e.g. gcc) are preferred by SCons, on win32 the Microsoft tools (e.g. msvc) @@ -4678,7 +4689,7 @@ Bar.cpp: SConstruct: .ES env=Environment() -env['PCHSTOP'] = StdAfx.h +env['PCHSTOP'] = 'StdAfx.h' env['PCH'] = env.PCH('StdAfx.cpp')[0] env.Program('MyApp', ['Foo.cpp', 'Bar.cpp']) .EE |