diff options
author | Steven Knight <knight@baldmt.com> | 2008-10-03 23:06:51 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2008-10-03 23:06:51 (GMT) |
commit | 46c1a573420d764dad2520b65c6afddf1b0ee46c (patch) | |
tree | 5b9548c8d657c385608ec71f0c886133545fc465 /doc/user/troubleshoot.xml | |
parent | 414c8f81ae20ea0ecb160020a621d942f5307607 (diff) | |
download | SCons-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/troubleshoot.xml')
-rw-r--r-- | doc/user/troubleshoot.xml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/doc/user/troubleshoot.xml b/doc/user/troubleshoot.xml index 2d525b9..75079d9 100644 --- a/doc/user/troubleshoot.xml +++ b/doc/user/troubleshoot.xml @@ -341,7 +341,6 @@ { 'BUILDERS': {'_InternalInstall': <function InstallBuilderWrapper at 0x700000>, 'Object': <SCons.Builder.CompositeBuilder instance at 0x700000>, 'PCH': <SCons.Builder.BuilderBase instance at 0x700000>, 'RES': <SCons.Builder.BuilderBase instance at 0x700000>, 'SharedObject': <SCons.Builder.CompositeBuilder instance at 0x700000>, 'StaticObject': <SCons.Builder.CompositeBuilder instance at 0x700000>, '_InternalInstallAs': <function InstallAsBuilderWrapper at 0x700000>}, 'CC': 'cl', 'CCCOM': <SCons.Action.FunctionAction instance at 0x700000>, - 'CCCOMFLAGS': '$CPPFLAGS $_CPPDEFFLAGS $_CPPINCFLAGS /c $SOURCES /Fo$TARGET $CCPCHFLAGS $CCPDBFLAGS', 'CCFLAGS': ['/nologo'], 'CCPCHFLAGS': ['${(PCH and "/Yu%s /Fp%s"%(PCHSTOP or "",File(PCH))) or ""}'], 'CCPDBFLAGS': ['${(PDB and "/Z7") or ""}'], @@ -371,7 +370,7 @@ '.spp', '.SPP'], 'CXX': '$CC', - 'CXXCOM': '$CXX $CXXFLAGS $CCCOMFLAGS', + 'CXXCOM': '$CXX /Fo$TARGET /c $SOURCES $CXXFLAGS $CCFLAGS $_CCCOMCOM', 'CXXFILESUFFIX': '.cc', 'CXXFLAGS': ['$CCFLAGS', '$(', '/TP', '$)'], 'DSUFFIXES': ['.d'], @@ -407,6 +406,7 @@ 'RC': 'rc', 'RCCOM': <SCons.Action.FunctionAction instance at 0x700000>, 'RCFLAGS': [], + 'RCSUFFIXES': ['.rc', '.rc2'], 'RDirs': <SCons.Defaults.Variable_Method_Caller instance at 0x700000>, 'SCANNERS': [], 'SHCC': '$CC', @@ -414,7 +414,7 @@ 'SHCCFLAGS': ['$CCFLAGS'], 'SHCFLAGS': ['$CFLAGS'], 'SHCXX': '$CXX', - 'SHCXXCOM': '$SHCXX $SHCXXFLAGS $CCCOMFLAGS', + 'SHCXXCOM': '$SHCXX /Fo$TARGET /c $SOURCES $SHCXXFLAGS $SHCCFLAGS $_CCCOMCOM', 'SHCXXFLAGS': ['$CXXFLAGS'], 'SHELL': None, 'SHLIBPREFIX': '', @@ -426,6 +426,7 @@ 'TEMPFILE': <class SCons.Platform.TempFileMunge at 0x700000>, 'TEMPFILEPREFIX': '@', 'TOOLS': ['msvc', 'install', 'install'], + '_CCCOMCOM': '$CPPFLAGS $_CPPDEFFLAGS $_CPPINCFLAGS $CCPCHFLAGS $CCPDBFLAGS', '_CPPDEFFLAGS': '${_defines(CPPDEFPREFIX, CPPDEFINES, CPPDEFSUFFIX, __env__)}', '_CPPINCFLAGS': '$( ${_concat(INCPREFIX, CPPPATH, INCSUFFIX, __env__, RDirs, TARGET, SOURCE)} $)', '_LIBDIRFLAGS': '$( ${_concat(LIBDIRPREFIX, LIBPATH, LIBDIRSUFFIX, __env__, RDirs, TARGET, SOURCE)} $)', @@ -1115,9 +1116,9 @@ % <userinput>scons -Q --debug=stacktrace</userinput> scons: *** Source `prog.c' not found, needed by target `prog.o'. Stop. scons: internal stack trace: - File "bootstrap/src/engine/SCons/Job.py", line 198, in start - File "bootstrap/src/engine/SCons/Script/Main.py", line 169, in prepare - File "bootstrap/src/engine/SCons/Taskmaster.py", line 184, in prepare + File "bootstrap/src/engine/SCons/Job.py", line 197, in start + File "bootstrap/src/engine/SCons/Script/Main.py", line 167, in prepare + File "bootstrap/src/engine/SCons/Taskmaster.py", line 182, in prepare File "bootstrap/src/engine/SCons/Executor.py", line 171, in prepare </screen> |