Ninja: but cl supports /nologo ...

This commit is contained in:
Peter Kuemmel 2012-06-15 13:07:05 +02:00
parent bf58e9adec
commit ab245ff3c8
1 changed files with 4 additions and 3 deletions

View File

@ -683,10 +683,11 @@ int main() {
srcfilename = srcfile.substr(pos + 1);
}
std::string nol = " /nologo ";
std::string show = " /showIncludes ";
if (lang == "C" || lang == "CXX") {
return process(srcfilename, dfile, objfile, prefix,
binpath + show + rest);
binpath + nol + show + rest);
} else if (lang == "RC") {
// "misuse" cl.exe to get headers from .rc files
@ -701,10 +702,10 @@ int main() {
// extract dependencies with cl.exe
process(srcfilename, dfile, objfile,
prefix, cl + show + clrest, true);
prefix, cl + nol + show + clrest, true);
// compile rc file with rc.exe
return process(srcfilename, "" , objfile, prefix, binpath + nol + rest);
return process(srcfilename, "" , objfile, prefix, binpath + rest);
}
usage("Invalid language specified.");