| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787 |
- /*============================================================================
- CMake - Cross Platform Makefile Generator
- Copyright 2011 Peter Collingbourne <[email protected]>
- Copyright 2011 Nicolas Despres <[email protected]>
- Distributed under the OSI-approved BSD License (the "License");
- see accompanying file Copyright.txt for details.
- This software is distributed WITHOUT ANY WARRANTY; without even the
- implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- See the License for more information.
- ============================================================================*/
- #include "cmNinjaNormalTargetGenerator.h"
- #include "cmLocalNinjaGenerator.h"
- #include "cmGlobalNinjaGenerator.h"
- #include "cmSourceFile.h"
- #include "cmGeneratedFileStream.h"
- #include "cmMakefile.h"
- #include "cmOSXBundleGenerator.h"
- #include "cmGeneratorTarget.h"
- #include "cmCustomCommandGenerator.h"
- #include "cmAlgorithms.h"
- #include <assert.h>
- #include <algorithm>
- #include <limits>
- #ifndef _WIN32
- #include <unistd.h>
- #endif
- cmNinjaNormalTargetGenerator::
- cmNinjaNormalTargetGenerator(cmGeneratorTarget* target)
- : cmNinjaTargetGenerator(target)
- , TargetNameOut()
- , TargetNameSO()
- , TargetNameReal()
- , TargetNameImport()
- , TargetNamePDB()
- , TargetLinkLanguage("")
- {
- this->TargetLinkLanguage = target->Target
- ->GetLinkerLanguage(this->GetConfigName());
- if (target->GetType() == cmTarget::EXECUTABLE)
- target->Target->GetExecutableNames(this->TargetNameOut,
- this->TargetNameReal,
- this->TargetNameImport,
- this->TargetNamePDB,
- GetLocalGenerator()->GetConfigName());
- else
- target->Target->GetLibraryNames(this->TargetNameOut,
- this->TargetNameSO,
- this->TargetNameReal,
- this->TargetNameImport,
- this->TargetNamePDB,
- GetLocalGenerator()->GetConfigName());
- if(target->GetType() != cmTarget::OBJECT_LIBRARY)
- {
- // on Windows the output dir is already needed at compile time
- // ensure the directory exists (OutDir test)
- EnsureDirectoryExists(target->Target->GetDirectory(this->GetConfigName()));
- }
- this->OSXBundleGenerator = new cmOSXBundleGenerator(target,
- this->GetConfigName());
- this->OSXBundleGenerator->SetMacContentFolders(&this->MacContentFolders);
- }
- cmNinjaNormalTargetGenerator::~cmNinjaNormalTargetGenerator()
- {
- delete this->OSXBundleGenerator;
- }
- void cmNinjaNormalTargetGenerator::Generate()
- {
- if (this->TargetLinkLanguage.empty()) {
- cmSystemTools::Error("CMake can not determine linker language for "
- "target: ",
- this->GetTarget()->GetName().c_str());
- return;
- }
- // Write the rules for each language.
- this->WriteLanguagesRules();
- // Write the build statements
- this->WriteObjectBuildStatements();
- if(this->GetTarget()->GetType() == cmTarget::OBJECT_LIBRARY)
- {
- this->WriteObjectLibStatement();
- }
- else
- {
- this->WriteLinkStatement();
- }
- }
- void cmNinjaNormalTargetGenerator::WriteLanguagesRules()
- {
- #ifdef NINJA_GEN_VERBOSE_FILES
- cmGlobalNinjaGenerator::WriteDivider(this->GetRulesFileStream());
- this->GetRulesFileStream()
- << "# Rules for each languages for "
- << cmTarget::GetTargetTypeName(this->GetTarget()->GetType())
- << " target "
- << this->GetTargetName()
- << "\n\n";
- #endif
- // Write rules for languages compiled in this target.
- std::set<std::string> languages;
- std::vector<cmSourceFile*> sourceFiles;
- this->GetTarget()->GetSourceFiles(sourceFiles,
- this->GetMakefile()->GetSafeDefinition("CMAKE_BUILD_TYPE"));
- for(std::vector<cmSourceFile*>::const_iterator
- i = sourceFiles.begin(); i != sourceFiles.end(); ++i)
- {
- const std::string& lang = (*i)->GetLanguage();
- if(!lang.empty())
- {
- languages.insert(lang);
- }
- }
- for(std::set<std::string>::const_iterator l = languages.begin();
- l != languages.end();
- ++l)
- {
- this->WriteLanguageRules(*l);
- }
- }
- const char *cmNinjaNormalTargetGenerator::GetVisibleTypeName() const
- {
- switch (this->GetTarget()->GetType()) {
- case cmTarget::STATIC_LIBRARY:
- return "static library";
- case cmTarget::SHARED_LIBRARY:
- return "shared library";
- case cmTarget::MODULE_LIBRARY:
- if (this->GetTarget()->IsCFBundleOnApple())
- return "CFBundle shared module";
- else
- return "shared module";
- case cmTarget::EXECUTABLE:
- return "executable";
- default:
- return 0;
- }
- }
- std::string
- cmNinjaNormalTargetGenerator
- ::LanguageLinkerRule() const
- {
- return this->TargetLinkLanguage
- + "_"
- + cmTarget::GetTargetTypeName(this->GetTarget()->GetType())
- + "_LINKER__"
- + cmGlobalNinjaGenerator::EncodeRuleName(this->GetTarget()->GetName())
- ;
- }
- void
- cmNinjaNormalTargetGenerator
- ::WriteLinkRule(bool useResponseFile)
- {
- cmTarget::TargetType targetType = this->GetTarget()->GetType();
- std::string ruleName = this->LanguageLinkerRule();
- // Select whether to use a response file for objects.
- std::string rspfile;
- std::string rspcontent;
- if (!this->GetGlobalGenerator()->HasRule(ruleName)) {
- cmLocalGenerator::RuleVariables vars;
- vars.RuleLauncher = "RULE_LAUNCH_LINK";
- vars.CMTarget = this->GetTarget();
- vars.Language = this->TargetLinkLanguage.c_str();
- std::string responseFlag;
- if (!useResponseFile) {
- vars.Objects = "$in";
- vars.LinkLibraries = "$LINK_PATH $LINK_LIBRARIES";
- } else {
- std::string cmakeVarLang = "CMAKE_";
- cmakeVarLang += this->TargetLinkLanguage;
- // build response file name
- std::string cmakeLinkVar = cmakeVarLang + "_RESPONSE_FILE_LINK_FLAG";
- const char * flag = GetMakefile()->GetDefinition(cmakeLinkVar);
- if(flag) {
- responseFlag = flag;
- } else {
- responseFlag = "@";
- }
- rspfile = "$RSP_FILE";
- responseFlag += rspfile;
- // build response file content
- if (this->GetGlobalGenerator()->IsGCCOnWindows()) {
- rspcontent = "$in";
- } else {
- rspcontent = "$in_newline";
- }
- rspcontent += " $LINK_PATH $LINK_LIBRARIES";
- vars.Objects = responseFlag.c_str();
- vars.LinkLibraries = "";
- }
- vars.ObjectDir = "$OBJECT_DIR";
- vars.Target = "$TARGET_FILE";
- vars.SONameFlag = "$SONAME_FLAG";
- vars.TargetSOName = "$SONAME";
- vars.TargetInstallNameDir = "$INSTALLNAME_DIR";
- vars.TargetPDB = "$TARGET_PDB";
- // Setup the target version.
- std::string targetVersionMajor;
- std::string targetVersionMinor;
- {
- std::ostringstream majorStream;
- std::ostringstream minorStream;
- int major;
- int minor;
- this->GetTarget()->GetTargetVersion(major, minor);
- majorStream << major;
- minorStream << minor;
- targetVersionMajor = majorStream.str();
- targetVersionMinor = minorStream.str();
- }
- vars.TargetVersionMajor = targetVersionMajor.c_str();
- vars.TargetVersionMinor = targetVersionMinor.c_str();
- vars.Flags = "$FLAGS";
- vars.LinkFlags = "$LINK_FLAGS";
- std::string langFlags;
- if (targetType != cmTarget::EXECUTABLE)
- {
- langFlags += "$LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS";
- vars.LanguageCompileFlags = langFlags.c_str();
- }
- // Rule for linking library/executable.
- std::vector<std::string> linkCmds = this->ComputeLinkCmd();
- for(std::vector<std::string>::iterator i = linkCmds.begin();
- i != linkCmds.end();
- ++i)
- {
- this->GetLocalGenerator()->ExpandRuleVariables(*i, vars);
- }
- linkCmds.insert(linkCmds.begin(), "$PRE_LINK");
- linkCmds.push_back("$POST_BUILD");
- std::string linkCmd =
- this->GetLocalGenerator()->BuildCommandLine(linkCmds);
- // Write the linker rule with response file if needed.
- std::ostringstream comment;
- comment << "Rule for linking " << this->TargetLinkLanguage << " "
- << this->GetVisibleTypeName() << ".";
- std::ostringstream description;
- description << "Linking " << this->TargetLinkLanguage << " "
- << this->GetVisibleTypeName() << " $TARGET_FILE";
- this->GetGlobalGenerator()->AddRule(ruleName,
- linkCmd,
- description.str(),
- comment.str(),
- /*depfile*/ "",
- /*deptype*/ "",
- rspfile,
- rspcontent,
- /*restat*/ "$RESTAT",
- /*generator*/ false);
- }
- if (this->TargetNameOut != this->TargetNameReal &&
- !this->GetTarget()->IsFrameworkOnApple()) {
- std::string cmakeCommand =
- this->GetLocalGenerator()->ConvertToOutputFormat(
- cmSystemTools::GetCMakeCommand(), cmLocalGenerator::SHELL);
- if (targetType == cmTarget::EXECUTABLE)
- this->GetGlobalGenerator()->AddRule("CMAKE_SYMLINK_EXECUTABLE",
- cmakeCommand +
- " -E cmake_symlink_executable"
- " $in $out && $POST_BUILD",
- "Creating executable symlink $out",
- "Rule for creating "
- "executable symlink.",
- /*depfile*/ "",
- /*deptype*/ "",
- /*rspfile*/ "",
- /*rspcontent*/ "",
- /*restat*/ "",
- /*generator*/ false);
- else
- this->GetGlobalGenerator()->AddRule("CMAKE_SYMLINK_LIBRARY",
- cmakeCommand +
- " -E cmake_symlink_library"
- " $in $SONAME $out && $POST_BUILD",
- "Creating library symlink $out",
- "Rule for creating "
- "library symlink.",
- /*depfile*/ "",
- /*deptype*/ "",
- /*rspfile*/ "",
- /*rspcontent*/ "",
- /*restat*/ "",
- /*generator*/ false);
- }
- }
- std::vector<std::string>
- cmNinjaNormalTargetGenerator
- ::ComputeLinkCmd()
- {
- std::vector<std::string> linkCmds;
- cmMakefile* mf = this->GetMakefile();
- {
- std::string linkCmdVar = this->GetGeneratorTarget()
- ->GetCreateRuleVariable(this->TargetLinkLanguage, this->GetConfigName());
- const char *linkCmd = mf->GetDefinition(linkCmdVar);
- if (linkCmd)
- {
- cmSystemTools::ExpandListArgument(linkCmd, linkCmds);
- return linkCmds;
- }
- }
- switch (this->GetTarget()->GetType()) {
- case cmTarget::STATIC_LIBRARY: {
- // We have archive link commands set. First, delete the existing archive.
- {
- std::string cmakeCommand =
- this->GetLocalGenerator()->ConvertToOutputFormat(
- cmSystemTools::GetCMakeCommand(), cmLocalGenerator::SHELL);
- linkCmds.push_back(cmakeCommand + " -E remove $TARGET_FILE");
- }
- // TODO: Use ARCHIVE_APPEND for archives over a certain size.
- {
- std::string linkCmdVar = "CMAKE_";
- linkCmdVar += this->TargetLinkLanguage;
- linkCmdVar += "_ARCHIVE_CREATE";
- const char *linkCmd = mf->GetRequiredDefinition(linkCmdVar);
- cmSystemTools::ExpandListArgument(linkCmd, linkCmds);
- }
- {
- std::string linkCmdVar = "CMAKE_";
- linkCmdVar += this->TargetLinkLanguage;
- linkCmdVar += "_ARCHIVE_FINISH";
- const char *linkCmd = mf->GetRequiredDefinition(linkCmdVar);
- cmSystemTools::ExpandListArgument(linkCmd, linkCmds);
- }
- return linkCmds;
- }
- case cmTarget::SHARED_LIBRARY:
- case cmTarget::MODULE_LIBRARY:
- case cmTarget::EXECUTABLE:
- break;
- default:
- assert(0 && "Unexpected target type");
- }
- return std::vector<std::string>();
- }
- static int calculateCommandLineLengthLimit(int linkRuleLength)
- {
- static int const limits[] = {
- #ifdef _WIN32
- 8000,
- #endif
- #if defined(__APPLE__) || defined(__HAIKU__) || defined(__linux)
- // for instance ARG_MAX is 2096152 on Ubuntu or 262144 on Mac
- ((int)sysconf(_SC_ARG_MAX)) - 1000,
- #endif
- #if defined(__linux)
- // #define MAX_ARG_STRLEN (PAGE_SIZE * 32) in Linux's binfmts.h
- ((int)sysconf(_SC_PAGESIZE) * 32) - 1000,
- #endif
- std::numeric_limits<int>::max()
- };
- size_t const arrSz = cmArraySize(limits);
- int const sz = *std::min_element(limits, limits + arrSz);
- if (sz == std::numeric_limits<int>::max())
- {
- return -1;
- }
- return sz - linkRuleLength;
- }
- void cmNinjaNormalTargetGenerator::WriteLinkStatement()
- {
- cmTarget& target = *this->GetTarget();
- const std::string cfgName = this->GetConfigName();
- std::string targetOutput = ConvertToNinjaPath(
- target.GetFullPath(cfgName));
- std::string targetOutputReal = ConvertToNinjaPath(
- target.GetFullPath(cfgName,
- /*implib=*/false,
- /*realpath=*/true));
- std::string targetOutputImplib = ConvertToNinjaPath(
- target.GetFullPath(cfgName,
- /*implib=*/true));
- if (target.IsAppBundleOnApple())
- {
- // Create the app bundle
- std::string outpath = target.GetDirectory(cfgName);
- this->OSXBundleGenerator->CreateAppBundle(this->TargetNameOut, outpath);
- // Calculate the output path
- targetOutput = outpath;
- targetOutput += "/";
- targetOutput += this->TargetNameOut;
- targetOutput = this->ConvertToNinjaPath(targetOutput);
- targetOutputReal = outpath;
- targetOutputReal += "/";
- targetOutputReal += this->TargetNameReal;
- targetOutputReal = this->ConvertToNinjaPath(targetOutputReal);
- }
- else if (target.IsFrameworkOnApple())
- {
- // Create the library framework.
- this->OSXBundleGenerator->CreateFramework(this->TargetNameOut,
- target.GetDirectory(cfgName));
- }
- else if(target.IsCFBundleOnApple())
- {
- // Create the core foundation bundle.
- this->OSXBundleGenerator->CreateCFBundle(this->TargetNameOut,
- target.GetDirectory(cfgName));
- }
- // Write comments.
- cmGlobalNinjaGenerator::WriteDivider(this->GetBuildFileStream());
- const cmTarget::TargetType targetType = target.GetType();
- this->GetBuildFileStream()
- << "# Link build statements for "
- << cmTarget::GetTargetTypeName(targetType)
- << " target "
- << this->GetTargetName()
- << "\n\n";
- cmNinjaDeps emptyDeps;
- cmNinjaVars vars;
- // Compute the comment.
- std::ostringstream comment;
- comment <<
- "Link the " << this->GetVisibleTypeName() << " " << targetOutputReal;
- // Compute outputs.
- cmNinjaDeps outputs;
- outputs.push_back(targetOutputReal);
- // Compute specific libraries to link with.
- cmNinjaDeps explicitDeps = this->GetObjects();
- cmNinjaDeps implicitDeps = this->ComputeLinkDeps();
- cmMakefile* mf = this->GetMakefile();
- std::string frameworkPath;
- std::string linkPath;
- cmGeneratorTarget& genTarget = *this->GetGeneratorTarget();
- std::string createRule =
- genTarget.GetCreateRuleVariable(this->TargetLinkLanguage,
- this->GetConfigName());
- bool useWatcomQuote = mf->IsOn(createRule+"_USE_WATCOM_QUOTE");
- cmLocalNinjaGenerator& localGen = *this->GetLocalGenerator();
- vars["TARGET_FILE"] =
- localGen.ConvertToOutputFormat(targetOutputReal, cmLocalGenerator::SHELL);
- localGen.GetTargetFlags(vars["LINK_LIBRARIES"],
- vars["FLAGS"],
- vars["LINK_FLAGS"],
- frameworkPath,
- linkPath,
- &genTarget,
- useWatcomQuote);
- if(this->GetMakefile()->IsOn("CMAKE_SUPPORT_WINDOWS_EXPORT_ALL_SYMBOLS")
- && target.GetType() == cmTarget::SHARED_LIBRARY)
- {
- if(target.GetPropertyAsBool("WINDOWS_EXPORT_ALL_SYMBOLS"))
- {
- std::string dllname = targetOutput;
- std::string name_of_def_file
- = target.GetSupportDirectory();
- name_of_def_file += "/" + target.GetName();
- name_of_def_file += ".def ";
- vars["LINK_FLAGS"] += " /DEF:";
- vars["LINK_FLAGS"] += this->GetLocalGenerator()
- ->ConvertToOutputFormat(name_of_def_file.c_str(),
- cmLocalGenerator::SHELL);
- }
- }
- this->addPoolNinjaVariable("JOB_POOL_LINK", &target, vars);
- this->AddModuleDefinitionFlag(vars["LINK_FLAGS"]);
- vars["LINK_FLAGS"] = cmGlobalNinjaGenerator
- ::EncodeLiteral(vars["LINK_FLAGS"]);
- vars["LINK_PATH"] = frameworkPath + linkPath;
- // Compute architecture specific link flags. Yes, these go into a different
- // variable for executables, probably due to a mistake made when duplicating
- // code between the Makefile executable and library generators.
- if (targetType == cmTarget::EXECUTABLE)
- {
- std::string t = vars["FLAGS"];
- localGen.AddArchitectureFlags(t, &genTarget, TargetLinkLanguage, cfgName);
- vars["FLAGS"] = t;
- }
- else
- {
- std::string t = vars["ARCH_FLAGS"];
- localGen.AddArchitectureFlags(t, &genTarget, TargetLinkLanguage, cfgName);
- vars["ARCH_FLAGS"] = t;
- t = "";
- localGen.AddLanguageFlags(t, TargetLinkLanguage, cfgName);
- vars["LANGUAGE_COMPILE_FLAGS"] = t;
- }
- if (target.HasSOName(cfgName))
- {
- vars["SONAME_FLAG"] = mf->GetSONameFlag(this->TargetLinkLanguage);
- vars["SONAME"] = this->TargetNameSO;
- if (targetType == cmTarget::SHARED_LIBRARY)
- {
- std::string install_dir = target.GetInstallNameDirForBuildTree(cfgName);
- if (!install_dir.empty())
- {
- vars["INSTALLNAME_DIR"] = localGen.Convert(install_dir,
- cmLocalGenerator::NONE,
- cmLocalGenerator::SHELL);
- }
- }
- }
- if (!this->TargetNameImport.empty())
- {
- const std::string impLibPath = localGen.ConvertToOutputFormat(
- targetOutputImplib,
- cmLocalGenerator::SHELL);
- vars["TARGET_IMPLIB"] = impLibPath;
- EnsureParentDirectoryExists(impLibPath);
- if(target.HasImportLibrary())
- {
- outputs.push_back(targetOutputImplib);
- }
- }
- if (!this->SetMsvcTargetPdbVariable(vars))
- {
- // It is common to place debug symbols at a specific place,
- // so we need a plain target name in the rule available.
- std::string prefix;
- std::string base;
- std::string suffix;
- target.GetFullNameComponents(prefix, base, suffix);
- std::string dbg_suffix = ".dbg";
- // TODO: Where to document?
- if (mf->GetDefinition("CMAKE_DEBUG_SYMBOL_SUFFIX"))
- {
- dbg_suffix = mf->GetDefinition("CMAKE_DEBUG_SYMBOL_SUFFIX");
- }
- vars["TARGET_PDB"] = base + suffix + dbg_suffix;
- }
- if (this->GetGlobalGenerator()->IsGCCOnWindows())
- {
- const std::string objPath = GetTarget()->GetSupportDirectory();
- vars["OBJECT_DIR"] = ConvertToNinjaPath(objPath);
- EnsureDirectoryExists(objPath);
- // ar.exe can't handle backslashes in rsp files (implicitly used by gcc)
- std::string& linkLibraries = vars["LINK_LIBRARIES"];
- std::replace(linkLibraries.begin(), linkLibraries.end(), '\\', '/');
- std::string& link_path = vars["LINK_PATH"];
- std::replace(link_path.begin(), link_path.end(), '\\', '/');
- }
- const std::vector<cmCustomCommand> *cmdLists[3] = {
- &target.GetPreBuildCommands(),
- &target.GetPreLinkCommands(),
- &target.GetPostBuildCommands()
- };
- std::vector<std::string> preLinkCmdLines, postBuildCmdLines;
- std::vector<std::string> *cmdLineLists[3] = {
- &preLinkCmdLines,
- &preLinkCmdLines,
- &postBuildCmdLines
- };
- cmNinjaDeps byproducts;
- for (unsigned i = 0; i != 3; ++i)
- {
- for (std::vector<cmCustomCommand>::const_iterator
- ci = cmdLists[i]->begin();
- ci != cmdLists[i]->end(); ++ci)
- {
- cmCustomCommandGenerator ccg(*ci, cfgName, mf);
- localGen.AppendCustomCommandLines(ccg, *cmdLineLists[i]);
- std::vector<std::string> const& ccByproducts = ccg.GetByproducts();
- std::transform(ccByproducts.begin(), ccByproducts.end(),
- std::back_inserter(byproducts), MapToNinjaPath());
- }
- }
- // maybe create .def file from list of objects
- if (target.GetType() == cmTarget::SHARED_LIBRARY &&
- this->GetMakefile()->IsOn("CMAKE_SUPPORT_WINDOWS_EXPORT_ALL_SYMBOLS"))
- {
- if(target.GetPropertyAsBool("WINDOWS_EXPORT_ALL_SYMBOLS"))
- {
- std::string cmakeCommand =
- this->GetLocalGenerator()->ConvertToOutputFormat(
- cmSystemTools::GetCMakeCommand(), cmLocalGenerator::SHELL);
- std::string dllname = targetOutput;
- std::string name_of_def_file
- = target.GetSupportDirectory();
- name_of_def_file += "/" + target.GetName();
- name_of_def_file += ".def";
- std::string cmd = cmakeCommand;
- cmd += " -E __create_def ";
- cmd += this->GetLocalGenerator()
- ->ConvertToOutputFormat(name_of_def_file.c_str(),
- cmLocalGenerator::SHELL);
- cmd += " ";
- cmNinjaDeps objs = this->GetObjects();
- std::string obj_list_file = name_of_def_file;
- obj_list_file += ".objs";
- cmd += this->GetLocalGenerator()
- ->ConvertToOutputFormat(obj_list_file.c_str(),
- cmLocalGenerator::SHELL);
- preLinkCmdLines.push_back(cmd);
- // create a list of obj files for the -E __create_def to read
- cmGeneratedFileStream fout(obj_list_file.c_str());
- for(cmNinjaDeps::iterator i=objs.begin(); i != objs.end(); ++i)
- {
- if(cmHasLiteralSuffix(*i, ".obj"))
- {
- fout << *i << "\n";
- }
- }
- }
- }
- // If we have any PRE_LINK commands, we need to go back to HOME_OUTPUT for
- // the link commands.
- if (!preLinkCmdLines.empty())
- {
- const std::string homeOutDir = localGen.ConvertToOutputFormat(
- mf->GetHomeOutputDirectory(),
- cmLocalGenerator::SHELL);
- preLinkCmdLines.push_back("cd " + homeOutDir);
- }
- vars["PRE_LINK"] = localGen.BuildCommandLine(preLinkCmdLines);
- std::string postBuildCmdLine = localGen.BuildCommandLine(postBuildCmdLines);
- cmNinjaVars symlinkVars;
- if (targetOutput == targetOutputReal)
- {
- vars["POST_BUILD"] = postBuildCmdLine;
- }
- else
- {
- vars["POST_BUILD"] = ":";
- symlinkVars["POST_BUILD"] = postBuildCmdLine;
- }
- cmGlobalNinjaGenerator& globalGen = *this->GetGlobalGenerator();
- int commandLineLengthLimit = 1;
- const char* forceRspFile = "CMAKE_NINJA_FORCE_RESPONSE_FILE";
- if (!mf->IsDefinitionSet(forceRspFile) &&
- cmSystemTools::GetEnv(forceRspFile) == 0)
- {
- commandLineLengthLimit = calculateCommandLineLengthLimit(
- globalGen.GetRuleCmdLength(this->LanguageLinkerRule()));
- }
- const std::string rspfile =
- std::string(cmake::GetCMakeFilesDirectoryPostSlash())
- + target.GetName() + ".rsp";
- // Gather order-only dependencies.
- cmNinjaDeps orderOnlyDeps;
- this->GetLocalGenerator()->AppendTargetDepends(this->GetTarget(),
- orderOnlyDeps);
- // Ninja should restat after linking if and only if there are byproducts.
- vars["RESTAT"] = byproducts.empty()? "" : "1";
- for (cmNinjaDeps::const_iterator oi = byproducts.begin(),
- oe = byproducts.end();
- oi != oe; ++oi)
- {
- this->GetGlobalGenerator()->SeenCustomCommandOutput(*oi);
- outputs.push_back(*oi);
- }
- // Write the build statement for this target.
- bool usedResponseFile = false;
- globalGen.WriteBuild(this->GetBuildFileStream(),
- comment.str(),
- this->LanguageLinkerRule(),
- outputs,
- explicitDeps,
- implicitDeps,
- orderOnlyDeps,
- vars,
- rspfile,
- commandLineLengthLimit,
- &usedResponseFile);
- this->WriteLinkRule(usedResponseFile);
- if (targetOutput != targetOutputReal && !target.IsFrameworkOnApple())
- {
- if (targetType == cmTarget::EXECUTABLE)
- {
- globalGen.WriteBuild(this->GetBuildFileStream(),
- "Create executable symlink " + targetOutput,
- "CMAKE_SYMLINK_EXECUTABLE",
- cmNinjaDeps(1, targetOutput),
- cmNinjaDeps(1, targetOutputReal),
- emptyDeps,
- emptyDeps,
- symlinkVars);
- }
- else
- {
- cmNinjaDeps symlinks;
- const std::string soName = this->GetTargetFilePath(this->TargetNameSO);
- // If one link has to be created.
- if (targetOutputReal == soName || targetOutput == soName)
- {
- symlinkVars["SONAME"] = soName;
- }
- else
- {
- symlinkVars["SONAME"] = "";
- symlinks.push_back(soName);
- }
- symlinks.push_back(targetOutput);
- globalGen.WriteBuild(this->GetBuildFileStream(),
- "Create library symlink " + targetOutput,
- "CMAKE_SYMLINK_LIBRARY",
- symlinks,
- cmNinjaDeps(1, targetOutputReal),
- emptyDeps,
- emptyDeps,
- symlinkVars);
- }
- }
- // Add aliases for the file name and the target name.
- globalGen.AddTargetAlias(this->TargetNameOut, &target);
- globalGen.AddTargetAlias(this->GetTargetName(), &target);
- }
- //----------------------------------------------------------------------------
- void cmNinjaNormalTargetGenerator::WriteObjectLibStatement()
- {
- // Write a phony output that depends on all object files.
- cmNinjaDeps outputs;
- this->GetLocalGenerator()->AppendTargetOutputs(this->GetTarget(), outputs);
- cmNinjaDeps depends = this->GetObjects();
- this->GetGlobalGenerator()->WritePhonyBuild(this->GetBuildFileStream(),
- "Object library "
- + this->GetTargetName(),
- outputs,
- depends);
- // Add aliases for the target name.
- this->GetGlobalGenerator()->AddTargetAlias(this->GetTargetName(),
- this->GetTarget());
- }
|