marcelino jr esguerra wrote, On 2009-03-10 21:29: > i downloaded the MozillaBuildSetup-1.3.exe and installed it. > i use the start-msvc9.bat and went to mozilla/security/nss > then i entered: gmake nss_build_all > > but then, i have this error: > ... > creating pr/src/threads/combined/Makefile > cd ../../nsprpub/WINNT5.1_DBG.OBJ ; c:/mozilla-build/moztools/bin/gmake.exe > c:\mozilla-build\moztools\bin\gmake.exe[1]: Entering directory > `d:/Documents and > Settings/Marjun/Desktop/mozilla-pkcs tool/mozilla/nsprpub/WINNT5.1_DBG.OBJ' > cd config; c:/mozilla-build/moztools/bin/gmake.exe -j1 export > c:\mozilla-build\moztools\bin\gmake.exe[2]: Entering directory > `d:/Documents and Settings/Marjun/Desktop/mozilla-pkcs > tool/mozilla/nsprpub/WINNT5.1_DBG.OBJ/config' > cl -Fonow.obj -c -W3 -nologo -GF -Gy -Od -MD -GT -Z7 -UNDEBUG > -DDEBUG_Mar > jun -DDEBUG=1 -DXP_PC=1 -DWIN32=1 -D_DEBUG=1 -DWINNT=1 -D_X86_=1 > -DFORCE_PR_LOG /d/Documents and Settings/Marjun/Desktop/mozilla-pkcs > tool/mozilla/nsprpub/WINNT5.1_DBG.OBJ/config/../../config/now.c > cl : Command line warning D9002 : ignoring unknown option '/d/Documents' > cl : Command line warning D9024 : unrecognized source file type 'and', > object file assumed
There's the problem. The Microsoft "cl" compiler understands path names like d:/documents and settings and also d:\documents and settings but it does not ever understand /d/documents and settings to be equivalent to either of those. CL assumes that any command line string that start with "/" is a command line option (it treats a leading "/" the same as a leading "-", /d is the same as -d), so any absolute path names MUST begin with a drive letter and a colon, e.g. d:/documents and settings Also, any directory names with spaces in them must appear inside quoted strings, e.g. C:/Documents and Settings will have problems, but "C:/Documents and Settings" will be OK. Often, users find that using C:/Docue~1 (or whatever it is) is a good compromise because it requires no quoting. I'm sorry to say this, but you may find you will get better help with Mozilla's BuildSetup tools in another newsgroup/mailing list, namely mozilla.dev.builds -- dev-tech-crypto mailing list dev-tech-crypto@lists.mozilla.org https://lists.mozilla.org/listinfo/dev-tech-crypto