cmMakefileExecutableTargetGenerator.cxx 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #include "cmMakefileExecutableTargetGenerator.h"
  4. #include <set>
  5. #include <sstream>
  6. #include <string>
  7. #include <utility>
  8. #include <vector>
  9. #include <cm/memory>
  10. #include <cmext/algorithm>
  11. #include "cmGeneratedFileStream.h"
  12. #include "cmGeneratorTarget.h"
  13. #include "cmGlobalUnixMakefileGenerator3.h"
  14. #include "cmLinkLineComputer.h"
  15. #include "cmLinkLineDeviceComputer.h"
  16. #include "cmLocalGenerator.h"
  17. #include "cmLocalUnixMakefileGenerator3.h"
  18. #include "cmMakefile.h"
  19. #include "cmOSXBundleGenerator.h"
  20. #include "cmOutputConverter.h"
  21. #include "cmRulePlaceholderExpander.h"
  22. #include "cmState.h"
  23. #include "cmStateDirectory.h"
  24. #include "cmStateSnapshot.h"
  25. #include "cmStateTypes.h"
  26. #include "cmStringAlgorithms.h"
  27. #include "cmSystemTools.h"
  28. cmMakefileExecutableTargetGenerator::cmMakefileExecutableTargetGenerator(
  29. cmGeneratorTarget* target)
  30. : cmMakefileTargetGenerator(target)
  31. {
  32. this->CustomCommandDriver = OnDepends;
  33. this->TargetNames =
  34. this->GeneratorTarget->GetExecutableNames(this->GetConfigName());
  35. this->OSXBundleGenerator = cm::make_unique<cmOSXBundleGenerator>(target);
  36. this->OSXBundleGenerator->SetMacContentFolders(&this->MacContentFolders);
  37. }
  38. cmMakefileExecutableTargetGenerator::~cmMakefileExecutableTargetGenerator() =
  39. default;
  40. void cmMakefileExecutableTargetGenerator::WriteRuleFiles()
  41. {
  42. // create the build.make file and directory, put in the common blocks
  43. this->CreateRuleFile();
  44. // write rules used to help build object files
  45. this->WriteCommonCodeRules();
  46. // write the per-target per-language flags
  47. this->WriteTargetLanguageFlags();
  48. // write in rules for object files and custom commands
  49. this->WriteTargetBuildRules();
  50. // write the device link rules
  51. this->WriteDeviceExecutableRule(false);
  52. // write the link rules
  53. this->WriteExecutableRule(false);
  54. if (this->GeneratorTarget->NeedRelinkBeforeInstall(this->GetConfigName())) {
  55. // Write rules to link an installable version of the target.
  56. this->WriteExecutableRule(true);
  57. }
  58. // Write clean target
  59. this->WriteTargetCleanRules();
  60. // Write the dependency generation rule. This must be done last so
  61. // that multiple output pair information is available.
  62. this->WriteTargetDependRules();
  63. // close the streams
  64. this->CloseFileStreams();
  65. }
  66. void cmMakefileExecutableTargetGenerator::WriteDeviceExecutableRule(
  67. bool relink)
  68. {
  69. #ifndef CMAKE_BOOTSTRAP
  70. const bool requiresDeviceLinking = requireDeviceLinking(
  71. *this->GeneratorTarget, *this->LocalGenerator, this->GetConfigName());
  72. if (!requiresDeviceLinking) {
  73. return;
  74. }
  75. std::vector<std::string> commands;
  76. // Get the language to use for linking this library.
  77. std::string linkLanguage = "CUDA";
  78. std::string const& objExt =
  79. this->Makefile->GetSafeDefinition("CMAKE_CUDA_OUTPUT_EXTENSION");
  80. // Build list of dependencies.
  81. std::vector<std::string> depends;
  82. this->AppendLinkDepends(depends, linkLanguage);
  83. // Get the name of the device object to generate.
  84. std::string const targetOutputReal =
  85. this->GeneratorTarget->ObjectDirectory + "cmake_device_link" + objExt;
  86. this->DeviceLinkObject = targetOutputReal;
  87. this->NumberOfProgressActions++;
  88. if (!this->NoRuleMessages) {
  89. cmLocalUnixMakefileGenerator3::EchoProgress progress;
  90. this->MakeEchoProgress(progress);
  91. // Add the link message.
  92. std::string buildEcho =
  93. cmStrCat("Linking ", linkLanguage, " device code ",
  94. this->LocalGenerator->ConvertToOutputFormat(
  95. this->LocalGenerator->MaybeConvertToRelativePath(
  96. this->LocalGenerator->GetCurrentBinaryDirectory(),
  97. this->DeviceLinkObject),
  98. cmOutputConverter::SHELL));
  99. this->LocalGenerator->AppendEcho(
  100. commands, buildEcho, cmLocalUnixMakefileGenerator3::EchoLink, &progress);
  101. }
  102. // Build a list of compiler flags and linker flags.
  103. std::string langFlags;
  104. std::string linkFlags;
  105. // Add language feature flags.
  106. this->LocalGenerator->AddLanguageFlagsForLinking(
  107. langFlags, this->GeneratorTarget, linkLanguage, this->GetConfigName());
  108. // Add device-specific linker flags.
  109. this->GetDeviceLinkFlags(linkFlags, linkLanguage);
  110. // Construct a list of files associated with this executable that
  111. // may need to be cleaned.
  112. std::vector<std::string> exeCleanFiles;
  113. exeCleanFiles.push_back(this->LocalGenerator->MaybeConvertToRelativePath(
  114. this->LocalGenerator->GetCurrentBinaryDirectory(), targetOutputReal));
  115. // Determine whether a link script will be used.
  116. bool useLinkScript = this->GlobalGenerator->GetUseLinkScript();
  117. // Construct the main link rule.
  118. std::vector<std::string> real_link_commands;
  119. const std::string linkRuleVar = "CMAKE_CUDA_DEVICE_LINK_EXECUTABLE";
  120. const std::string linkRule = this->GetLinkRule(linkRuleVar);
  121. std::vector<std::string> commands1;
  122. cmExpandList(linkRule, real_link_commands);
  123. bool useResponseFileForObjects =
  124. this->CheckUseResponseFileForObjects(linkLanguage);
  125. bool const useResponseFileForLibs =
  126. this->CheckUseResponseFileForLibraries(linkLanguage);
  127. // Expand the rule variables.
  128. {
  129. bool useWatcomQuote =
  130. this->Makefile->IsOn(linkRuleVar + "_USE_WATCOM_QUOTE");
  131. // Set path conversion for link script shells.
  132. this->LocalGenerator->SetLinkScriptShell(useLinkScript);
  133. std::unique_ptr<cmLinkLineComputer> linkLineComputer(
  134. new cmLinkLineDeviceComputer(
  135. this->LocalGenerator,
  136. this->LocalGenerator->GetStateSnapshot().GetDirectory()));
  137. linkLineComputer->SetForResponse(useResponseFileForLibs);
  138. linkLineComputer->SetUseWatcomQuote(useWatcomQuote);
  139. linkLineComputer->SetRelink(relink);
  140. // Collect up flags to link in needed libraries.
  141. std::string linkLibs;
  142. this->CreateLinkLibs(linkLineComputer.get(), linkLibs,
  143. useResponseFileForLibs, depends);
  144. // Construct object file lists that may be needed to expand the
  145. // rule.
  146. std::string buildObjs;
  147. this->CreateObjectLists(useLinkScript, false, useResponseFileForObjects,
  148. buildObjs, depends, useWatcomQuote);
  149. std::string const& aixExports = this->GetAIXExports(this->GetConfigName());
  150. cmRulePlaceholderExpander::RuleVariables vars;
  151. std::string objectDir = this->GeneratorTarget->GetSupportDirectory();
  152. objectDir = this->LocalGenerator->ConvertToOutputFormat(
  153. this->LocalGenerator->MaybeConvertToRelativePath(
  154. this->LocalGenerator->GetCurrentBinaryDirectory(), objectDir),
  155. cmOutputConverter::SHELL);
  156. cmOutputConverter::OutputFormat output = (useWatcomQuote)
  157. ? cmOutputConverter::WATCOMQUOTE
  158. : cmOutputConverter::SHELL;
  159. std::string target = this->LocalGenerator->ConvertToOutputFormat(
  160. this->LocalGenerator->MaybeConvertToRelativePath(
  161. this->LocalGenerator->GetCurrentBinaryDirectory(), targetOutputReal),
  162. output);
  163. std::string targetFullPathCompilePDB =
  164. this->ComputeTargetCompilePDB(this->GetConfigName());
  165. std::string targetOutPathCompilePDB =
  166. this->LocalGenerator->ConvertToOutputFormat(targetFullPathCompilePDB,
  167. cmOutputConverter::SHELL);
  168. vars.Language = linkLanguage.c_str();
  169. vars.AIXExports = aixExports.c_str();
  170. vars.Objects = buildObjs.c_str();
  171. vars.ObjectDir = objectDir.c_str();
  172. vars.Target = target.c_str();
  173. vars.LinkLibraries = linkLibs.c_str();
  174. vars.LanguageCompileFlags = langFlags.c_str();
  175. vars.LinkFlags = linkFlags.c_str();
  176. vars.TargetCompilePDB = targetOutPathCompilePDB.c_str();
  177. std::string launcher;
  178. const char* val = this->LocalGenerator->GetRuleLauncher(
  179. this->GeneratorTarget, "RULE_LAUNCH_LINK");
  180. if (val && *val) {
  181. launcher = cmStrCat(val, ' ');
  182. }
  183. std::unique_ptr<cmRulePlaceholderExpander> rulePlaceholderExpander(
  184. this->LocalGenerator->CreateRulePlaceholderExpander());
  185. // Expand placeholders in the commands.
  186. rulePlaceholderExpander->SetTargetImpLib(targetOutputReal);
  187. for (std::string& real_link_command : real_link_commands) {
  188. real_link_command = cmStrCat(launcher, real_link_command);
  189. rulePlaceholderExpander->ExpandRuleVariables(this->LocalGenerator,
  190. real_link_command, vars);
  191. }
  192. // Restore path conversion to normal shells.
  193. this->LocalGenerator->SetLinkScriptShell(false);
  194. }
  195. // Optionally convert the build rule to use a script to avoid long
  196. // command lines in the make shell.
  197. if (useLinkScript) {
  198. // Use a link script.
  199. const char* name = (relink ? "drelink.txt" : "dlink.txt");
  200. this->CreateLinkScript(name, real_link_commands, commands1, depends);
  201. } else {
  202. // No link script. Just use the link rule directly.
  203. commands1 = real_link_commands;
  204. }
  205. this->LocalGenerator->CreateCDCommand(
  206. commands1, this->Makefile->GetCurrentBinaryDirectory(),
  207. this->LocalGenerator->GetBinaryDirectory());
  208. cm::append(commands, commands1);
  209. commands1.clear();
  210. // Write the build rule.
  211. this->LocalGenerator->WriteMakeRule(*this->BuildFileStream, nullptr,
  212. targetOutputReal, depends, commands,
  213. false);
  214. // Write the main driver rule to build everything in this target.
  215. this->WriteTargetDriverRule(targetOutputReal, relink);
  216. // Clean all the possible executable names and symlinks.
  217. this->CleanFiles.insert(exeCleanFiles.begin(), exeCleanFiles.end());
  218. #else
  219. static_cast<void>(relink);
  220. #endif
  221. }
  222. void cmMakefileExecutableTargetGenerator::WriteExecutableRule(bool relink)
  223. {
  224. std::vector<std::string> commands;
  225. // Get the name of the executable to generate.
  226. cmGeneratorTarget::Names targetNames =
  227. this->GeneratorTarget->GetExecutableNames(this->GetConfigName());
  228. // Construct the full path version of the names.
  229. std::string outpath =
  230. this->GeneratorTarget->GetDirectory(this->GetConfigName());
  231. if (this->GeneratorTarget->IsAppBundleOnApple()) {
  232. this->OSXBundleGenerator->CreateAppBundle(targetNames.Output, outpath,
  233. this->GetConfigName());
  234. }
  235. outpath += '/';
  236. std::string outpathImp;
  237. if (relink) {
  238. outpath = cmStrCat(this->Makefile->GetCurrentBinaryDirectory(),
  239. "/CMakeFiles/CMakeRelink.dir");
  240. cmSystemTools::MakeDirectory(outpath);
  241. outpath += '/';
  242. if (!targetNames.ImportLibrary.empty()) {
  243. outpathImp = outpath;
  244. }
  245. } else {
  246. cmSystemTools::MakeDirectory(outpath);
  247. if (!targetNames.ImportLibrary.empty()) {
  248. outpathImp = this->GeneratorTarget->GetDirectory(
  249. this->GetConfigName(), cmStateEnums::ImportLibraryArtifact);
  250. cmSystemTools::MakeDirectory(outpathImp);
  251. outpathImp += '/';
  252. }
  253. }
  254. std::string compilePdbOutputPath =
  255. this->GeneratorTarget->GetCompilePDBDirectory(this->GetConfigName());
  256. cmSystemTools::MakeDirectory(compilePdbOutputPath);
  257. std::string pdbOutputPath =
  258. this->GeneratorTarget->GetPDBDirectory(this->GetConfigName());
  259. cmSystemTools::MakeDirectory(pdbOutputPath);
  260. pdbOutputPath += '/';
  261. std::string targetFullPath = outpath + targetNames.Output;
  262. std::string targetFullPathReal = outpath + targetNames.Real;
  263. std::string targetFullPathPDB = pdbOutputPath + targetNames.PDB;
  264. std::string targetFullPathImport = outpathImp + targetNames.ImportLibrary;
  265. std::string targetOutPathPDB = this->LocalGenerator->ConvertToOutputFormat(
  266. targetFullPathPDB, cmOutputConverter::SHELL);
  267. // Convert to the output path to use in constructing commands.
  268. std::string targetOutPath = this->LocalGenerator->ConvertToOutputFormat(
  269. this->LocalGenerator->MaybeConvertToRelativePath(
  270. this->LocalGenerator->GetCurrentBinaryDirectory(), targetFullPath),
  271. cmOutputConverter::SHELL);
  272. std::string targetOutPathReal = this->LocalGenerator->ConvertToOutputFormat(
  273. this->LocalGenerator->MaybeConvertToRelativePath(
  274. this->LocalGenerator->GetCurrentBinaryDirectory(), targetFullPathReal),
  275. cmOutputConverter::SHELL);
  276. std::string targetOutPathImport =
  277. this->LocalGenerator->ConvertToOutputFormat(
  278. this->LocalGenerator->MaybeConvertToRelativePath(
  279. this->LocalGenerator->GetCurrentBinaryDirectory(),
  280. targetFullPathImport),
  281. cmOutputConverter::SHELL);
  282. // Get the language to use for linking this executable.
  283. std::string linkLanguage =
  284. this->GeneratorTarget->GetLinkerLanguage(this->GetConfigName());
  285. // Make sure we have a link language.
  286. if (linkLanguage.empty()) {
  287. cmSystemTools::Error("Cannot determine link language for target \"" +
  288. this->GeneratorTarget->GetName() + "\".");
  289. return;
  290. }
  291. // Build list of dependencies.
  292. std::vector<std::string> depends;
  293. this->AppendLinkDepends(depends, linkLanguage);
  294. if (!this->DeviceLinkObject.empty()) {
  295. depends.push_back(this->DeviceLinkObject);
  296. }
  297. this->NumberOfProgressActions++;
  298. if (!this->NoRuleMessages) {
  299. cmLocalUnixMakefileGenerator3::EchoProgress progress;
  300. this->MakeEchoProgress(progress);
  301. // Add the link message.
  302. std::string buildEcho =
  303. cmStrCat("Linking ", linkLanguage, " executable ", targetOutPath);
  304. this->LocalGenerator->AppendEcho(
  305. commands, buildEcho, cmLocalUnixMakefileGenerator3::EchoLink, &progress);
  306. }
  307. // Build a list of compiler flags and linker flags.
  308. std::string flags;
  309. std::string linkFlags;
  310. // Add flags to create an executable.
  311. this->LocalGenerator->AddConfigVariableFlags(
  312. linkFlags, "CMAKE_EXE_LINKER_FLAGS", this->GetConfigName());
  313. if (this->GeneratorTarget->GetPropertyAsBool("WIN32_EXECUTABLE")) {
  314. this->LocalGenerator->AppendFlags(
  315. linkFlags, this->Makefile->GetSafeDefinition("CMAKE_CREATE_WIN32_EXE"));
  316. } else {
  317. this->LocalGenerator->AppendFlags(
  318. linkFlags,
  319. this->Makefile->GetSafeDefinition("CMAKE_CREATE_CONSOLE_EXE"));
  320. }
  321. // Add symbol export flags if necessary.
  322. if (this->GeneratorTarget->IsExecutableWithExports()) {
  323. std::string export_flag_var =
  324. cmStrCat("CMAKE_EXE_EXPORTS_", linkLanguage, "_FLAG");
  325. this->LocalGenerator->AppendFlags(
  326. linkFlags, this->Makefile->GetSafeDefinition(export_flag_var));
  327. }
  328. this->LocalGenerator->AppendFlags(linkFlags,
  329. this->LocalGenerator->GetLinkLibsCMP0065(
  330. linkLanguage, *this->GeneratorTarget));
  331. if (this->GeneratorTarget->GetPropertyAsBool("LINK_WHAT_YOU_USE")) {
  332. this->LocalGenerator->AppendFlags(linkFlags, " -Wl,--no-as-needed");
  333. }
  334. // Add language feature flags.
  335. this->LocalGenerator->AddLanguageFlagsForLinking(
  336. flags, this->GeneratorTarget, linkLanguage, this->GetConfigName());
  337. this->LocalGenerator->AddArchitectureFlags(
  338. flags, this->GeneratorTarget, linkLanguage, this->GetConfigName());
  339. // Add target-specific linker flags.
  340. this->GetTargetLinkFlags(linkFlags, linkLanguage);
  341. {
  342. std::unique_ptr<cmLinkLineComputer> linkLineComputer =
  343. this->CreateLinkLineComputer(
  344. this->LocalGenerator,
  345. this->LocalGenerator->GetStateSnapshot().GetDirectory());
  346. this->AddModuleDefinitionFlag(linkLineComputer.get(), linkFlags,
  347. this->GetConfigName());
  348. }
  349. this->LocalGenerator->AppendIPOLinkerFlags(
  350. linkFlags, this->GeneratorTarget, this->GetConfigName(), linkLanguage);
  351. // Construct a list of files associated with this executable that
  352. // may need to be cleaned.
  353. std::vector<std::string> exeCleanFiles;
  354. exeCleanFiles.push_back(this->LocalGenerator->MaybeConvertToRelativePath(
  355. this->LocalGenerator->GetCurrentBinaryDirectory(), targetFullPath));
  356. #ifdef _WIN32
  357. // There may be a manifest file for this target. Add it to the
  358. // clean set just in case.
  359. exeCleanFiles.push_back(this->LocalGenerator->MaybeConvertToRelativePath(
  360. this->LocalGenerator->GetCurrentBinaryDirectory(),
  361. targetFullPath + ".manifest"));
  362. #endif
  363. if (this->TargetNames.Real != this->TargetNames.Output) {
  364. exeCleanFiles.push_back(this->LocalGenerator->MaybeConvertToRelativePath(
  365. this->LocalGenerator->GetCurrentBinaryDirectory(), targetFullPathReal));
  366. }
  367. if (!this->TargetNames.ImportLibrary.empty()) {
  368. exeCleanFiles.push_back(this->LocalGenerator->MaybeConvertToRelativePath(
  369. this->LocalGenerator->GetCurrentBinaryDirectory(),
  370. targetFullPathImport));
  371. std::string implib;
  372. if (this->GeneratorTarget->GetImplibGNUtoMS(
  373. this->GetConfigName(), targetFullPathImport, implib)) {
  374. exeCleanFiles.push_back(this->LocalGenerator->MaybeConvertToRelativePath(
  375. this->LocalGenerator->GetCurrentBinaryDirectory(), implib));
  376. }
  377. }
  378. // List the PDB for cleaning only when the whole target is
  379. // cleaned. We do not want to delete the .pdb file just before
  380. // linking the target.
  381. this->CleanFiles.insert(this->LocalGenerator->MaybeConvertToRelativePath(
  382. this->LocalGenerator->GetCurrentBinaryDirectory(), targetFullPathPDB));
  383. // Add the pre-build and pre-link rules building but not when relinking.
  384. if (!relink) {
  385. this->LocalGenerator->AppendCustomCommands(
  386. commands, this->GeneratorTarget->GetPreBuildCommands(),
  387. this->GeneratorTarget, this->LocalGenerator->GetBinaryDirectory());
  388. this->LocalGenerator->AppendCustomCommands(
  389. commands, this->GeneratorTarget->GetPreLinkCommands(),
  390. this->GeneratorTarget, this->LocalGenerator->GetBinaryDirectory());
  391. }
  392. // Determine whether a link script will be used.
  393. bool useLinkScript = this->GlobalGenerator->GetUseLinkScript();
  394. // Construct the main link rule.
  395. std::vector<std::string> real_link_commands;
  396. std::string linkRuleVar = this->GeneratorTarget->GetCreateRuleVariable(
  397. linkLanguage, this->GetConfigName());
  398. std::string linkRule = this->GetLinkRule(linkRuleVar);
  399. std::vector<std::string> commands1;
  400. cmExpandList(linkRule, real_link_commands);
  401. if (this->GeneratorTarget->IsExecutableWithExports()) {
  402. // If a separate rule for creating an import library is specified
  403. // add it now.
  404. std::string implibRuleVar =
  405. cmStrCat("CMAKE_", linkLanguage, "_CREATE_IMPORT_LIBRARY");
  406. if (const char* rule = this->Makefile->GetDefinition(implibRuleVar)) {
  407. cmExpandList(rule, real_link_commands);
  408. }
  409. }
  410. bool useResponseFileForObjects =
  411. this->CheckUseResponseFileForObjects(linkLanguage);
  412. bool const useResponseFileForLibs =
  413. this->CheckUseResponseFileForLibraries(linkLanguage);
  414. // Expand the rule variables.
  415. {
  416. bool useWatcomQuote =
  417. this->Makefile->IsOn(linkRuleVar + "_USE_WATCOM_QUOTE");
  418. // Set path conversion for link script shells.
  419. this->LocalGenerator->SetLinkScriptShell(useLinkScript);
  420. std::unique_ptr<cmLinkLineComputer> linkLineComputer =
  421. this->CreateLinkLineComputer(
  422. this->LocalGenerator,
  423. this->LocalGenerator->GetStateSnapshot().GetDirectory());
  424. linkLineComputer->SetForResponse(useResponseFileForLibs);
  425. linkLineComputer->SetUseWatcomQuote(useWatcomQuote);
  426. linkLineComputer->SetRelink(relink);
  427. // Collect up flags to link in needed libraries.
  428. std::string linkLibs;
  429. this->CreateLinkLibs(linkLineComputer.get(), linkLibs,
  430. useResponseFileForLibs, depends);
  431. // Construct object file lists that may be needed to expand the
  432. // rule.
  433. std::string buildObjs;
  434. this->CreateObjectLists(useLinkScript, false, useResponseFileForObjects,
  435. buildObjs, depends, useWatcomQuote);
  436. if (!this->DeviceLinkObject.empty()) {
  437. buildObjs += " " +
  438. this->LocalGenerator->ConvertToOutputFormat(
  439. this->LocalGenerator->MaybeConvertToRelativePath(
  440. this->LocalGenerator->GetCurrentBinaryDirectory(),
  441. this->DeviceLinkObject),
  442. cmOutputConverter::SHELL);
  443. }
  444. // maybe create .def file from list of objects
  445. this->GenDefFile(real_link_commands);
  446. std::string manifests = this->GetManifests(this->GetConfigName());
  447. cmRulePlaceholderExpander::RuleVariables vars;
  448. vars.CMTargetName = this->GeneratorTarget->GetName().c_str();
  449. vars.CMTargetType =
  450. cmState::GetTargetTypeName(this->GeneratorTarget->GetType()).c_str();
  451. vars.Language = linkLanguage.c_str();
  452. vars.Objects = buildObjs.c_str();
  453. std::string objectDir = this->GeneratorTarget->GetSupportDirectory();
  454. objectDir = this->LocalGenerator->ConvertToOutputFormat(
  455. this->LocalGenerator->MaybeConvertToRelativePath(
  456. this->LocalGenerator->GetCurrentBinaryDirectory(), objectDir),
  457. cmOutputConverter::SHELL);
  458. vars.ObjectDir = objectDir.c_str();
  459. cmOutputConverter::OutputFormat output = (useWatcomQuote)
  460. ? cmOutputConverter::WATCOMQUOTE
  461. : cmOutputConverter::SHELL;
  462. std::string target = this->LocalGenerator->ConvertToOutputFormat(
  463. this->LocalGenerator->MaybeConvertToRelativePath(
  464. this->LocalGenerator->GetCurrentBinaryDirectory(), targetFullPathReal),
  465. output);
  466. vars.Target = target.c_str();
  467. vars.TargetPDB = targetOutPathPDB.c_str();
  468. // Setup the target version.
  469. std::string targetVersionMajor;
  470. std::string targetVersionMinor;
  471. {
  472. std::ostringstream majorStream;
  473. std::ostringstream minorStream;
  474. int major;
  475. int minor;
  476. this->GeneratorTarget->GetTargetVersion(major, minor);
  477. majorStream << major;
  478. minorStream << minor;
  479. targetVersionMajor = majorStream.str();
  480. targetVersionMinor = minorStream.str();
  481. }
  482. vars.TargetVersionMajor = targetVersionMajor.c_str();
  483. vars.TargetVersionMinor = targetVersionMinor.c_str();
  484. vars.LinkLibraries = linkLibs.c_str();
  485. vars.Flags = flags.c_str();
  486. vars.LinkFlags = linkFlags.c_str();
  487. vars.Manifests = manifests.c_str();
  488. if (this->GeneratorTarget->GetPropertyAsBool("LINK_WHAT_YOU_USE")) {
  489. std::string cmakeCommand =
  490. cmStrCat(this->LocalGenerator->ConvertToOutputFormat(
  491. cmSystemTools::GetCMakeCommand(), cmLocalGenerator::SHELL),
  492. " -E __run_co_compile --lwyu=", targetOutPathReal);
  493. real_link_commands.push_back(std::move(cmakeCommand));
  494. }
  495. std::string launcher;
  496. const char* val = this->LocalGenerator->GetRuleLauncher(
  497. this->GeneratorTarget, "RULE_LAUNCH_LINK");
  498. if (val && *val) {
  499. launcher = cmStrCat(val, ' ');
  500. }
  501. std::unique_ptr<cmRulePlaceholderExpander> rulePlaceholderExpander(
  502. this->LocalGenerator->CreateRulePlaceholderExpander());
  503. // Expand placeholders in the commands.
  504. rulePlaceholderExpander->SetTargetImpLib(targetOutPathImport);
  505. for (std::string& real_link_command : real_link_commands) {
  506. real_link_command = cmStrCat(launcher, real_link_command);
  507. rulePlaceholderExpander->ExpandRuleVariables(this->LocalGenerator,
  508. real_link_command, vars);
  509. }
  510. // Restore path conversion to normal shells.
  511. this->LocalGenerator->SetLinkScriptShell(false);
  512. }
  513. // Optionally convert the build rule to use a script to avoid long
  514. // command lines in the make shell.
  515. if (useLinkScript) {
  516. // Use a link script.
  517. const char* name = (relink ? "relink.txt" : "link.txt");
  518. this->CreateLinkScript(name, real_link_commands, commands1, depends);
  519. } else {
  520. // No link script. Just use the link rule directly.
  521. commands1 = real_link_commands;
  522. }
  523. this->LocalGenerator->CreateCDCommand(
  524. commands1, this->Makefile->GetCurrentBinaryDirectory(),
  525. this->LocalGenerator->GetBinaryDirectory());
  526. cm::append(commands, commands1);
  527. commands1.clear();
  528. // Add a rule to create necessary symlinks for the library.
  529. if (targetOutPath != targetOutPathReal) {
  530. std::string symlink =
  531. cmStrCat("$(CMAKE_COMMAND) -E cmake_symlink_executable ",
  532. targetOutPathReal, ' ', targetOutPath);
  533. commands1.push_back(std::move(symlink));
  534. this->LocalGenerator->CreateCDCommand(
  535. commands1, this->Makefile->GetCurrentBinaryDirectory(),
  536. this->LocalGenerator->GetBinaryDirectory());
  537. cm::append(commands, commands1);
  538. commands1.clear();
  539. }
  540. // Add the post-build rules when building but not when relinking.
  541. if (!relink) {
  542. this->LocalGenerator->AppendCustomCommands(
  543. commands, this->GeneratorTarget->GetPostBuildCommands(),
  544. this->GeneratorTarget, this->LocalGenerator->GetBinaryDirectory());
  545. }
  546. // Write the build rule.
  547. this->LocalGenerator->WriteMakeRule(*this->BuildFileStream, nullptr,
  548. targetFullPathReal, depends, commands,
  549. false);
  550. // The symlink name for the target should depend on the real target
  551. // so if the target version changes it rebuilds and recreates the
  552. // symlink.
  553. if (targetFullPath != targetFullPathReal) {
  554. depends.clear();
  555. commands.clear();
  556. depends.push_back(targetFullPathReal);
  557. this->LocalGenerator->WriteMakeRule(*this->BuildFileStream, nullptr,
  558. targetFullPath, depends, commands,
  559. false);
  560. }
  561. // Write the main driver rule to build everything in this target.
  562. this->WriteTargetDriverRule(targetFullPath, relink);
  563. // Clean all the possible executable names and symlinks.
  564. this->CleanFiles.insert(exeCleanFiles.begin(), exeCleanFiles.end());
  565. }