summaryrefslogtreecommitdiffstats
path: root/doc/user/less-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/less-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/less-simple.xml')
-rw-r--r--doc/user/less-simple.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/user/less-simple.xml b/doc/user/less-simple.xml
index 35b6b60..28fc053 100644
--- a/doc/user/less-simple.xml
+++ b/doc/user/less-simple.xml
@@ -100,7 +100,7 @@
<screen>
C:\><userinput>scons -Q</userinput>
- cl /nologo /c hello.c /Fohello.obj
+ cl /Fohello.obj /c hello.c /nologo
link /nologo /OUT:new_hello.exe hello.obj
</screen>
@@ -189,9 +189,9 @@
<screen>
C:\><userinput>scons -Q</userinput>
- cl /nologo /c file1.c /Fofile1.obj
- cl /nologo /c file2.c /Fofile2.obj
- cl /nologo /c prog.c /Foprog.obj
+ cl /Fofile1.obj /c file1.c /nologo
+ cl /Fofile2.obj /c file2.c /nologo
+ cl /Foprog.obj /c prog.c /nologo
link /nologo /OUT:program.exe prog.obj file1.obj file2.obj
</screen>