summaryrefslogtreecommitdiffstats
path: root/doc/user/simple.xml
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2008-10-03 23:06:51 (GMT)
committerSteven Knight <knight@baldmt.com>2008-10-03 23:06:51 (GMT)
commit46c1a573420d764dad2520b65c6afddf1b0ee46c (patch)
tree5b9548c8d657c385608ec71f0c886133545fc465 /doc/user/simple.xml
parent414c8f81ae20ea0ecb160020a621d942f5307607 (diff)
downloadSCons-46c1a573420d764dad2520b65c6afddf1b0ee46c.zip
SCons-46c1a573420d764dad2520b65c6afddf1b0ee46c.tar.gz
SCons-46c1a573420d764dad2520b65c6afddf1b0ee46c.tar.bz2
User's Guide updates:
Mostly MSVC compilation lines so the /Fo is at the beginning of the output line. Also some new/modified variables in the environment dump in the Troubleshooting appendix, and removing a leftover XXX todo comment.
Diffstat (limited to 'doc/user/simple.xml')
-rw-r--r--doc/user/simple.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/user/simple.xml b/doc/user/simple.xml
index 4e4ff0e..8245237 100644
--- a/doc/user/simple.xml
+++ b/doc/user/simple.xml
@@ -108,7 +108,7 @@
scons: Reading SConscript files ...
scons: done reading SConscript files.
scons: Building targets ...
- cl /nologo /c hello.c /Fohello.obj
+ cl /Fohello.obj /c hello.c /nologo
link /nologo /OUT:hello.exe hello.obj
scons: done building targets.
</screen>
@@ -195,7 +195,7 @@
scons: Reading SConscript files ...
scons: done reading SConscript files.
scons: Building targets ...
- cl /nologo /c hello.c /Fohello.obj
+ cl /Fohello.obj /c hello.c /nologo
scons: done building targets.
</screen>
@@ -298,7 +298,7 @@
scons: Reading SConscript files ...
scons: done reading SConscript files.
scons: Building targets ...
- cl /nologo /c hello.c /Fohello.obj
+ cl /Fohello.obj /c hello.c /nologo
link /nologo /OUT:hello.exe hello.obj
scons: done building targets.
C:\><userinput>scons -c</userinput>
@@ -505,7 +505,7 @@
scons: Reading SConscript files ...
scons: done reading SConscript files.
scons: Building targets ...
- cl /nologo /c hello.c /Fohello.obj
+ cl /Fohello.obj /c hello.c /nologo
link /nologo /OUT:hello.exe hello.obj
scons: done building targets.
</screen>
@@ -534,7 +534,7 @@
<screen>
C:\><userinput>scons -Q</userinput>
- cl /nologo /c hello.c /Fohello.obj
+ cl /Fohello.obj /c hello.c /nologo
link /nologo /OUT:hello.exe hello.obj
</screen>