diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2012-02-27 04:05:31 (GMT) |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2012-02-27 04:05:38 (GMT) |
commit | 80ff2102a41117fc829ad64c7c963bd0858a221b (patch) | |
tree | 4588d10520daab33ba3c8863b2811fb2aa9bfc7a | |
parent | d2731a376cce3044b507bfaf4427d89f0a03d2cf (diff) | |
download | CMake-80ff2102a41117fc829ad64c7c963bd0858a221b.zip CMake-80ff2102a41117fc829ad64c7c963bd0858a221b.tar.gz CMake-80ff2102a41117fc829ad64c7c963bd0858a221b.tar.bz2 |
Ninja: Use cmSystemTools::ExpandListArgument to split compile/link commands
-rw-r--r-- | Source/cmNinjaNormalTargetGenerator.cxx | 11 | ||||
-rw-r--r-- | Source/cmNinjaTargetGenerator.cxx | 11 |
2 files changed, 16 insertions, 6 deletions
diff --git a/Source/cmNinjaNormalTargetGenerator.cxx b/Source/cmNinjaNormalTargetGenerator.cxx index 6e08bca..613c7b5 100644 --- a/Source/cmNinjaNormalTargetGenerator.cxx +++ b/Source/cmNinjaNormalTargetGenerator.cxx @@ -219,6 +219,7 @@ std::vector<std::string> cmNinjaNormalTargetGenerator ::ComputeLinkCmd() { + std::vector<std::string> linkCmds; cmTarget::TargetType targetType = this->GetTarget()->GetType(); switch (targetType) { case cmTarget::STATIC_LIBRARY: { @@ -230,7 +231,8 @@ cmNinjaNormalTargetGenerator if (const char *linkCmd = this->GetMakefile()->GetDefinition(linkCmdVar.c_str())) { - return std::vector<std::string>(1, linkCmd); + cmSystemTools::ExpandListArgument(linkCmd, linkCmds); + return linkCmds; } } @@ -249,7 +251,7 @@ cmNinjaNormalTargetGenerator linkCmdVar += "_ARCHIVE_CREATE"; const char *linkCmd = this->GetMakefile()->GetRequiredDefinition(linkCmdVar.c_str()); - linkCmds.push_back(linkCmd); + cmSystemTools::ExpandListArgument(linkCmd, linkCmds); } { std::string linkCmdVar = "CMAKE_"; @@ -257,7 +259,7 @@ cmNinjaNormalTargetGenerator linkCmdVar += "_ARCHIVE_FINISH"; const char *linkCmd = this->GetMakefile()->GetRequiredDefinition(linkCmdVar.c_str()); - linkCmds.push_back(linkCmd); + cmSystemTools::ExpandListArgument(linkCmd, linkCmds); } return linkCmds; } @@ -281,7 +283,8 @@ cmNinjaNormalTargetGenerator } const char *linkCmd = this->GetMakefile()->GetRequiredDefinition(linkCmdVar.c_str()); - return std::vector<std::string>(1, linkCmd); + cmSystemTools::ExpandListArgument(linkCmd, linkCmds); + return linkCmds; } default: assert(0 && "Unexpected target type"); diff --git a/Source/cmNinjaTargetGenerator.cxx b/Source/cmNinjaTargetGenerator.cxx index c776fcf..d0b4156 100644 --- a/Source/cmNinjaTargetGenerator.cxx +++ b/Source/cmNinjaTargetGenerator.cxx @@ -334,8 +334,15 @@ cmNinjaTargetGenerator compileCmdVar += "_COMPILE_OBJECT"; std::string compileCmd = this->GetMakefile()->GetRequiredDefinition(compileCmdVar.c_str()); + std::vector<std::string> compileCmds; + cmSystemTools::ExpandListArgument(compileCmd, compileCmds); - this->GetLocalGenerator()->ExpandRuleVariables(compileCmd, vars); + for (std::vector<std::string>::iterator i = compileCmds.begin(); + i != compileCmds.end(); ++i) + this->GetLocalGenerator()->ExpandRuleVariables(*i, vars); + + std::string cmdLine = + this->GetLocalGenerator()->BuildCommandLine(compileCmds); // Write the rule for compiling file of the given language. std::ostringstream comment; @@ -343,7 +350,7 @@ cmNinjaTargetGenerator std::ostringstream description; description << "Building " << language << " object $out"; this->GetGlobalGenerator()->AddRule(this->LanguageCompilerRule(language), - compileCmd, + cmdLine, description.str(), comment.str(), depfile); |