1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009 |
- #include "cmMakefileLibraryTargetGenerator.h"
- #include <algorithm>
- #include <memory> // IWYU pragma: keep
- #include <sstream>
- #include <vector>
- #include "cmGeneratedFileStream.h"
- #include "cmGeneratorTarget.h"
- #include "cmGlobalUnixMakefileGenerator3.h"
- #include "cmLinkLineComputer.h"
- #include "cmLinkLineDeviceComputer.h"
- #include "cmLocalGenerator.h"
- #include "cmLocalUnixMakefileGenerator3.h"
- #include "cmMakefile.h"
- #include "cmOSXBundleGenerator.h"
- #include "cmOutputConverter.h"
- #include "cmRulePlaceholderExpander.h"
- #include "cmState.h"
- #include "cmStateDirectory.h"
- #include "cmStateSnapshot.h"
- #include "cmStateTypes.h"
- #include "cmSystemTools.h"
- #include "cmake.h"
- cmMakefileLibraryTargetGenerator::cmMakefileLibraryTargetGenerator(
- cmGeneratorTarget* target)
- : cmMakefileTargetGenerator(target)
- {
- this->CustomCommandDriver = OnDepends;
- if (this->GeneratorTarget->GetType() != cmStateEnums::INTERFACE_LIBRARY) {
- this->GeneratorTarget->GetLibraryNames(
- this->TargetNameOut, this->TargetNameSO, this->TargetNameReal,
- this->TargetNameImport, this->TargetNamePDB, this->ConfigName);
- }
- this->OSXBundleGenerator =
- new cmOSXBundleGenerator(target, this->ConfigName);
- this->OSXBundleGenerator->SetMacContentFolders(&this->MacContentFolders);
- }
- cmMakefileLibraryTargetGenerator::~cmMakefileLibraryTargetGenerator()
- {
- delete this->OSXBundleGenerator;
- }
- void cmMakefileLibraryTargetGenerator::WriteRuleFiles()
- {
-
- this->CreateRuleFile();
-
- this->WriteCommonCodeRules();
-
- this->WriteTargetLanguageFlags();
-
- this->WriteTargetBuildRules();
-
-
- switch (this->GeneratorTarget->GetType()) {
- case cmStateEnums::STATIC_LIBRARY:
- this->WriteStaticLibraryRules();
- break;
- case cmStateEnums::SHARED_LIBRARY:
- this->WriteSharedLibraryRules(false);
- if (this->GeneratorTarget->NeedRelinkBeforeInstall(this->ConfigName)) {
-
- this->WriteSharedLibraryRules(true);
- }
- break;
- case cmStateEnums::MODULE_LIBRARY:
- this->WriteModuleLibraryRules(false);
- if (this->GeneratorTarget->NeedRelinkBeforeInstall(this->ConfigName)) {
-
- this->WriteModuleLibraryRules(true);
- }
- break;
- case cmStateEnums::OBJECT_LIBRARY:
- this->WriteObjectLibraryRules();
- break;
- default:
-
- cmSystemTools::Error("Unknown Library Type");
- break;
- }
-
- this->WriteTargetCleanRules();
-
-
- this->WriteTargetDependRules();
-
- this->CloseFileStreams();
- }
- void cmMakefileLibraryTargetGenerator::WriteObjectLibraryRules()
- {
- std::vector<std::string> commands;
- std::vector<std::string> depends;
-
- this->LocalGenerator->AppendCustomCommands(
- commands, this->GeneratorTarget->GetPostBuildCommands(),
- this->GeneratorTarget, this->LocalGenerator->GetBinaryDirectory());
-
- this->AppendObjectDepends(depends);
-
- this->LocalGenerator->WriteMakeRule(*this->BuildFileStream, nullptr,
- this->GeneratorTarget->GetName(),
- depends, commands, true);
-
- this->WriteTargetDriverRule(this->GeneratorTarget->GetName(), false);
- }
- void cmMakefileLibraryTargetGenerator::WriteStaticLibraryRules()
- {
- const std::string cuda_lang("CUDA");
- cmGeneratorTarget::LinkClosure const* closure =
- this->GeneratorTarget->GetLinkClosure(this->ConfigName);
- const bool hasCUDA =
- (std::find(closure->Languages.begin(), closure->Languages.end(),
- cuda_lang) != closure->Languages.end());
- const bool resolveDeviceSymbols =
- this->GeneratorTarget->GetPropertyAsBool("CUDA_RESOLVE_DEVICE_SYMBOLS");
- if (hasCUDA && resolveDeviceSymbols) {
- std::string linkRuleVar = "CMAKE_CUDA_DEVICE_LINK_LIBRARY";
- std::string extraFlags;
- this->LocalGenerator->AppendFlags(
- extraFlags, this->GeneratorTarget->GetProperty("LINK_FLAGS"));
- this->WriteDeviceLibraryRules(linkRuleVar, extraFlags, false);
- }
- std::string linkLanguage =
- this->GeneratorTarget->GetLinkerLanguage(this->ConfigName);
- std::string linkRuleVar = this->GeneratorTarget->GetCreateRuleVariable(
- linkLanguage, this->ConfigName);
- std::string extraFlags;
- this->LocalGenerator->GetStaticLibraryFlags(
- extraFlags, cmSystemTools::UpperCase(this->ConfigName),
- this->GeneratorTarget);
- this->WriteLibraryRules(linkRuleVar, extraFlags, false);
- }
- void cmMakefileLibraryTargetGenerator::WriteSharedLibraryRules(bool relink)
- {
- if (this->GeneratorTarget->IsFrameworkOnApple()) {
- this->WriteFrameworkRules(relink);
- return;
- }
- if (!relink) {
- const std::string cuda_lang("CUDA");
- cmGeneratorTarget::LinkClosure const* closure =
- this->GeneratorTarget->GetLinkClosure(this->ConfigName);
- const bool hasCUDA =
- (std::find(closure->Languages.begin(), closure->Languages.end(),
- cuda_lang) != closure->Languages.end());
- if (hasCUDA) {
- std::string linkRuleVar = "CMAKE_CUDA_DEVICE_LINK_LIBRARY";
- std::string extraFlags;
- this->LocalGenerator->AppendFlags(
- extraFlags, this->GeneratorTarget->GetProperty("LINK_FLAGS"));
- this->WriteDeviceLibraryRules(linkRuleVar, extraFlags, relink);
- }
- }
- std::string linkLanguage =
- this->GeneratorTarget->GetLinkerLanguage(this->ConfigName);
- std::string linkRuleVar = "CMAKE_";
- linkRuleVar += linkLanguage;
- linkRuleVar += "_CREATE_SHARED_LIBRARY";
- std::string extraFlags;
- this->LocalGenerator->AppendFlags(
- extraFlags, this->GeneratorTarget->GetProperty("LINK_FLAGS"));
- std::string linkFlagsConfig = "LINK_FLAGS_";
- linkFlagsConfig += cmSystemTools::UpperCase(this->ConfigName);
- this->LocalGenerator->AppendFlags(
- extraFlags, this->GeneratorTarget->GetProperty(linkFlagsConfig));
- this->LocalGenerator->AddConfigVariableFlags(
- extraFlags, "CMAKE_SHARED_LINKER_FLAGS", this->ConfigName);
- std::unique_ptr<cmLinkLineComputer> linkLineComputer(
- this->CreateLinkLineComputer(
- this->LocalGenerator,
- this->LocalGenerator->GetStateSnapshot().GetDirectory()));
- this->AddModuleDefinitionFlag(linkLineComputer.get(), extraFlags);
- if (this->GeneratorTarget->GetPropertyAsBool("LINK_WHAT_YOU_USE")) {
- this->LocalGenerator->AppendFlags(extraFlags, " -Wl,--no-as-needed");
- }
- this->WriteLibraryRules(linkRuleVar, extraFlags, relink);
- }
- void cmMakefileLibraryTargetGenerator::WriteModuleLibraryRules(bool relink)
- {
- if (!relink) {
- const std::string cuda_lang("CUDA");
- cmGeneratorTarget::LinkClosure const* closure =
- this->GeneratorTarget->GetLinkClosure(this->ConfigName);
- const bool hasCUDA =
- (std::find(closure->Languages.begin(), closure->Languages.end(),
- cuda_lang) != closure->Languages.end());
- if (hasCUDA) {
- std::string linkRuleVar = "CMAKE_CUDA_DEVICE_LINK_LIBRARY";
- std::string extraFlags;
- this->LocalGenerator->AppendFlags(
- extraFlags, this->GeneratorTarget->GetProperty("LINK_FLAGS"));
- this->WriteDeviceLibraryRules(linkRuleVar, extraFlags, relink);
- }
- }
- std::string linkLanguage =
- this->GeneratorTarget->GetLinkerLanguage(this->ConfigName);
- std::string linkRuleVar = "CMAKE_";
- linkRuleVar += linkLanguage;
- linkRuleVar += "_CREATE_SHARED_MODULE";
- std::string extraFlags;
- this->LocalGenerator->AppendFlags(
- extraFlags, this->GeneratorTarget->GetProperty("LINK_FLAGS"));
- std::string linkFlagsConfig = "LINK_FLAGS_";
- linkFlagsConfig += cmSystemTools::UpperCase(this->ConfigName);
- this->LocalGenerator->AppendFlags(
- extraFlags, this->GeneratorTarget->GetProperty(linkFlagsConfig));
- this->LocalGenerator->AddConfigVariableFlags(
- extraFlags, "CMAKE_MODULE_LINKER_FLAGS", this->ConfigName);
- std::unique_ptr<cmLinkLineComputer> linkLineComputer(
- this->CreateLinkLineComputer(
- this->LocalGenerator,
- this->LocalGenerator->GetStateSnapshot().GetDirectory()));
- this->AddModuleDefinitionFlag(linkLineComputer.get(), extraFlags);
- this->WriteLibraryRules(linkRuleVar, extraFlags, relink);
- }
- void cmMakefileLibraryTargetGenerator::WriteFrameworkRules(bool relink)
- {
- std::string linkLanguage =
- this->GeneratorTarget->GetLinkerLanguage(this->ConfigName);
- std::string linkRuleVar = "CMAKE_";
- linkRuleVar += linkLanguage;
- linkRuleVar += "_CREATE_MACOSX_FRAMEWORK";
- std::string extraFlags;
- this->LocalGenerator->AppendFlags(
- extraFlags, this->GeneratorTarget->GetProperty("LINK_FLAGS"));
- std::string linkFlagsConfig = "LINK_FLAGS_";
- linkFlagsConfig += cmSystemTools::UpperCase(this->ConfigName);
- this->LocalGenerator->AppendFlags(
- extraFlags, this->GeneratorTarget->GetProperty(linkFlagsConfig));
- this->LocalGenerator->AddConfigVariableFlags(
- extraFlags, "CMAKE_MACOSX_FRAMEWORK_LINKER_FLAGS", this->ConfigName);
- this->WriteLibraryRules(linkRuleVar, extraFlags, relink);
- }
- void cmMakefileLibraryTargetGenerator::WriteDeviceLibraryRules(
- const std::string& linkRuleVar, const std::string& extraFlags, bool relink)
- {
- #ifdef CMAKE_BUILD_WITH_CMAKE
-
-
- std::vector<std::string> commands;
-
- std::vector<std::string> depends;
- this->AppendLinkDepends(depends);
-
- std::string linkLanguage = "CUDA";
- std::string const objExt =
- this->Makefile->GetSafeDefinition("CMAKE_CUDA_OUTPUT_EXTENSION");
-
- std::string linkFlags;
- this->LocalGenerator->AppendFlags(linkFlags, extraFlags);
-
- std::string const targetOutputReal =
- this->GeneratorTarget->ObjectDirectory + "cmake_device_link" + objExt;
- this->DeviceLinkObject = targetOutputReal;
- this->NumberOfProgressActions++;
- if (!this->NoRuleMessages) {
- cmLocalUnixMakefileGenerator3::EchoProgress progress;
- this->MakeEchoProgress(progress);
-
- std::string buildEcho = "Linking " + linkLanguage + " device code ";
- buildEcho += this->LocalGenerator->ConvertToOutputFormat(
- this->LocalGenerator->MaybeConvertToRelativePath(
- this->LocalGenerator->GetCurrentBinaryDirectory(),
- this->DeviceLinkObject),
- cmOutputConverter::SHELL);
- this->LocalGenerator->AppendEcho(
- commands, buildEcho, cmLocalUnixMakefileGenerator3::EchoLink, &progress);
- }
-
- std::vector<std::string> libCleanFiles;
- libCleanFiles.push_back(this->LocalGenerator->MaybeConvertToRelativePath(
- this->LocalGenerator->GetCurrentBinaryDirectory(), targetOutputReal));
-
- bool useLinkScript = this->GlobalGenerator->GetUseLinkScript();
- bool useResponseFileForObjects =
- this->CheckUseResponseFileForObjects(linkLanguage);
- bool const useResponseFileForLibs =
- this->CheckUseResponseFileForLibraries(linkLanguage);
- cmRulePlaceholderExpander::RuleVariables vars;
- vars.Language = linkLanguage.c_str();
-
- std::vector<std::string> real_link_commands;
- {
- bool useWatcomQuote =
- this->Makefile->IsOn(linkRuleVar + "_USE_WATCOM_QUOTE");
-
- this->LocalGenerator->SetLinkScriptShell(useLinkScript);
-
- std::string linkLibs;
- if (this->GeneratorTarget->GetType() != cmStateEnums::STATIC_LIBRARY) {
- std::unique_ptr<cmLinkLineComputer> linkLineComputer(
- new cmLinkLineDeviceComputer(
- this->LocalGenerator,
- this->LocalGenerator->GetStateSnapshot().GetDirectory()));
- linkLineComputer->SetForResponse(useResponseFileForLibs);
- linkLineComputer->SetUseWatcomQuote(useWatcomQuote);
- linkLineComputer->SetRelink(relink);
- this->CreateLinkLibs(linkLineComputer.get(), linkLibs,
- useResponseFileForLibs, depends);
- }
-
-
- std::string buildObjs;
- this->CreateObjectLists(useLinkScript, false,
- useResponseFileForObjects, buildObjs, depends,
- useWatcomQuote);
- cmOutputConverter::OutputFormat output = (useWatcomQuote)
- ? cmOutputConverter::WATCOMQUOTE
- : cmOutputConverter::SHELL;
- std::string objectDir = this->GeneratorTarget->GetSupportDirectory();
- objectDir = this->LocalGenerator->ConvertToOutputFormat(
- this->LocalGenerator->MaybeConvertToRelativePath(
- this->LocalGenerator->GetCurrentBinaryDirectory(), objectDir),
- cmOutputConverter::SHELL);
- std::string target = this->LocalGenerator->ConvertToOutputFormat(
- this->LocalGenerator->MaybeConvertToRelativePath(
- this->LocalGenerator->GetCurrentBinaryDirectory(), targetOutputReal),
- output);
- std::string targetFullPathCompilePDB = this->ComputeTargetCompilePDB();
- std::string targetOutPathCompilePDB =
- this->LocalGenerator->ConvertToOutputFormat(targetFullPathCompilePDB,
- cmOutputConverter::SHELL);
- vars.Objects = buildObjs.c_str();
- vars.ObjectDir = objectDir.c_str();
- vars.Target = target.c_str();
- vars.LinkLibraries = linkLibs.c_str();
- vars.ObjectsQuoted = buildObjs.c_str();
- vars.LinkFlags = linkFlags.c_str();
- vars.TargetCompilePDB = targetOutPathCompilePDB.c_str();
-
- std::string langFlags;
- this->LocalGenerator->AddLanguageFlagsForLinking(
- langFlags, this->GeneratorTarget, linkLanguage, this->ConfigName);
- vars.LanguageCompileFlags = langFlags.c_str();
- std::string launcher;
- const char* val = this->LocalGenerator->GetRuleLauncher(
- this->GeneratorTarget, "RULE_LAUNCH_LINK");
- if (val && *val) {
- launcher = val;
- launcher += " ";
- }
- std::unique_ptr<cmRulePlaceholderExpander> rulePlaceholderExpander(
- this->LocalGenerator->CreateRulePlaceholderExpander());
-
- rulePlaceholderExpander->SetTargetImpLib(targetOutputReal);
- std::string linkRule = this->GetLinkRule(linkRuleVar);
- cmSystemTools::ExpandListArgument(linkRule, real_link_commands);
-
- for (std::string& real_link_command : real_link_commands) {
- real_link_command = launcher + real_link_command;
- rulePlaceholderExpander->ExpandRuleVariables(this->LocalGenerator,
- real_link_command, vars);
- }
-
- this->LocalGenerator->SetLinkScriptShell(false);
-
- this->CleanFiles.insert(this->CleanFiles.end(), libCleanFiles.begin(),
- libCleanFiles.end());
- }
- std::vector<std::string> commands1;
-
-
- if (useLinkScript) {
-
- const char* name = (relink ? "drelink.txt" : "dlink.txt");
- this->CreateLinkScript(name, real_link_commands, commands1, depends);
- } else {
-
- commands1 = real_link_commands;
- }
- this->LocalGenerator->CreateCDCommand(
- commands1, this->Makefile->GetCurrentBinaryDirectory(),
- this->LocalGenerator->GetBinaryDirectory());
- commands.insert(commands.end(), commands1.begin(), commands1.end());
- commands1.clear();
-
- std::vector<std::string> outputs(1, targetOutputReal);
-
- this->WriteMakeRule(*this->BuildFileStream, nullptr, outputs, depends,
- commands, false);
-
- this->WriteTargetDriverRule(targetOutputReal, relink);
- #else
- static_cast<void>(linkRuleVar);
- static_cast<void>(extraFlags);
- static_cast<void>(relink);
- #endif
- }
- void cmMakefileLibraryTargetGenerator::WriteLibraryRules(
- const std::string& linkRuleVar, const std::string& extraFlags, bool relink)
- {
-
-
- std::vector<std::string> commands;
-
- std::vector<std::string> depends;
- this->AppendLinkDepends(depends);
- if (!this->DeviceLinkObject.empty()) {
- depends.push_back(this->DeviceLinkObject);
- }
-
- std::string linkLanguage =
- this->GeneratorTarget->GetLinkerLanguage(this->ConfigName);
-
- if (linkLanguage.empty()) {
- cmSystemTools::Error("Cannot determine link language for target \"",
- this->GeneratorTarget->GetName().c_str(), "\".");
- return;
- }
-
- std::string linkFlags;
- this->LocalGenerator->AppendFlags(linkFlags, extraFlags);
- this->LocalGenerator->AppendIPOLinkerFlags(linkFlags, this->GeneratorTarget,
- this->ConfigName, linkLanguage);
-
- if (this->GeneratorTarget->GetType() == cmStateEnums::SHARED_LIBRARY ||
- this->GeneratorTarget->GetType() == cmStateEnums::MODULE_LIBRARY) {
- this->AppendOSXVerFlag(linkFlags, linkLanguage, "COMPATIBILITY", true);
- this->AppendOSXVerFlag(linkFlags, linkLanguage, "CURRENT", false);
- }
-
- std::string targetName;
- std::string targetNameSO;
- std::string targetNameReal;
- std::string targetNameImport;
- std::string targetNamePDB;
- this->GeneratorTarget->GetLibraryNames(targetName, targetNameSO,
- targetNameReal, targetNameImport,
- targetNamePDB, this->ConfigName);
-
- std::string outpath;
- std::string outpathImp;
- if (this->GeneratorTarget->IsFrameworkOnApple()) {
- outpath = this->GeneratorTarget->GetDirectory(this->ConfigName);
- this->OSXBundleGenerator->CreateFramework(targetName, outpath);
- outpath += "/";
- } else if (this->GeneratorTarget->IsCFBundleOnApple()) {
- outpath = this->GeneratorTarget->GetDirectory(this->ConfigName);
- this->OSXBundleGenerator->CreateCFBundle(targetName, outpath);
- outpath += "/";
- } else if (relink) {
- outpath = this->Makefile->GetCurrentBinaryDirectory();
- outpath += cmake::GetCMakeFilesDirectory();
- outpath += "/CMakeRelink.dir";
- cmSystemTools::MakeDirectory(outpath);
- outpath += "/";
- if (!targetNameImport.empty()) {
- outpathImp = outpath;
- }
- } else {
- outpath = this->GeneratorTarget->GetDirectory(this->ConfigName);
- cmSystemTools::MakeDirectory(outpath);
- outpath += "/";
- if (!targetNameImport.empty()) {
- outpathImp = this->GeneratorTarget->GetDirectory(
- this->ConfigName, cmStateEnums::ImportLibraryArtifact);
- cmSystemTools::MakeDirectory(outpathImp);
- outpathImp += "/";
- }
- }
- std::string compilePdbOutputPath =
- this->GeneratorTarget->GetCompilePDBDirectory(this->ConfigName);
- cmSystemTools::MakeDirectory(compilePdbOutputPath);
- std::string pdbOutputPath =
- this->GeneratorTarget->GetPDBDirectory(this->ConfigName);
- cmSystemTools::MakeDirectory(pdbOutputPath);
- pdbOutputPath += "/";
- std::string targetFullPath = outpath + targetName;
- std::string targetFullPathPDB = pdbOutputPath + targetNamePDB;
- std::string targetFullPathSO = outpath + targetNameSO;
- std::string targetFullPathReal = outpath + targetNameReal;
- std::string targetFullPathImport = outpathImp + targetNameImport;
-
-
- std::string targetOutPathPDB = this->LocalGenerator->ConvertToOutputFormat(
- targetFullPathPDB, cmOutputConverter::SHELL);
- std::string targetOutPath = this->LocalGenerator->ConvertToOutputFormat(
- this->LocalGenerator->MaybeConvertToRelativePath(
- this->LocalGenerator->GetCurrentBinaryDirectory(), targetFullPath),
- cmOutputConverter::SHELL);
- std::string targetOutPathSO = this->LocalGenerator->ConvertToOutputFormat(
- this->LocalGenerator->MaybeConvertToRelativePath(
- this->LocalGenerator->GetCurrentBinaryDirectory(), targetFullPathSO),
- cmOutputConverter::SHELL);
- std::string targetOutPathReal = this->LocalGenerator->ConvertToOutputFormat(
- this->LocalGenerator->MaybeConvertToRelativePath(
- this->LocalGenerator->GetCurrentBinaryDirectory(), targetFullPathReal),
- cmOutputConverter::SHELL);
- std::string targetOutPathImport =
- this->LocalGenerator->ConvertToOutputFormat(
- this->LocalGenerator->MaybeConvertToRelativePath(
- this->LocalGenerator->GetCurrentBinaryDirectory(),
- targetFullPathImport),
- cmOutputConverter::SHELL);
- this->NumberOfProgressActions++;
- if (!this->NoRuleMessages) {
- cmLocalUnixMakefileGenerator3::EchoProgress progress;
- this->MakeEchoProgress(progress);
-
- std::string buildEcho = "Linking ";
- buildEcho += linkLanguage;
- switch (this->GeneratorTarget->GetType()) {
- case cmStateEnums::STATIC_LIBRARY:
- buildEcho += " static library ";
- break;
- case cmStateEnums::SHARED_LIBRARY:
- buildEcho += " shared library ";
- break;
- case cmStateEnums::MODULE_LIBRARY:
- if (this->GeneratorTarget->IsCFBundleOnApple()) {
- buildEcho += " CFBundle";
- }
- buildEcho += " shared module ";
- break;
- default:
- buildEcho += " library ";
- break;
- }
- buildEcho += targetOutPath;
- this->LocalGenerator->AppendEcho(
- commands, buildEcho, cmLocalUnixMakefileGenerator3::EchoLink, &progress);
- }
-
- std::vector<std::string> libCleanFiles;
- libCleanFiles.push_back(this->LocalGenerator->MaybeConvertToRelativePath(
- this->LocalGenerator->GetCurrentBinaryDirectory(), targetFullPathReal));
- std::vector<std::string> commands1;
-
-
- if (this->GeneratorTarget->GetType() == cmStateEnums::STATIC_LIBRARY) {
- this->LocalGenerator->AppendCleanCommand(commands1, libCleanFiles,
- this->GeneratorTarget, "target");
- this->LocalGenerator->CreateCDCommand(
- commands1, this->Makefile->GetCurrentBinaryDirectory(),
- this->LocalGenerator->GetBinaryDirectory());
- commands.insert(commands.end(), commands1.begin(), commands1.end());
- commands1.clear();
- }
- if (targetName != targetNameReal) {
- libCleanFiles.push_back(this->LocalGenerator->MaybeConvertToRelativePath(
- this->LocalGenerator->GetCurrentBinaryDirectory(), targetFullPath));
- }
- if (targetNameSO != targetNameReal && targetNameSO != targetName) {
- libCleanFiles.push_back(this->LocalGenerator->MaybeConvertToRelativePath(
- this->LocalGenerator->GetCurrentBinaryDirectory(), targetFullPathSO));
- }
- if (!targetNameImport.empty()) {
- libCleanFiles.push_back(this->LocalGenerator->MaybeConvertToRelativePath(
- this->LocalGenerator->GetCurrentBinaryDirectory(),
- targetFullPathImport));
- std::string implib;
- if (this->GeneratorTarget->GetImplibGNUtoMS(targetFullPathImport,
- implib)) {
- libCleanFiles.push_back(this->LocalGenerator->MaybeConvertToRelativePath(
- this->LocalGenerator->GetCurrentBinaryDirectory(), implib));
- }
- }
-
-
-
- this->CleanFiles.push_back(this->LocalGenerator->MaybeConvertToRelativePath(
- this->LocalGenerator->GetCurrentBinaryDirectory(), targetFullPathPDB));
- #ifdef _WIN32
-
-
- if (this->GeneratorTarget->GetType() != cmStateEnums::STATIC_LIBRARY) {
- libCleanFiles.push_back(this->LocalGenerator->MaybeConvertToRelativePath(
- this->LocalGenerator->GetCurrentBinaryDirectory(),
- (targetFullPath + ".manifest").c_str()));
- }
- #endif
-
- if (!relink) {
- this->LocalGenerator->AppendCustomCommands(
- commands, this->GeneratorTarget->GetPreBuildCommands(),
- this->GeneratorTarget, this->LocalGenerator->GetBinaryDirectory());
- this->LocalGenerator->AppendCustomCommands(
- commands, this->GeneratorTarget->GetPreLinkCommands(),
- this->GeneratorTarget, this->LocalGenerator->GetBinaryDirectory());
- }
-
- bool useLinkScript = this->GlobalGenerator->GetUseLinkScript();
- bool useResponseFileForObjects =
- this->CheckUseResponseFileForObjects(linkLanguage);
- bool const useResponseFileForLibs =
- this->CheckUseResponseFileForLibraries(linkLanguage);
-
- bool haveStaticLibraryRule = false;
- std::vector<std::string> archiveCreateCommands;
- std::vector<std::string> archiveAppendCommands;
- std::vector<std::string> archiveFinishCommands;
- std::string::size_type archiveCommandLimit = std::string::npos;
- if (this->GeneratorTarget->GetType() == cmStateEnums::STATIC_LIBRARY) {
- haveStaticLibraryRule = this->Makefile->IsDefinitionSet(linkRuleVar);
- std::string arCreateVar = "CMAKE_";
- arCreateVar += linkLanguage;
- arCreateVar += "_ARCHIVE_CREATE";
- arCreateVar = this->GeneratorTarget->GetFeatureSpecificLinkRuleVariable(
- arCreateVar, linkLanguage, this->ConfigName);
- if (const char* rule = this->Makefile->GetDefinition(arCreateVar)) {
- cmSystemTools::ExpandListArgument(rule, archiveCreateCommands);
- }
- std::string arAppendVar = "CMAKE_";
- arAppendVar += linkLanguage;
- arAppendVar += "_ARCHIVE_APPEND";
- arAppendVar = this->GeneratorTarget->GetFeatureSpecificLinkRuleVariable(
- arAppendVar, linkLanguage, this->ConfigName);
- if (const char* rule = this->Makefile->GetDefinition(arAppendVar)) {
- cmSystemTools::ExpandListArgument(rule, archiveAppendCommands);
- }
- std::string arFinishVar = "CMAKE_";
- arFinishVar += linkLanguage;
- arFinishVar += "_ARCHIVE_FINISH";
- arFinishVar = this->GeneratorTarget->GetFeatureSpecificLinkRuleVariable(
- arFinishVar, linkLanguage, this->ConfigName);
- if (const char* rule = this->Makefile->GetDefinition(arFinishVar)) {
- cmSystemTools::ExpandListArgument(rule, archiveFinishCommands);
- }
- }
-
- bool useArchiveRules = !haveStaticLibraryRule &&
- !archiveCreateCommands.empty() && !archiveAppendCommands.empty();
- if (useArchiveRules) {
-
- useLinkScript = true;
-
- useResponseFileForObjects = false;
-
-
-
- archiveCommandLimit = 30000;
- }
-
- std::vector<std::string> real_link_commands;
- {
- bool useWatcomQuote =
- this->Makefile->IsOn(linkRuleVar + "_USE_WATCOM_QUOTE");
-
- this->LocalGenerator->SetLinkScriptShell(useLinkScript);
-
- std::string linkLibs;
- if (this->GeneratorTarget->GetType() != cmStateEnums::STATIC_LIBRARY) {
- std::unique_ptr<cmLinkLineComputer> linkLineComputer(
- this->CreateLinkLineComputer(
- this->LocalGenerator,
- this->LocalGenerator->GetStateSnapshot().GetDirectory()));
- linkLineComputer->SetForResponse(useResponseFileForLibs);
- linkLineComputer->SetUseWatcomQuote(useWatcomQuote);
- linkLineComputer->SetRelink(relink);
- this->CreateLinkLibs(linkLineComputer.get(), linkLibs,
- useResponseFileForLibs, depends);
- }
-
-
- std::string buildObjs;
- this->CreateObjectLists(useLinkScript, useArchiveRules,
- useResponseFileForObjects, buildObjs, depends,
- useWatcomQuote);
- if (!this->DeviceLinkObject.empty()) {
- buildObjs += " " +
- this->LocalGenerator->ConvertToOutputFormat(
- this->LocalGenerator->MaybeConvertToRelativePath(
- this->LocalGenerator->GetCurrentBinaryDirectory(),
- this->DeviceLinkObject),
- cmOutputConverter::SHELL);
- }
-
- this->GenDefFile(real_link_commands);
- std::string manifests = this->GetManifests();
- cmRulePlaceholderExpander::RuleVariables vars;
- vars.TargetPDB = targetOutPathPDB.c_str();
-
- std::string targetVersionMajor;
- std::string targetVersionMinor;
- {
- std::ostringstream majorStream;
- std::ostringstream minorStream;
- int major;
- int minor;
- this->GeneratorTarget->GetTargetVersion(major, minor);
- majorStream << major;
- minorStream << minor;
- targetVersionMajor = majorStream.str();
- targetVersionMinor = minorStream.str();
- }
- vars.TargetVersionMajor = targetVersionMajor.c_str();
- vars.TargetVersionMinor = targetVersionMinor.c_str();
- vars.CMTargetName = this->GeneratorTarget->GetName().c_str();
- vars.CMTargetType =
- cmState::GetTargetTypeName(this->GeneratorTarget->GetType());
- vars.Language = linkLanguage.c_str();
- vars.Objects = buildObjs.c_str();
- std::string objectDir = this->GeneratorTarget->GetSupportDirectory();
- objectDir = this->LocalGenerator->ConvertToOutputFormat(
- this->LocalGenerator->MaybeConvertToRelativePath(
- this->LocalGenerator->GetCurrentBinaryDirectory(), objectDir),
- cmOutputConverter::SHELL);
- vars.ObjectDir = objectDir.c_str();
- cmOutputConverter::OutputFormat output = (useWatcomQuote)
- ? cmOutputConverter::WATCOMQUOTE
- : cmOutputConverter::SHELL;
- std::string target = this->LocalGenerator->ConvertToOutputFormat(
- this->LocalGenerator->MaybeConvertToRelativePath(
- this->LocalGenerator->GetCurrentBinaryDirectory(), targetFullPathReal),
- output);
- vars.Target = target.c_str();
- vars.LinkLibraries = linkLibs.c_str();
- vars.ObjectsQuoted = buildObjs.c_str();
- if (this->GeneratorTarget->HasSOName(this->ConfigName)) {
- vars.SONameFlag = this->Makefile->GetSONameFlag(linkLanguage);
- vars.TargetSOName = targetNameSO.c_str();
- }
- vars.LinkFlags = linkFlags.c_str();
- vars.Manifests = manifests.c_str();
-
- std::string install_name_dir;
- if (this->GeneratorTarget->GetType() == cmStateEnums::SHARED_LIBRARY) {
-
- install_name_dir =
- this->GeneratorTarget->GetInstallNameDirForBuildTree(this->ConfigName);
-
- if (install_name_dir.empty()) {
- vars.TargetInstallNameDir = "";
- } else {
-
- install_name_dir = this->LocalGenerator->ConvertToOutputFormat(
- install_name_dir, cmOutputConverter::SHELL);
- vars.TargetInstallNameDir = install_name_dir.c_str();
- }
- }
-
- std::string langFlags;
- this->LocalGenerator->AddLanguageFlagsForLinking(
- langFlags, this->GeneratorTarget, linkLanguage, this->ConfigName);
- this->LocalGenerator->AddArchitectureFlags(
- langFlags, this->GeneratorTarget, linkLanguage, this->ConfigName);
- vars.LanguageCompileFlags = langFlags.c_str();
- std::string launcher;
- const char* val = this->LocalGenerator->GetRuleLauncher(
- this->GeneratorTarget, "RULE_LAUNCH_LINK");
- if (val && *val) {
- launcher = val;
- launcher += " ";
- }
- std::unique_ptr<cmRulePlaceholderExpander> rulePlaceholderExpander(
- this->LocalGenerator->CreateRulePlaceholderExpander());
-
- rulePlaceholderExpander->SetTargetImpLib(targetOutPathImport);
- if (useArchiveRules) {
-
- std::vector<std::string> object_strings;
- this->WriteObjectsStrings(object_strings, archiveCommandLimit);
-
-
- if (!this->DeviceLinkObject.empty()) {
- object_strings.push_back(this->LocalGenerator->ConvertToOutputFormat(
- this->LocalGenerator->MaybeConvertToRelativePath(
- this->LocalGenerator->GetCurrentBinaryDirectory(),
- this->DeviceLinkObject),
- cmOutputConverter::SHELL));
- }
-
- std::vector<std::string>::iterator osi = object_strings.begin();
- {
- vars.Objects = osi->c_str();
- for (std::string const& acc : archiveCreateCommands) {
- std::string cmd = launcher + acc;
- rulePlaceholderExpander->ExpandRuleVariables(this->LocalGenerator,
- cmd, vars);
- real_link_commands.push_back(std::move(cmd));
- }
- }
-
- for (++osi; osi != object_strings.end(); ++osi) {
- vars.Objects = osi->c_str();
- for (std::string const& aac : archiveAppendCommands) {
- std::string cmd = launcher + aac;
- rulePlaceholderExpander->ExpandRuleVariables(this->LocalGenerator,
- cmd, vars);
- real_link_commands.push_back(std::move(cmd));
- }
- }
-
- vars.Objects = "";
- for (std::string const& afc : archiveFinishCommands) {
- std::string cmd = launcher + afc;
- rulePlaceholderExpander->ExpandRuleVariables(this->LocalGenerator, cmd,
- vars);
-
- if (!cmd.empty() && cmd[0] != ':') {
- real_link_commands.push_back(std::move(cmd));
- }
- }
- } else {
-
- std::string linkRule = this->GetLinkRule(linkRuleVar);
- cmSystemTools::ExpandListArgument(linkRule, real_link_commands);
- if (this->GeneratorTarget->GetPropertyAsBool("LINK_WHAT_YOU_USE") &&
- (this->GeneratorTarget->GetType() == cmStateEnums::SHARED_LIBRARY)) {
- std::string cmakeCommand = this->LocalGenerator->ConvertToOutputFormat(
- cmSystemTools::GetCMakeCommand(), cmLocalGenerator::SHELL);
- cmakeCommand += " -E __run_co_compile --lwyu=";
- cmakeCommand += targetOutPathReal;
- real_link_commands.push_back(std::move(cmakeCommand));
- }
-
- for (std::string& real_link_command : real_link_commands) {
- real_link_command = launcher + real_link_command;
- rulePlaceholderExpander->ExpandRuleVariables(this->LocalGenerator,
- real_link_command, vars);
- }
- }
-
- this->LocalGenerator->SetLinkScriptShell(false);
- }
-
-
- if (useLinkScript) {
-
- const char* name = (relink ? "relink.txt" : "link.txt");
- this->CreateLinkScript(name, real_link_commands, commands1, depends);
- } else {
-
- commands1 = real_link_commands;
- }
- this->LocalGenerator->CreateCDCommand(
- commands1, this->Makefile->GetCurrentBinaryDirectory(),
- this->LocalGenerator->GetBinaryDirectory());
- commands.insert(commands.end(), commands1.begin(), commands1.end());
- commands1.clear();
-
-
- if (targetOutPath != targetOutPathReal &&
- !this->GeneratorTarget->IsFrameworkOnApple()) {
- std::string symlink = "$(CMAKE_COMMAND) -E cmake_symlink_library ";
- symlink += targetOutPathReal;
- symlink += " ";
- symlink += targetOutPathSO;
- symlink += " ";
- symlink += targetOutPath;
- commands1.push_back(std::move(symlink));
- this->LocalGenerator->CreateCDCommand(
- commands1, this->Makefile->GetCurrentBinaryDirectory(),
- this->LocalGenerator->GetBinaryDirectory());
- commands.insert(commands.end(), commands1.begin(), commands1.end());
- commands1.clear();
- }
-
- if (!relink) {
- this->LocalGenerator->AppendCustomCommands(
- commands, this->GeneratorTarget->GetPostBuildCommands(),
- this->GeneratorTarget, this->LocalGenerator->GetBinaryDirectory());
- }
-
- std::vector<std::string> outputs(1, targetFullPathReal);
- if (targetNameSO != targetNameReal) {
- outputs.push_back(targetFullPathSO);
- }
- if (targetName != targetNameSO && targetName != targetNameReal) {
- outputs.push_back(targetFullPath);
- }
-
- this->WriteMakeRule(*this->BuildFileStream, nullptr, outputs, depends,
- commands, false);
-
- this->WriteTargetDriverRule(targetFullPath, relink);
-
- this->CleanFiles.insert(this->CleanFiles.end(), libCleanFiles.begin(),
- libCleanFiles.end());
- }
|