cmLocalGenerator.cxx 168 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782
  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 "cmLocalGenerator.h"
  4. #include <algorithm>
  5. #include <array>
  6. #include <cassert>
  7. #include <cstdio>
  8. #include <cstdlib>
  9. #include <initializer_list>
  10. #include <iterator>
  11. #include <sstream>
  12. #include <type_traits>
  13. #include <unordered_set>
  14. #include <utility>
  15. #include <vector>
  16. #include <cm/memory>
  17. #include <cm/optional>
  18. #include <cm/string_view>
  19. #include <cmext/algorithm>
  20. #include <cmext/string_view>
  21. #include "cmsys/RegularExpression.hxx"
  22. #include "cmAlgorithms.h"
  23. #include "cmComputeLinkInformation.h"
  24. #include "cmCryptoHash.h"
  25. #include "cmCustomCommand.h"
  26. #include "cmCustomCommandGenerator.h"
  27. #include "cmCustomCommandLines.h"
  28. #include "cmCustomCommandTypes.h"
  29. #include "cmGeneratedFileStream.h"
  30. #include "cmGeneratorExpression.h"
  31. #include "cmGeneratorExpressionEvaluationFile.h"
  32. #include "cmGeneratorTarget.h"
  33. #include "cmGlobalGenerator.h"
  34. #include "cmInstallGenerator.h"
  35. #include "cmInstallScriptGenerator.h"
  36. #include "cmInstallTargetGenerator.h"
  37. #include "cmLinkLineComputer.h"
  38. #include "cmLinkLineDeviceComputer.h"
  39. #include "cmList.h"
  40. #include "cmMakefile.h"
  41. #include "cmMessageType.h"
  42. #include "cmRange.h"
  43. #include "cmRulePlaceholderExpander.h"
  44. #include "cmSourceFile.h"
  45. #include "cmSourceFileLocation.h"
  46. #include "cmSourceFileLocationKind.h"
  47. #include "cmStandardLevelResolver.h"
  48. #include "cmState.h"
  49. #include "cmStateDirectory.h"
  50. #include "cmStateTypes.h"
  51. #include "cmStringAlgorithms.h"
  52. #include "cmSystemTools.h"
  53. #include "cmTarget.h"
  54. #include "cmTestGenerator.h"
  55. #include "cmValue.h"
  56. #include "cmVersion.h"
  57. #include "cmake.h"
  58. #if defined(__HAIKU__)
  59. # include <FindDirectory.h>
  60. # include <StorageDefs.h>
  61. #endif
  62. // List of variables that are replaced when
  63. // rules are expanded. These variables are
  64. // replaced in the form <var> with GetSafeDefinition(var).
  65. // ${LANG} is replaced in the variable first with all enabled
  66. // languages.
  67. static auto ruleReplaceVars = { "CMAKE_${LANG}_COMPILER",
  68. "CMAKE_SHARED_LIBRARY_CREATE_${LANG}_FLAGS",
  69. "CMAKE_SHARED_MODULE_CREATE_${LANG}_FLAGS",
  70. "CMAKE_SHARED_MODULE_${LANG}_FLAGS",
  71. "CMAKE_SHARED_LIBRARY_${LANG}_FLAGS",
  72. "CMAKE_${LANG}_LINK_FLAGS",
  73. "CMAKE_SHARED_LIBRARY_SONAME_${LANG}_FLAG",
  74. "CMAKE_${LANG}_ARCHIVE",
  75. "CMAKE_AR",
  76. "CMAKE_CURRENT_SOURCE_DIR",
  77. "CMAKE_CURRENT_BINARY_DIR",
  78. "CMAKE_RANLIB",
  79. "CMAKE_LINKER",
  80. "CMAKE_MT",
  81. "CMAKE_TAPI",
  82. "CMAKE_CUDA_HOST_COMPILER",
  83. "CMAKE_CUDA_HOST_LINK_LAUNCHER",
  84. "CMAKE_HIP_HOST_COMPILER",
  85. "CMAKE_HIP_HOST_LINK_LAUNCHER",
  86. "CMAKE_CL_SHOWINCLUDES_PREFIX" };
  87. cmLocalGenerator::cmLocalGenerator(cmGlobalGenerator* gg, cmMakefile* makefile)
  88. : cmOutputConverter(makefile->GetStateSnapshot())
  89. , DirectoryBacktrace(makefile->GetBacktrace())
  90. {
  91. this->GlobalGenerator = gg;
  92. this->Makefile = makefile;
  93. this->AliasTargets = makefile->GetAliasTargets();
  94. this->EmitUniversalBinaryFlags = true;
  95. this->BackwardsCompatibility = 0;
  96. this->BackwardsCompatibilityFinal = false;
  97. this->ComputeObjectMaxPath();
  98. // Canonicalize entries of the CPATH environment variable the same
  99. // way detection of CMAKE_<LANG>_IMPLICIT_INCLUDE_DIRECTORIES does.
  100. {
  101. std::vector<std::string> cpath;
  102. cmSystemTools::GetPath(cpath, "CPATH");
  103. for (std::string const& cp : cpath) {
  104. if (cmSystemTools::FileIsFullPath(cp)) {
  105. this->EnvCPATH.emplace_back(cmSystemTools::CollapseFullPath(cp));
  106. }
  107. }
  108. }
  109. std::vector<std::string> enabledLanguages =
  110. this->GetState()->GetEnabledLanguages();
  111. if (cmValue sysrootCompile =
  112. this->Makefile->GetDefinition("CMAKE_SYSROOT_COMPILE")) {
  113. this->CompilerSysroot = *sysrootCompile;
  114. } else {
  115. this->CompilerSysroot = this->Makefile->GetSafeDefinition("CMAKE_SYSROOT");
  116. }
  117. if (cmValue sysrootLink =
  118. this->Makefile->GetDefinition("CMAKE_SYSROOT_LINK")) {
  119. this->LinkerSysroot = *sysrootLink;
  120. } else {
  121. this->LinkerSysroot = this->Makefile->GetSafeDefinition("CMAKE_SYSROOT");
  122. }
  123. // OSX SYSROOT can be required by some tools, like tapi
  124. {
  125. cmValue osxSysroot = this->Makefile->GetDefinition("CMAKE_OSX_SYSROOT");
  126. this->VariableMappings["CMAKE_OSX_SYSROOT"] =
  127. osxSysroot.IsEmpty() ? "/" : this->EscapeForShell(*osxSysroot, true);
  128. }
  129. if (cmValue appleArchSysroots =
  130. this->Makefile->GetDefinition("CMAKE_APPLE_ARCH_SYSROOTS")) {
  131. std::string const& appleArchs =
  132. this->Makefile->GetSafeDefinition("CMAKE_OSX_ARCHITECTURES");
  133. cmList archs(appleArchs);
  134. cmList sysroots{ appleArchSysroots, cmList::EmptyElements::Yes };
  135. if (archs.size() == sysroots.size()) {
  136. for (cmList::size_type i = 0; i < archs.size(); ++i) {
  137. this->AppleArchSysroots[archs[i]] = sysroots[i];
  138. }
  139. } else {
  140. std::string const e =
  141. cmStrCat("CMAKE_APPLE_ARCH_SYSROOTS:\n ", *appleArchSysroots,
  142. "\n"
  143. "is not the same length as CMAKE_OSX_ARCHITECTURES:\n ",
  144. appleArchs);
  145. this->IssueMessage(MessageType::FATAL_ERROR, e);
  146. }
  147. }
  148. for (std::string const& lang : enabledLanguages) {
  149. if (lang == "NONE") {
  150. continue;
  151. }
  152. this->Compilers["CMAKE_" + lang + "_COMPILER"] = lang;
  153. this->VariableMappings["CMAKE_" + lang + "_COMPILER"] =
  154. this->Makefile->GetSafeDefinition("CMAKE_" + lang + "_COMPILER");
  155. std::string const& compilerArg1 = "CMAKE_" + lang + "_COMPILER_ARG1";
  156. std::string const& compilerTarget = "CMAKE_" + lang + "_COMPILER_TARGET";
  157. std::string const& compilerOptionTarget =
  158. "CMAKE_" + lang + "_COMPILE_OPTIONS_TARGET";
  159. std::string const& compilerExternalToolchain =
  160. "CMAKE_" + lang + "_COMPILER_EXTERNAL_TOOLCHAIN";
  161. std::string const& compilerOptionExternalToolchain =
  162. "CMAKE_" + lang + "_COMPILE_OPTIONS_EXTERNAL_TOOLCHAIN";
  163. std::string const& compilerOptionSysroot =
  164. "CMAKE_" + lang + "_COMPILE_OPTIONS_SYSROOT";
  165. this->VariableMappings[compilerArg1] =
  166. this->Makefile->GetSafeDefinition(compilerArg1);
  167. this->VariableMappings[compilerTarget] =
  168. this->Makefile->GetSafeDefinition(compilerTarget);
  169. this->VariableMappings[compilerOptionTarget] =
  170. this->Makefile->GetSafeDefinition(compilerOptionTarget);
  171. this->VariableMappings[compilerExternalToolchain] =
  172. this->Makefile->GetSafeDefinition(compilerExternalToolchain);
  173. this->VariableMappings[compilerOptionExternalToolchain] =
  174. this->Makefile->GetSafeDefinition(compilerOptionExternalToolchain);
  175. this->VariableMappings[compilerOptionSysroot] =
  176. this->Makefile->GetSafeDefinition(compilerOptionSysroot);
  177. for (std::string replaceVar : ruleReplaceVars) {
  178. if (replaceVar.find("${LANG}") != std::string::npos) {
  179. cmSystemTools::ReplaceString(replaceVar, "${LANG}", lang);
  180. }
  181. this->VariableMappings[replaceVar] =
  182. this->Makefile->GetSafeDefinition(replaceVar);
  183. }
  184. }
  185. }
  186. std::unique_ptr<cmRulePlaceholderExpander>
  187. cmLocalGenerator::CreateRulePlaceholderExpander() const
  188. {
  189. return cm::make_unique<cmRulePlaceholderExpander>(
  190. this->Compilers, this->VariableMappings, this->CompilerSysroot,
  191. this->LinkerSysroot);
  192. }
  193. cmLocalGenerator::~cmLocalGenerator() = default;
  194. void cmLocalGenerator::IssueMessage(MessageType t,
  195. std::string const& text) const
  196. {
  197. this->GetCMakeInstance()->IssueMessage(t, text, this->DirectoryBacktrace);
  198. }
  199. void cmLocalGenerator::ComputeObjectMaxPath()
  200. {
  201. // Choose a maximum object file name length.
  202. #if defined(_WIN32) || defined(__CYGWIN__)
  203. this->ObjectPathMax = 250;
  204. #else
  205. this->ObjectPathMax = 1000;
  206. #endif
  207. cmValue plen = this->Makefile->GetDefinition("CMAKE_OBJECT_PATH_MAX");
  208. if (cmNonempty(plen)) {
  209. unsigned int pmax;
  210. if (sscanf(plen->c_str(), "%u", &pmax) == 1) {
  211. if (pmax >= 128) {
  212. this->ObjectPathMax = pmax;
  213. } else {
  214. std::ostringstream w;
  215. w << "CMAKE_OBJECT_PATH_MAX is set to " << pmax
  216. << ", which is less than the minimum of 128. "
  217. << "The value will be ignored.";
  218. this->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
  219. }
  220. } else {
  221. std::ostringstream w;
  222. w << "CMAKE_OBJECT_PATH_MAX is set to \"" << *plen
  223. << "\", which fails to parse as a positive integer. "
  224. << "The value will be ignored.";
  225. this->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
  226. }
  227. }
  228. this->ObjectMaxPathViolations.clear();
  229. }
  230. static void MoveSystemIncludesToEnd(std::vector<std::string>& includeDirs,
  231. const std::string& config,
  232. const std::string& lang,
  233. const cmGeneratorTarget* target)
  234. {
  235. if (!target) {
  236. return;
  237. }
  238. std::stable_sort(
  239. includeDirs.begin(), includeDirs.end(),
  240. [&target, &config, &lang](std::string const& a, std::string const& b) {
  241. return !target->IsSystemIncludeDirectory(a, config, lang) &&
  242. target->IsSystemIncludeDirectory(b, config, lang);
  243. });
  244. }
  245. static void MoveSystemIncludesToEnd(std::vector<BT<std::string>>& includeDirs,
  246. const std::string& config,
  247. const std::string& lang,
  248. const cmGeneratorTarget* target)
  249. {
  250. if (!target) {
  251. return;
  252. }
  253. std::stable_sort(includeDirs.begin(), includeDirs.end(),
  254. [target, &config, &lang](BT<std::string> const& a,
  255. BT<std::string> const& b) {
  256. return !target->IsSystemIncludeDirectory(a.Value, config,
  257. lang) &&
  258. target->IsSystemIncludeDirectory(b.Value, config, lang);
  259. });
  260. }
  261. void cmLocalGenerator::TraceDependencies() const
  262. {
  263. // Generate the rule files for each target.
  264. const auto& targets = this->GetGeneratorTargets();
  265. for (const auto& target : targets) {
  266. if (!target->IsInBuildSystem()) {
  267. continue;
  268. }
  269. target->TraceDependencies();
  270. }
  271. }
  272. void cmLocalGenerator::GenerateTestFiles()
  273. {
  274. if (!this->Makefile->IsOn("CMAKE_TESTING_ENABLED")) {
  275. return;
  276. }
  277. // Compute the set of configurations.
  278. std::vector<std::string> configurationTypes =
  279. this->Makefile->GetGeneratorConfigs(cmMakefile::OnlyMultiConfig);
  280. std::string config = this->Makefile->GetDefaultConfiguration();
  281. std::string file =
  282. cmStrCat(this->StateSnapshot.GetDirectory().GetCurrentBinary(),
  283. "/CTestTestfile.cmake");
  284. cmGeneratedFileStream fout(file);
  285. fout.SetCopyIfDifferent(true);
  286. fout << "# CMake generated Testfile for \n"
  287. "# Source directory: "
  288. << this->StateSnapshot.GetDirectory().GetCurrentSource()
  289. << "\n"
  290. "# Build directory: "
  291. << this->StateSnapshot.GetDirectory().GetCurrentBinary()
  292. << "\n"
  293. "# \n"
  294. "# This file includes the relevant testing commands "
  295. "required for \n"
  296. "# testing this directory and lists subdirectories to "
  297. "be tested as well.\n";
  298. std::string resourceSpecFile =
  299. this->Makefile->GetSafeDefinition("CTEST_RESOURCE_SPEC_FILE");
  300. if (!resourceSpecFile.empty()) {
  301. fout << "set(CTEST_RESOURCE_SPEC_FILE \"" << resourceSpecFile << "\")\n";
  302. }
  303. cmValue testIncludeFile = this->Makefile->GetProperty("TEST_INCLUDE_FILE");
  304. if (testIncludeFile) {
  305. fout << "include(\"" << *testIncludeFile << "\")\n";
  306. }
  307. cmValue testIncludeFiles = this->Makefile->GetProperty("TEST_INCLUDE_FILES");
  308. if (testIncludeFiles) {
  309. cmList includesList{ *testIncludeFiles };
  310. for (std::string const& i : includesList) {
  311. fout << "include(\"" << i << "\")\n";
  312. }
  313. }
  314. // Ask each test generator to write its code.
  315. for (const auto& tester : this->Makefile->GetTestGenerators()) {
  316. tester->Compute(this);
  317. tester->Generate(fout, config, configurationTypes);
  318. }
  319. using vec_t = std::vector<cmStateSnapshot>;
  320. vec_t const& children = this->Makefile->GetStateSnapshot().GetChildren();
  321. for (cmStateSnapshot const& i : children) {
  322. // TODO: Use add_subdirectory instead?
  323. std::string outP = i.GetDirectory().GetCurrentBinary();
  324. outP = this->MaybeRelativeToCurBinDir(outP);
  325. outP = cmOutputConverter::EscapeForCMake(outP);
  326. fout << "subdirs(" << outP << ")\n";
  327. }
  328. // Add directory labels property
  329. cmValue directoryLabels =
  330. this->Makefile->GetDefinition("CMAKE_DIRECTORY_LABELS");
  331. cmValue labels = this->Makefile->GetProperty("LABELS");
  332. if (labels || directoryLabels) {
  333. fout << "set_directory_properties(PROPERTIES LABELS ";
  334. if (labels) {
  335. fout << cmOutputConverter::EscapeForCMake(*labels);
  336. }
  337. if (labels && directoryLabels) {
  338. fout << ";";
  339. }
  340. if (directoryLabels) {
  341. fout << cmOutputConverter::EscapeForCMake(*directoryLabels);
  342. }
  343. fout << ")\n";
  344. }
  345. }
  346. void cmLocalGenerator::CreateEvaluationFileOutputs()
  347. {
  348. std::vector<std::string> const& configs =
  349. this->Makefile->GetGeneratorConfigs(cmMakefile::IncludeEmptyConfig);
  350. for (std::string const& c : configs) {
  351. this->CreateEvaluationFileOutputs(c);
  352. }
  353. }
  354. void cmLocalGenerator::CreateEvaluationFileOutputs(std::string const& config)
  355. {
  356. for (const auto& geef : this->Makefile->GetEvaluationFiles()) {
  357. geef->CreateOutputFile(this, config);
  358. }
  359. }
  360. void cmLocalGenerator::ProcessEvaluationFiles(
  361. std::vector<std::string>& generatedFiles)
  362. {
  363. for (const auto& geef : this->Makefile->GetEvaluationFiles()) {
  364. geef->Generate(this);
  365. if (cmSystemTools::GetFatalErrorOccurred()) {
  366. return;
  367. }
  368. std::vector<std::string> files = geef->GetFiles();
  369. std::sort(files.begin(), files.end());
  370. std::vector<std::string> intersection;
  371. std::set_intersection(files.begin(), files.end(), generatedFiles.begin(),
  372. generatedFiles.end(),
  373. std::back_inserter(intersection));
  374. if (!intersection.empty()) {
  375. cmSystemTools::Error("Files to be generated by multiple different "
  376. "commands: " +
  377. cmWrap('"', intersection, '"', " "));
  378. return;
  379. }
  380. cm::append(generatedFiles, files);
  381. std::inplace_merge(generatedFiles.begin(),
  382. generatedFiles.end() - files.size(),
  383. generatedFiles.end());
  384. }
  385. }
  386. void cmLocalGenerator::GenerateInstallRules()
  387. {
  388. // Compute the install prefix.
  389. cmValue installPrefix =
  390. this->Makefile->GetDefinition("CMAKE_INSTALL_PREFIX");
  391. std::string prefix = *installPrefix;
  392. #if defined(_WIN32) && !defined(__CYGWIN__)
  393. if (!installPrefix) {
  394. if (!cmSystemTools::GetEnv("SystemDrive", prefix)) {
  395. prefix = "C:";
  396. }
  397. cmValue project_name = this->Makefile->GetDefinition("PROJECT_NAME");
  398. if (cmNonempty(project_name)) {
  399. prefix += "/Program Files/";
  400. prefix += *project_name;
  401. } else {
  402. prefix += "/InstalledCMakeProject";
  403. }
  404. }
  405. #elif defined(__HAIKU__)
  406. char dir[B_PATH_NAME_LENGTH];
  407. if (!installPrefix) {
  408. if (find_directory(B_SYSTEM_DIRECTORY, -1, false, dir, sizeof(dir)) ==
  409. B_OK) {
  410. prefix = dir;
  411. } else {
  412. prefix = "/boot/system";
  413. }
  414. }
  415. #else
  416. if (!installPrefix) {
  417. prefix = "/usr/local";
  418. }
  419. #endif
  420. if (cmValue stagingPrefix =
  421. this->Makefile->GetDefinition("CMAKE_STAGING_PREFIX")) {
  422. prefix = *stagingPrefix;
  423. }
  424. // Compute the set of configurations.
  425. std::vector<std::string> configurationTypes =
  426. this->Makefile->GetGeneratorConfigs(cmMakefile::OnlyMultiConfig);
  427. std::string config = this->Makefile->GetDefaultConfiguration();
  428. // Choose a default install configuration.
  429. std::string default_config = config;
  430. const char* default_order[] = { "RELEASE", "MINSIZEREL", "RELWITHDEBINFO",
  431. "DEBUG", nullptr };
  432. for (const char** c = default_order; *c && default_config.empty(); ++c) {
  433. for (std::string const& configurationType : configurationTypes) {
  434. if (cmSystemTools::UpperCase(configurationType) == *c) {
  435. default_config = configurationType;
  436. }
  437. }
  438. }
  439. if (default_config.empty() && !configurationTypes.empty()) {
  440. default_config = configurationTypes[0];
  441. }
  442. // Create the install script file.
  443. std::string file = this->StateSnapshot.GetDirectory().GetCurrentBinary();
  444. std::string homedir = this->GetState()->GetBinaryDirectory();
  445. int toplevel_install = 0;
  446. if (file == homedir) {
  447. toplevel_install = 1;
  448. }
  449. file += "/cmake_install.cmake";
  450. cmGeneratedFileStream fout(file);
  451. fout.SetCopyIfDifferent(true);
  452. // Write the header.
  453. /* clang-format off */
  454. fout << "# Install script for directory: "
  455. << this->StateSnapshot.GetDirectory().GetCurrentSource()
  456. << "\n\n"
  457. "# Set the install prefix\n"
  458. "if(NOT DEFINED CMAKE_INSTALL_PREFIX)\n"
  459. " set(CMAKE_INSTALL_PREFIX \"" << prefix << "\")\n"
  460. "endif()\n"
  461. << R"(string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX )"
  462. << "\"${CMAKE_INSTALL_PREFIX}\")\n\n";
  463. /* clang-format on */
  464. // Write support code for generating per-configuration install rules.
  465. /* clang-format off */
  466. fout <<
  467. "# Set the install configuration name.\n"
  468. "if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n"
  469. " if(BUILD_TYPE)\n"
  470. " string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n"
  471. " CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n"
  472. " else()\n"
  473. " set(CMAKE_INSTALL_CONFIG_NAME \"" << default_config << "\")\n"
  474. " endif()\n"
  475. " message(STATUS \"Install configuration: "
  476. "\\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\n"
  477. "endif()\n"
  478. "\n";
  479. /* clang-format on */
  480. // Write support code for dealing with component-specific installs.
  481. /* clang-format off */
  482. fout <<
  483. "# Set the component getting installed.\n"
  484. "if(NOT CMAKE_INSTALL_COMPONENT)\n"
  485. " if(COMPONENT)\n"
  486. " message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n"
  487. " set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n"
  488. " else()\n"
  489. " set(CMAKE_INSTALL_COMPONENT)\n"
  490. " endif()\n"
  491. "endif()\n"
  492. "\n";
  493. /* clang-format on */
  494. // Copy user-specified install options to the install code.
  495. if (cmValue so_no_exe =
  496. this->Makefile->GetDefinition("CMAKE_INSTALL_SO_NO_EXE")) {
  497. /* clang-format off */
  498. fout <<
  499. "# Install shared libraries without execute permission?\n"
  500. "if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)\n"
  501. " set(CMAKE_INSTALL_SO_NO_EXE \"" << *so_no_exe << "\")\n"
  502. "endif()\n"
  503. "\n";
  504. /* clang-format on */
  505. }
  506. // Copy cmake cross compile state to install code.
  507. if (cmValue crosscompiling =
  508. this->Makefile->GetDefinition("CMAKE_CROSSCOMPILING")) {
  509. /* clang-format off */
  510. fout <<
  511. "# Is this installation the result of a crosscompile?\n"
  512. "if(NOT DEFINED CMAKE_CROSSCOMPILING)\n"
  513. " set(CMAKE_CROSSCOMPILING \"" << *crosscompiling << "\")\n"
  514. "endif()\n"
  515. "\n";
  516. /* clang-format on */
  517. }
  518. // Write default directory permissions.
  519. if (cmValue defaultDirPermissions = this->Makefile->GetDefinition(
  520. "CMAKE_INSTALL_DEFAULT_DIRECTORY_PERMISSIONS")) {
  521. /* clang-format off */
  522. fout <<
  523. "# Set default install directory permissions.\n"
  524. "if(NOT DEFINED CMAKE_INSTALL_DEFAULT_DIRECTORY_PERMISSIONS)\n"
  525. " set(CMAKE_INSTALL_DEFAULT_DIRECTORY_PERMISSIONS \""
  526. << *defaultDirPermissions << "\")\n"
  527. "endif()\n"
  528. "\n";
  529. /* clang-format on */
  530. }
  531. // Write out CMAKE_GET_RUNTIME_DEPENDENCIES_PLATFORM so that
  532. // installed code that uses `file(GET_RUNTIME_DEPENDENCIES)`
  533. // has same platform variable as when running cmake
  534. if (cmValue platform = this->Makefile->GetDefinition(
  535. "CMAKE_GET_RUNTIME_DEPENDENCIES_PLATFORM")) {
  536. /* clang-format off */
  537. fout <<
  538. "# Set default install directory permissions.\n"
  539. "if(NOT DEFINED CMAKE_GET_RUNTIME_DEPENDENCIES_PLATFORM)\n"
  540. " set(CMAKE_GET_RUNTIME_DEPENDENCIES_PLATFORM \""
  541. << *platform << "\")\n"
  542. "endif()\n"
  543. "\n";
  544. /* clang-format on */
  545. }
  546. // Write out CMAKE_GET_RUNTIME_DEPENDENCIES_TOOL so that
  547. // installed code that uses `file(GET_RUNTIME_DEPENDENCIES)`
  548. // has same tool selected as when running cmake
  549. if (cmValue command =
  550. this->Makefile->GetDefinition("CMAKE_GET_RUNTIME_DEPENDENCIES_TOOL")) {
  551. /* clang-format off */
  552. fout <<
  553. "# Set default install directory permissions.\n"
  554. "if(NOT DEFINED CMAKE_GET_RUNTIME_DEPENDENCIES_TOOL)\n"
  555. " set(CMAKE_GET_RUNTIME_DEPENDENCIES_TOOL \""
  556. << *command << "\")\n"
  557. "endif()\n"
  558. "\n";
  559. /* clang-format on */
  560. }
  561. // Write out CMAKE_GET_RUNTIME_DEPENDENCIES_COMMAND so that
  562. // installed code that uses `file(GET_RUNTIME_DEPENDENCIES)`
  563. // has same path to the tool as when running cmake
  564. if (cmValue command = this->Makefile->GetDefinition(
  565. "CMAKE_GET_RUNTIME_DEPENDENCIES_COMMAND")) {
  566. /* clang-format off */
  567. fout <<
  568. "# Set default install directory permissions.\n"
  569. "if(NOT DEFINED CMAKE_GET_RUNTIME_DEPENDENCIES_COMMAND)\n"
  570. " set(CMAKE_GET_RUNTIME_DEPENDENCIES_COMMAND \""
  571. << *command << "\")\n"
  572. "endif()\n"
  573. "\n";
  574. /* clang-format on */
  575. }
  576. // Write out CMAKE_OBJDUMP so that installed code that uses
  577. // `file(GET_RUNTIME_DEPENDENCIES)` and hasn't specified
  578. // CMAKE_GET_RUNTIME_DEPENDENCIES_COMMAND has consistent
  579. // logic to fallback to CMAKE_OBJDUMP when `objdump` is
  580. // not on the path
  581. if (cmValue command = this->Makefile->GetDefinition("CMAKE_OBJDUMP")) {
  582. /* clang-format off */
  583. fout <<
  584. "# Set default install directory permissions.\n"
  585. "if(NOT DEFINED CMAKE_OBJDUMP)\n"
  586. " set(CMAKE_OBJDUMP \""
  587. << *command << "\")\n"
  588. "endif()\n"
  589. "\n";
  590. /* clang-format on */
  591. }
  592. this->AddGeneratorSpecificInstallSetup(fout);
  593. // Ask each install generator to write its code.
  594. cmPolicies::PolicyStatus status = this->GetPolicyStatus(cmPolicies::CMP0082);
  595. auto const& installers = this->Makefile->GetInstallGenerators();
  596. bool haveSubdirectoryInstall = false;
  597. bool haveInstallAfterSubdirectory = false;
  598. if (status == cmPolicies::WARN) {
  599. for (const auto& installer : installers) {
  600. installer->CheckCMP0082(haveSubdirectoryInstall,
  601. haveInstallAfterSubdirectory);
  602. installer->Generate(fout, config, configurationTypes);
  603. }
  604. } else {
  605. for (const auto& installer : installers) {
  606. installer->Generate(fout, config, configurationTypes);
  607. }
  608. }
  609. // Write rules from old-style specification stored in targets.
  610. this->GenerateTargetInstallRules(fout, config, configurationTypes);
  611. // Include install scripts from subdirectories.
  612. switch (status) {
  613. case cmPolicies::WARN:
  614. if (haveInstallAfterSubdirectory &&
  615. this->Makefile->PolicyOptionalWarningEnabled(
  616. "CMAKE_POLICY_WARNING_CMP0082")) {
  617. std::ostringstream e;
  618. e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0082) << "\n";
  619. this->IssueMessage(MessageType::AUTHOR_WARNING, e.str());
  620. }
  621. CM_FALLTHROUGH;
  622. case cmPolicies::OLD: {
  623. std::vector<cmStateSnapshot> children =
  624. this->Makefile->GetStateSnapshot().GetChildren();
  625. if (!children.empty()) {
  626. fout << "if(NOT CMAKE_INSTALL_LOCAL_ONLY)\n";
  627. fout << " # Include the install script for each subdirectory.\n";
  628. for (cmStateSnapshot const& c : children) {
  629. if (!c.GetDirectory().GetPropertyAsBool("EXCLUDE_FROM_ALL")) {
  630. std::string odir = c.GetDirectory().GetCurrentBinary();
  631. cmSystemTools::ConvertToUnixSlashes(odir);
  632. fout << " include(\"" << odir << "/cmake_install.cmake\")\n";
  633. }
  634. }
  635. fout << "\n";
  636. fout << "endif()\n\n";
  637. }
  638. } break;
  639. case cmPolicies::REQUIRED_IF_USED:
  640. case cmPolicies::REQUIRED_ALWAYS:
  641. case cmPolicies::NEW:
  642. // NEW behavior is handled in
  643. // cmInstallSubdirectoryGenerator::GenerateScript()
  644. break;
  645. }
  646. // Record the install manifest.
  647. if (toplevel_install) {
  648. /* clang-format off */
  649. fout <<
  650. "if(CMAKE_INSTALL_COMPONENT)\n"
  651. " set(CMAKE_INSTALL_MANIFEST \"install_manifest_"
  652. "${CMAKE_INSTALL_COMPONENT}.txt\")\n"
  653. "else()\n"
  654. " set(CMAKE_INSTALL_MANIFEST \"install_manifest.txt\")\n"
  655. "endif()\n"
  656. "\n"
  657. "string(REPLACE \";\" \"\\n\" CMAKE_INSTALL_MANIFEST_CONTENT\n"
  658. " \"${CMAKE_INSTALL_MANIFEST_FILES}\")\n"
  659. "file(WRITE \"" << homedir << "/${CMAKE_INSTALL_MANIFEST}\"\n"
  660. " \"${CMAKE_INSTALL_MANIFEST_CONTENT}\")\n";
  661. /* clang-format on */
  662. }
  663. }
  664. void cmLocalGenerator::AddGeneratorTarget(
  665. std::unique_ptr<cmGeneratorTarget> gt)
  666. {
  667. cmGeneratorTarget* gt_ptr = gt.get();
  668. this->GeneratorTargets.push_back(std::move(gt));
  669. this->GeneratorTargetSearchIndex.emplace(gt_ptr->GetName(), gt_ptr);
  670. this->GlobalGenerator->IndexGeneratorTarget(gt_ptr);
  671. }
  672. void cmLocalGenerator::AddImportedGeneratorTarget(cmGeneratorTarget* gt)
  673. {
  674. this->ImportedGeneratorTargets.emplace(gt->GetName(), gt);
  675. this->GlobalGenerator->IndexGeneratorTarget(gt);
  676. }
  677. void cmLocalGenerator::AddOwnedImportedGeneratorTarget(
  678. std::unique_ptr<cmGeneratorTarget> gt)
  679. {
  680. this->OwnedImportedGeneratorTargets.push_back(std::move(gt));
  681. }
  682. cmGeneratorTarget* cmLocalGenerator::FindLocalNonAliasGeneratorTarget(
  683. const std::string& name) const
  684. {
  685. auto ti = this->GeneratorTargetSearchIndex.find(name);
  686. if (ti != this->GeneratorTargetSearchIndex.end()) {
  687. return ti->second;
  688. }
  689. return nullptr;
  690. }
  691. void cmLocalGenerator::ComputeTargetManifest()
  692. {
  693. // Collect the set of configuration types.
  694. std::vector<std::string> configNames =
  695. this->Makefile->GetGeneratorConfigs(cmMakefile::IncludeEmptyConfig);
  696. // Add our targets to the manifest for each configuration.
  697. const auto& targets = this->GetGeneratorTargets();
  698. for (const auto& target : targets) {
  699. if (!target->IsInBuildSystem()) {
  700. continue;
  701. }
  702. for (std::string const& c : configNames) {
  703. target->ComputeTargetManifest(c);
  704. }
  705. }
  706. }
  707. bool cmLocalGenerator::ComputeTargetCompileFeatures()
  708. {
  709. // Collect the set of configuration types.
  710. std::vector<std::string> configNames =
  711. this->Makefile->GetGeneratorConfigs(cmMakefile::IncludeEmptyConfig);
  712. using LanguagePair = std::pair<std::string, std::string>;
  713. std::vector<LanguagePair> pairedLanguages{
  714. { "OBJC", "C" }, { "OBJCXX", "CXX" }, { "CUDA", "CXX" }, { "HIP", "CXX" }
  715. };
  716. std::set<LanguagePair> inferredEnabledLanguages;
  717. for (auto const& lang : pairedLanguages) {
  718. if (this->Makefile->GetState()->GetLanguageEnabled(lang.first)) {
  719. inferredEnabledLanguages.insert(lang);
  720. }
  721. }
  722. // Process compile features of all targets.
  723. const auto& targets = this->GetGeneratorTargets();
  724. for (const auto& target : targets) {
  725. for (std::string const& c : configNames) {
  726. if (!target->ComputeCompileFeatures(c)) {
  727. return false;
  728. }
  729. }
  730. // Now that C/C++ _STANDARD values have been computed
  731. // set the values to ObjC/ObjCXX _STANDARD variables
  732. if (target->CanCompileSources()) {
  733. for (std::string const& c : configNames) {
  734. target->ComputeCompileFeatures(c, inferredEnabledLanguages);
  735. }
  736. }
  737. }
  738. return true;
  739. }
  740. bool cmLocalGenerator::IsRootMakefile() const
  741. {
  742. return !this->StateSnapshot.GetBuildsystemDirectoryParent().IsValid();
  743. }
  744. cmState* cmLocalGenerator::GetState() const
  745. {
  746. return this->GlobalGenerator->GetCMakeInstance()->GetState();
  747. }
  748. cmStateSnapshot cmLocalGenerator::GetStateSnapshot() const
  749. {
  750. return this->Makefile->GetStateSnapshot();
  751. }
  752. std::string cmLocalGenerator::GetRuleLauncher(cmGeneratorTarget* target,
  753. const std::string& prop,
  754. const std::string& config)
  755. {
  756. cmValue value = this->Makefile->GetProperty(prop);
  757. if (target) {
  758. value = target->GetProperty(prop);
  759. }
  760. if (value) {
  761. return cmGeneratorExpression::Evaluate(*value, this, config, target);
  762. }
  763. return "";
  764. }
  765. std::string cmLocalGenerator::ConvertToIncludeReference(
  766. std::string const& path, OutputFormat format)
  767. {
  768. return this->ConvertToOutputForExisting(path, format);
  769. }
  770. std::string cmLocalGenerator::GetIncludeFlags(
  771. std::vector<std::string> const& includeDirs, cmGeneratorTarget* target,
  772. std::string const& lang, std::string const& config, bool forResponseFile)
  773. {
  774. if (lang.empty()) {
  775. return "";
  776. }
  777. std::vector<std::string> includes = includeDirs;
  778. MoveSystemIncludesToEnd(includes, config, lang, target);
  779. OutputFormat shellFormat = forResponseFile ? RESPONSE : SHELL;
  780. std::ostringstream includeFlags;
  781. std::string const& includeFlag =
  782. this->Makefile->GetSafeDefinition(cmStrCat("CMAKE_INCLUDE_FLAG_", lang));
  783. bool quotePaths = false;
  784. if (this->Makefile->GetDefinition("CMAKE_QUOTE_INCLUDE_PATHS")) {
  785. quotePaths = true;
  786. }
  787. std::string sep = " ";
  788. bool repeatFlag = true;
  789. // should the include flag be repeated like ie. -IA -IB
  790. if (cmValue incSep = this->Makefile->GetDefinition(
  791. cmStrCat("CMAKE_INCLUDE_FLAG_SEP_", lang))) {
  792. // if there is a separator then the flag is not repeated but is only
  793. // given once i.e. -classpath a:b:c
  794. sep = *incSep;
  795. repeatFlag = false;
  796. }
  797. // Support special system include flag if it is available and the
  798. // normal flag is repeated for each directory.
  799. cmValue sysIncludeFlag = nullptr;
  800. cmValue sysIncludeFlagWarning = nullptr;
  801. if (repeatFlag) {
  802. sysIncludeFlag = this->Makefile->GetDefinition(
  803. cmStrCat("CMAKE_INCLUDE_SYSTEM_FLAG_", lang));
  804. sysIncludeFlagWarning = this->Makefile->GetDefinition(
  805. cmStrCat("_CMAKE_INCLUDE_SYSTEM_FLAG_", lang, "_WARNING"));
  806. }
  807. cmValue fwSearchFlag = this->Makefile->GetDefinition(
  808. cmStrCat("CMAKE_", lang, "_FRAMEWORK_SEARCH_FLAG"));
  809. cmValue sysFwSearchFlag = this->Makefile->GetDefinition(
  810. cmStrCat("CMAKE_", lang, "_SYSTEM_FRAMEWORK_SEARCH_FLAG"));
  811. bool flagUsed = false;
  812. bool sysIncludeFlagUsed = false;
  813. std::set<std::string> emitted;
  814. #ifdef __APPLE__
  815. emitted.insert("/System/Library/Frameworks");
  816. #endif
  817. for (std::string const& i : includes) {
  818. if (cmNonempty(fwSearchFlag) && this->Makefile->IsOn("APPLE") &&
  819. cmSystemTools::IsPathToFramework(i)) {
  820. std::string const frameworkDir =
  821. cmSystemTools::CollapseFullPath(cmStrCat(i, "/../"));
  822. if (emitted.insert(frameworkDir).second) {
  823. if (sysFwSearchFlag && target &&
  824. target->IsSystemIncludeDirectory(frameworkDir, config, lang)) {
  825. includeFlags << *sysFwSearchFlag;
  826. } else {
  827. includeFlags << *fwSearchFlag;
  828. }
  829. includeFlags << this->ConvertToOutputFormat(frameworkDir, shellFormat)
  830. << " ";
  831. }
  832. continue;
  833. }
  834. if (!flagUsed || repeatFlag) {
  835. if (sysIncludeFlag && target &&
  836. target->IsSystemIncludeDirectory(i, config, lang)) {
  837. includeFlags << *sysIncludeFlag;
  838. sysIncludeFlagUsed = true;
  839. } else {
  840. includeFlags << includeFlag;
  841. }
  842. flagUsed = true;
  843. }
  844. std::string includePath = this->ConvertToIncludeReference(i, shellFormat);
  845. if (quotePaths && !includePath.empty() && includePath.front() != '\"') {
  846. includeFlags << "\"";
  847. }
  848. includeFlags << includePath;
  849. if (quotePaths && !includePath.empty() && includePath.front() != '\"') {
  850. includeFlags << "\"";
  851. }
  852. includeFlags << sep;
  853. }
  854. if (sysIncludeFlagUsed && sysIncludeFlagWarning) {
  855. includeFlags << *sysIncludeFlagWarning;
  856. }
  857. std::string flags = includeFlags.str();
  858. // remove trailing separators
  859. if ((sep[0] != ' ') && !flags.empty() && flags.back() == sep[0]) {
  860. flags.back() = ' ';
  861. }
  862. return cmTrimWhitespace(flags);
  863. }
  864. void cmLocalGenerator::AddCompileOptions(std::string& flags,
  865. cmGeneratorTarget* target,
  866. const std::string& lang,
  867. const std::string& config)
  868. {
  869. std::vector<BT<std::string>> tmpFlags;
  870. this->AddCompileOptions(tmpFlags, target, lang, config);
  871. this->AppendFlags(flags, tmpFlags);
  872. }
  873. void cmLocalGenerator::AddCompileOptions(std::vector<BT<std::string>>& flags,
  874. cmGeneratorTarget* target,
  875. const std::string& lang,
  876. const std::string& config)
  877. {
  878. std::string langFlagRegexVar = cmStrCat("CMAKE_", lang, "_FLAG_REGEX");
  879. if (cmValue langFlagRegexStr =
  880. this->Makefile->GetDefinition(langFlagRegexVar)) {
  881. // Filter flags acceptable to this language.
  882. if (cmValue targetFlags = target->GetProperty("COMPILE_FLAGS")) {
  883. std::vector<std::string> opts;
  884. cmSystemTools::ParseWindowsCommandLine(targetFlags->c_str(), opts);
  885. // Re-escape these flags since COMPILE_FLAGS were already parsed
  886. // as a command line above.
  887. std::string compileOpts;
  888. this->AppendCompileOptions(compileOpts, opts, langFlagRegexStr->c_str());
  889. if (!compileOpts.empty()) {
  890. flags.emplace_back(std::move(compileOpts));
  891. }
  892. }
  893. std::vector<BT<std::string>> targetCompileOpts =
  894. target->GetCompileOptions(config, lang);
  895. // COMPILE_OPTIONS are escaped.
  896. this->AppendCompileOptions(flags, targetCompileOpts,
  897. langFlagRegexStr->c_str());
  898. } else {
  899. // Use all flags.
  900. if (cmValue targetFlags = target->GetProperty("COMPILE_FLAGS")) {
  901. // COMPILE_FLAGS are not escaped for historical reasons.
  902. std::string compileFlags;
  903. this->AppendFlags(compileFlags, *targetFlags);
  904. if (!compileFlags.empty()) {
  905. flags.emplace_back(std::move(compileFlags));
  906. }
  907. }
  908. std::vector<BT<std::string>> targetCompileOpts =
  909. target->GetCompileOptions(config, lang);
  910. // COMPILE_OPTIONS are escaped.
  911. this->AppendCompileOptions(flags, targetCompileOpts);
  912. }
  913. cmStandardLevelResolver standardResolver(this->Makefile);
  914. for (auto const& it : target->GetMaxLanguageStandards()) {
  915. cmValue standard = target->GetLanguageStandard(it.first, config);
  916. if (!standard) {
  917. continue;
  918. }
  919. if (standardResolver.IsLaterStandard(it.first, *standard, it.second)) {
  920. std::ostringstream e;
  921. e << "The COMPILE_FEATURES property of target \"" << target->GetName()
  922. << "\" was evaluated when computing the link "
  923. "implementation, and the \""
  924. << it.first << "_STANDARD\" was \"" << it.second
  925. << "\" for that computation. Computing the "
  926. "COMPILE_FEATURES based on the link implementation resulted in a "
  927. "higher \""
  928. << it.first << "_STANDARD\" \"" << *standard
  929. << "\". "
  930. "This is not permitted. The COMPILE_FEATURES may not both depend "
  931. "on "
  932. "and be depended on by the link implementation.\n";
  933. this->IssueMessage(MessageType::FATAL_ERROR, e.str());
  934. return;
  935. }
  936. }
  937. // Add Warning as errors flags
  938. if (!this->GetCMakeInstance()->GetIgnoreWarningAsError()) {
  939. const cmValue wError = target->GetProperty("COMPILE_WARNING_AS_ERROR");
  940. const cmValue wErrorOpts = this->Makefile->GetDefinition(
  941. cmStrCat("CMAKE_", lang, "_COMPILE_OPTIONS_WARNING_AS_ERROR"));
  942. if (wError.IsOn() && wErrorOpts.IsSet()) {
  943. std::string wErrorFlags;
  944. this->AppendCompileOptions(wErrorFlags, *wErrorOpts);
  945. if (!wErrorFlags.empty()) {
  946. flags.emplace_back(std::move(wErrorFlags));
  947. }
  948. }
  949. }
  950. // Add compile flag for the MSVC compiler only.
  951. cmMakefile* mf = this->GetMakefile();
  952. if (cmValue jmc =
  953. mf->GetDefinition("CMAKE_" + lang + "_COMPILE_OPTIONS_JMC")) {
  954. // Handle Just My Code debugging flags, /JMC.
  955. // If the target is a Managed C++ one, /JMC is not compatible.
  956. if (target->GetManagedType(config) !=
  957. cmGeneratorTarget::ManagedType::Managed) {
  958. // add /JMC flags if target property VS_JUST_MY_CODE_DEBUGGING is set
  959. // to ON
  960. if (cmValue jmcExprGen =
  961. target->GetProperty("VS_JUST_MY_CODE_DEBUGGING")) {
  962. std::string isJMCEnabled =
  963. cmGeneratorExpression::Evaluate(*jmcExprGen, this, config);
  964. if (cmIsOn(isJMCEnabled)) {
  965. cmList optList{ *jmc };
  966. std::string jmcFlags;
  967. this->AppendCompileOptions(jmcFlags, optList);
  968. if (!jmcFlags.empty()) {
  969. flags.emplace_back(std::move(jmcFlags));
  970. }
  971. }
  972. }
  973. }
  974. }
  975. }
  976. cmTarget* cmLocalGenerator::AddCustomCommandToTarget(
  977. const std::string& target, cmCustomCommandType type,
  978. std::unique_ptr<cmCustomCommand> cc, cmObjectLibraryCommands objLibCommands)
  979. {
  980. cmTarget* t = this->Makefile->GetCustomCommandTarget(
  981. target, objLibCommands, this->DirectoryBacktrace);
  982. if (!t) {
  983. return nullptr;
  984. }
  985. cc->SetBacktrace(this->DirectoryBacktrace);
  986. detail::AddCustomCommandToTarget(*this, cmCommandOrigin::Generator, t, type,
  987. std::move(cc));
  988. return t;
  989. }
  990. cmSourceFile* cmLocalGenerator::AddCustomCommandToOutput(
  991. std::unique_ptr<cmCustomCommand> cc, bool replace)
  992. {
  993. // Make sure there is at least one output.
  994. if (cc->GetOutputs().empty()) {
  995. cmSystemTools::Error("Attempt to add a custom rule with no output!");
  996. return nullptr;
  997. }
  998. cc->SetBacktrace(this->DirectoryBacktrace);
  999. return detail::AddCustomCommandToOutput(*this, cmCommandOrigin::Generator,
  1000. std::move(cc), replace);
  1001. }
  1002. cmTarget* cmLocalGenerator::AddUtilityCommand(
  1003. const std::string& utilityName, bool excludeFromAll,
  1004. std::unique_ptr<cmCustomCommand> cc)
  1005. {
  1006. cmTarget* target =
  1007. this->Makefile->AddNewUtilityTarget(utilityName, excludeFromAll);
  1008. target->SetIsGeneratorProvided(true);
  1009. if (cc->GetCommandLines().empty() && cc->GetDepends().empty()) {
  1010. return target;
  1011. }
  1012. cc->SetBacktrace(this->DirectoryBacktrace);
  1013. detail::AddUtilityCommand(*this, cmCommandOrigin::Generator, target,
  1014. std::move(cc));
  1015. return target;
  1016. }
  1017. std::vector<BT<std::string>> cmLocalGenerator::GetIncludeDirectoriesImplicit(
  1018. cmGeneratorTarget const* target, std::string const& lang,
  1019. std::string const& config, bool stripImplicitDirs,
  1020. bool appendAllImplicitDirs) const
  1021. {
  1022. std::vector<BT<std::string>> result;
  1023. // Do not repeat an include path.
  1024. std::set<std::string> emitted;
  1025. auto emitDir = [&result, &emitted](std::string const& dir) {
  1026. if (emitted.insert(dir).second) {
  1027. result.emplace_back(dir);
  1028. }
  1029. };
  1030. auto emitBT = [&result, &emitted](BT<std::string> const& dir) {
  1031. if (emitted.insert(dir.Value).second) {
  1032. result.emplace_back(dir);
  1033. }
  1034. };
  1035. // When automatic include directories are requested for a build then
  1036. // include the source and binary directories at the beginning of the
  1037. // include path to approximate include file behavior for an
  1038. // in-source build. This does not account for the case of a source
  1039. // file in a subdirectory of the current source directory but we
  1040. // cannot fix this because not all native build tools support
  1041. // per-source-file include paths.
  1042. if (this->Makefile->IsOn("CMAKE_INCLUDE_CURRENT_DIR")) {
  1043. // Current binary directory
  1044. emitDir(this->StateSnapshot.GetDirectory().GetCurrentBinary());
  1045. // Current source directory
  1046. emitDir(this->StateSnapshot.GetDirectory().GetCurrentSource());
  1047. }
  1048. if (!target) {
  1049. return result;
  1050. }
  1051. // Standard include directories to be added unconditionally at the end.
  1052. // These are intended to simulate additional implicit include directories.
  1053. cmList userStandardDirs;
  1054. {
  1055. std::string const value = this->Makefile->GetSafeDefinition(
  1056. cmStrCat("CMAKE_", lang, "_STANDARD_INCLUDE_DIRECTORIES"));
  1057. userStandardDirs.assign(value);
  1058. for (std::string& usd : userStandardDirs) {
  1059. cmSystemTools::ConvertToUnixSlashes(usd);
  1060. }
  1061. }
  1062. // Implicit include directories
  1063. std::vector<std::string> implicitDirs;
  1064. std::set<std::string> implicitSet;
  1065. // Include directories to be excluded as if they were implicit.
  1066. std::set<std::string> implicitExclude;
  1067. {
  1068. // Raw list of implicit include directories
  1069. // Start with "standard" directories that we unconditionally add below.
  1070. std::vector<std::string> impDirVec = userStandardDirs;
  1071. // Load implicit include directories for this language.
  1072. // We ignore this for Fortran because:
  1073. // * There are no standard library headers to avoid overriding.
  1074. // * Compilers like gfortran do not search their own implicit include
  1075. // directories for modules ('.mod' files).
  1076. if (lang != "Fortran") {
  1077. size_t const impDirVecOldSize = impDirVec.size();
  1078. cmList::append(impDirVec,
  1079. this->Makefile->GetDefinition(cmStrCat(
  1080. "CMAKE_", lang, "_IMPLICIT_INCLUDE_DIRECTORIES")));
  1081. // FIXME: Use cmRange with 'advance()' when it supports non-const.
  1082. for (size_t i = impDirVecOldSize; i < impDirVec.size(); ++i) {
  1083. cmSystemTools::ConvertToUnixSlashes(impDirVec[i]);
  1084. }
  1085. // The CMAKE_<LANG>_IMPLICIT_INCLUDE_DIRECTORIES are computed using
  1086. // try_compile in CMAKE_DETERMINE_COMPILER_ABI, but the implicit include
  1087. // directories are not known during that try_compile. This can be a
  1088. // problem when the HIP runtime include path is /usr/include because the
  1089. // runtime include path is always added to the userDirs and the compiler
  1090. // includes standard library headers via "__clang_hip_runtime_wrapper.h".
  1091. if (lang == "HIP" && impDirVec.size() == impDirVecOldSize &&
  1092. !cm::contains(impDirVec, "/usr/include")) {
  1093. implicitExclude.emplace("/usr/include");
  1094. }
  1095. }
  1096. // The Platform/UnixPaths module used to hard-code /usr/include for C, CXX,
  1097. // and CUDA in CMAKE_<LANG>_IMPLICIT_INCLUDE_DIRECTORIES, but those
  1098. // variables are now computed. On macOS the /usr/include directory is
  1099. // inside the platform SDK so the computed value does not contain it
  1100. // directly. In this case adding -I/usr/include can hide SDK headers so we
  1101. // must still exclude it.
  1102. if ((lang == "C" || lang == "CXX" || lang == "CUDA") &&
  1103. !cm::contains(impDirVec, "/usr/include") &&
  1104. std::find_if(impDirVec.begin(), impDirVec.end(),
  1105. [](std::string const& d) {
  1106. return cmHasLiteralSuffix(d, "/usr/include");
  1107. }) != impDirVec.end()) {
  1108. // Only exclude this hard coded path for backwards compatibility.
  1109. implicitExclude.emplace("/usr/include");
  1110. }
  1111. for (std::string const& i : impDirVec) {
  1112. if (implicitSet.insert(this->GlobalGenerator->GetRealPath(i)).second) {
  1113. implicitDirs.emplace_back(i);
  1114. }
  1115. }
  1116. }
  1117. bool const isCorCxx = (lang == "C" || lang == "CXX");
  1118. // Resolve symlinks in CPATH for comparison with resolved include paths.
  1119. // We do this here instead of when EnvCPATH is populated in case symlinks
  1120. // on disk have changed in the meantime.
  1121. std::set<std::string> resolvedEnvCPATH;
  1122. if (isCorCxx) {
  1123. for (std::string const& i : this->EnvCPATH) {
  1124. resolvedEnvCPATH.emplace(this->GlobalGenerator->GetRealPath(i));
  1125. }
  1126. }
  1127. // Checks if this is not an excluded (implicit) include directory.
  1128. auto notExcluded = [this, &implicitSet, &implicitExclude, &resolvedEnvCPATH,
  1129. isCorCxx](std::string const& dir) -> bool {
  1130. std::string const& real_dir = this->GlobalGenerator->GetRealPath(dir);
  1131. return
  1132. // Do not exclude directories that are not in any excluded set.
  1133. !(cm::contains(implicitSet, real_dir) ||
  1134. cm::contains(implicitExclude, dir))
  1135. // Do not exclude entries of the CPATH environment variable even though
  1136. // they are implicitly searched by the compiler. They are meant to be
  1137. // user-specified directories that can be re-ordered or converted to
  1138. // -isystem without breaking real compiler builtin headers.
  1139. || (isCorCxx && cm::contains(resolvedEnvCPATH, real_dir));
  1140. };
  1141. // Get the target-specific include directories.
  1142. std::vector<BT<std::string>> userDirs =
  1143. target->GetIncludeDirectories(config, lang);
  1144. // Support putting all the in-project include directories first if
  1145. // it is requested by the project.
  1146. if (this->Makefile->IsOn("CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE")) {
  1147. std::string const& topSourceDir = this->GetState()->GetSourceDirectory();
  1148. std::string const& topBinaryDir = this->GetState()->GetBinaryDirectory();
  1149. for (BT<std::string> const& udr : userDirs) {
  1150. // Emit this directory only if it is a subdirectory of the
  1151. // top-level source or binary tree.
  1152. if (cmSystemTools::ComparePath(udr.Value, topSourceDir) ||
  1153. cmSystemTools::ComparePath(udr.Value, topBinaryDir) ||
  1154. cmSystemTools::IsSubDirectory(udr.Value, topSourceDir) ||
  1155. cmSystemTools::IsSubDirectory(udr.Value, topBinaryDir)) {
  1156. if (notExcluded(udr.Value)) {
  1157. emitBT(udr);
  1158. }
  1159. }
  1160. }
  1161. }
  1162. // Emit remaining non implicit user directories.
  1163. for (BT<std::string> const& udr : userDirs) {
  1164. if (notExcluded(udr.Value)) {
  1165. emitBT(udr);
  1166. }
  1167. }
  1168. // Sort result
  1169. MoveSystemIncludesToEnd(result, config, lang, target);
  1170. // Append standard include directories for this language.
  1171. userDirs.reserve(userDirs.size() + userStandardDirs.size());
  1172. for (std::string& usd : userStandardDirs) {
  1173. emitDir(usd);
  1174. userDirs.emplace_back(std::move(usd));
  1175. }
  1176. // Append compiler implicit include directories
  1177. if (!stripImplicitDirs) {
  1178. // Append implicit directories that were requested by the user only
  1179. for (BT<std::string> const& udr : userDirs) {
  1180. if (cm::contains(implicitSet, cmSystemTools::GetRealPath(udr.Value))) {
  1181. emitBT(udr);
  1182. }
  1183. }
  1184. // Append remaining implicit directories (on demand)
  1185. if (appendAllImplicitDirs) {
  1186. for (std::string& imd : implicitDirs) {
  1187. emitDir(imd);
  1188. }
  1189. }
  1190. }
  1191. return result;
  1192. }
  1193. void cmLocalGenerator::GetIncludeDirectoriesImplicit(
  1194. std::vector<std::string>& dirs, cmGeneratorTarget const* target,
  1195. const std::string& lang, const std::string& config, bool stripImplicitDirs,
  1196. bool appendAllImplicitDirs) const
  1197. {
  1198. std::vector<BT<std::string>> tmp = this->GetIncludeDirectoriesImplicit(
  1199. target, lang, config, stripImplicitDirs, appendAllImplicitDirs);
  1200. dirs.reserve(dirs.size() + tmp.size());
  1201. for (BT<std::string>& v : tmp) {
  1202. dirs.emplace_back(std::move(v.Value));
  1203. }
  1204. }
  1205. std::vector<BT<std::string>> cmLocalGenerator::GetIncludeDirectories(
  1206. cmGeneratorTarget const* target, std::string const& lang,
  1207. std::string const& config) const
  1208. {
  1209. return this->GetIncludeDirectoriesImplicit(target, lang, config);
  1210. }
  1211. void cmLocalGenerator::GetIncludeDirectories(std::vector<std::string>& dirs,
  1212. cmGeneratorTarget const* target,
  1213. const std::string& lang,
  1214. const std::string& config) const
  1215. {
  1216. this->GetIncludeDirectoriesImplicit(dirs, target, lang, config);
  1217. }
  1218. void cmLocalGenerator::GetStaticLibraryFlags(std::string& flags,
  1219. std::string const& config,
  1220. std::string const& linkLanguage,
  1221. cmGeneratorTarget* target)
  1222. {
  1223. std::vector<BT<std::string>> tmpFlags =
  1224. this->GetStaticLibraryFlags(config, linkLanguage, target);
  1225. this->AppendFlags(flags, tmpFlags);
  1226. }
  1227. std::vector<BT<std::string>> cmLocalGenerator::GetStaticLibraryFlags(
  1228. std::string const& config, std::string const& linkLanguage,
  1229. cmGeneratorTarget* target)
  1230. {
  1231. const std::string configUpper = cmSystemTools::UpperCase(config);
  1232. std::vector<BT<std::string>> flags;
  1233. if (linkLanguage != "Swift") {
  1234. std::string staticLibFlags;
  1235. this->AppendFlags(
  1236. staticLibFlags,
  1237. this->Makefile->GetSafeDefinition("CMAKE_STATIC_LINKER_FLAGS"));
  1238. if (!configUpper.empty()) {
  1239. std::string name = "CMAKE_STATIC_LINKER_FLAGS_" + configUpper;
  1240. this->AppendFlags(staticLibFlags,
  1241. this->Makefile->GetSafeDefinition(name));
  1242. }
  1243. if (!staticLibFlags.empty()) {
  1244. flags.emplace_back(std::move(staticLibFlags));
  1245. }
  1246. }
  1247. std::string staticLibFlags;
  1248. this->AppendFlags(staticLibFlags,
  1249. target->GetSafeProperty("STATIC_LIBRARY_FLAGS"));
  1250. if (!configUpper.empty()) {
  1251. std::string name = "STATIC_LIBRARY_FLAGS_" + configUpper;
  1252. this->AppendFlags(staticLibFlags, target->GetSafeProperty(name));
  1253. }
  1254. if (!staticLibFlags.empty()) {
  1255. flags.emplace_back(std::move(staticLibFlags));
  1256. }
  1257. std::vector<BT<std::string>> staticLibOpts =
  1258. target->GetStaticLibraryLinkOptions(config, linkLanguage);
  1259. // STATIC_LIBRARY_OPTIONS are escaped.
  1260. this->AppendCompileOptions(flags, staticLibOpts);
  1261. return flags;
  1262. }
  1263. void cmLocalGenerator::GetDeviceLinkFlags(
  1264. cmLinkLineDeviceComputer& linkLineComputer, const std::string& config,
  1265. std::string& linkLibs, std::string& linkFlags, std::string& frameworkPath,
  1266. std::string& linkPath, cmGeneratorTarget* target)
  1267. {
  1268. cmGeneratorTarget::DeviceLinkSetter setter(*target);
  1269. cmComputeLinkInformation* pcli = target->GetLinkInformation(config);
  1270. auto linklang = linkLineComputer.GetLinkerLanguage(target, config);
  1271. auto ipoEnabled = target->IsIPOEnabled(linklang, config);
  1272. if (!ipoEnabled) {
  1273. ipoEnabled = linkLineComputer.ComputeRequiresDeviceLinkingIPOFlag(*pcli);
  1274. }
  1275. if (ipoEnabled) {
  1276. if (cmValue cudaIPOFlags = this->Makefile->GetDefinition(
  1277. "CMAKE_CUDA_DEVICE_LINK_OPTIONS_IPO")) {
  1278. linkFlags += *cudaIPOFlags;
  1279. }
  1280. }
  1281. if (pcli) {
  1282. // Compute the required device link libraries when
  1283. // resolving gpu lang device symbols
  1284. this->OutputLinkLibraries(pcli, &linkLineComputer, linkLibs, frameworkPath,
  1285. linkPath);
  1286. }
  1287. this->AddVisibilityPresetFlags(linkFlags, target, "CUDA");
  1288. this->GetGlobalGenerator()->EncodeLiteral(linkFlags);
  1289. std::vector<std::string> linkOpts;
  1290. target->GetLinkOptions(linkOpts, config, "CUDA");
  1291. this->SetLinkScriptShell(this->GetGlobalGenerator()->GetUseLinkScript());
  1292. // LINK_OPTIONS are escaped.
  1293. this->AppendCompileOptions(linkFlags, linkOpts);
  1294. this->SetLinkScriptShell(false);
  1295. }
  1296. void cmLocalGenerator::GetTargetFlags(
  1297. cmLinkLineComputer* linkLineComputer, const std::string& config,
  1298. std::string& linkLibs, std::string& flags, std::string& linkFlags,
  1299. std::string& frameworkPath, std::string& linkPath, cmGeneratorTarget* target)
  1300. {
  1301. std::vector<BT<std::string>> linkFlagsList;
  1302. std::vector<BT<std::string>> linkPathList;
  1303. std::vector<BT<std::string>> linkLibsList;
  1304. this->GetTargetFlags(linkLineComputer, config, linkLibsList, flags,
  1305. linkFlagsList, frameworkPath, linkPathList, target);
  1306. this->AppendFlags(linkFlags, linkFlagsList);
  1307. this->AppendFlags(linkPath, linkPathList);
  1308. this->AppendFlags(linkLibs, linkLibsList);
  1309. }
  1310. void cmLocalGenerator::GetTargetFlags(
  1311. cmLinkLineComputer* linkLineComputer, const std::string& config,
  1312. std::vector<BT<std::string>>& linkLibs, std::string& flags,
  1313. std::vector<BT<std::string>>& linkFlags, std::string& frameworkPath,
  1314. std::vector<BT<std::string>>& linkPath, cmGeneratorTarget* target)
  1315. {
  1316. const std::string configUpper = cmSystemTools::UpperCase(config);
  1317. cmComputeLinkInformation* pcli = target->GetLinkInformation(config);
  1318. const char* libraryLinkVariable =
  1319. "CMAKE_SHARED_LINKER_FLAGS"; // default to shared library
  1320. const std::string linkLanguage =
  1321. linkLineComputer->GetLinkerLanguage(target, config);
  1322. switch (target->GetType()) {
  1323. case cmStateEnums::STATIC_LIBRARY:
  1324. linkFlags = this->GetStaticLibraryFlags(config, linkLanguage, target);
  1325. break;
  1326. case cmStateEnums::MODULE_LIBRARY:
  1327. libraryLinkVariable = "CMAKE_MODULE_LINKER_FLAGS";
  1328. CM_FALLTHROUGH;
  1329. case cmStateEnums::SHARED_LIBRARY: {
  1330. std::string sharedLibFlags;
  1331. if (linkLanguage != "Swift") {
  1332. sharedLibFlags = cmStrCat(
  1333. this->Makefile->GetSafeDefinition(libraryLinkVariable), ' ');
  1334. if (!configUpper.empty()) {
  1335. std::string build = cmStrCat(libraryLinkVariable, '_', configUpper);
  1336. sharedLibFlags += this->Makefile->GetSafeDefinition(build);
  1337. sharedLibFlags += " ";
  1338. }
  1339. }
  1340. cmValue targetLinkFlags = target->GetProperty("LINK_FLAGS");
  1341. if (targetLinkFlags) {
  1342. sharedLibFlags += *targetLinkFlags;
  1343. sharedLibFlags += " ";
  1344. }
  1345. if (!configUpper.empty()) {
  1346. targetLinkFlags =
  1347. target->GetProperty(cmStrCat("LINK_FLAGS_", configUpper));
  1348. if (targetLinkFlags) {
  1349. sharedLibFlags += *targetLinkFlags;
  1350. sharedLibFlags += " ";
  1351. }
  1352. }
  1353. if (!sharedLibFlags.empty()) {
  1354. this->GetGlobalGenerator()->EncodeLiteral(sharedLibFlags);
  1355. linkFlags.emplace_back(std::move(sharedLibFlags));
  1356. }
  1357. std::vector<BT<std::string>> linkOpts =
  1358. target->GetLinkOptions(config, linkLanguage);
  1359. this->SetLinkScriptShell(this->GetGlobalGenerator()->GetUseLinkScript());
  1360. // LINK_OPTIONS are escaped.
  1361. this->AppendCompileOptions(linkFlags, linkOpts);
  1362. this->SetLinkScriptShell(false);
  1363. if (pcli) {
  1364. this->OutputLinkLibraries(pcli, linkLineComputer, linkLibs,
  1365. frameworkPath, linkPath);
  1366. }
  1367. } break;
  1368. case cmStateEnums::EXECUTABLE: {
  1369. std::string exeFlags;
  1370. if (linkLanguage != "Swift") {
  1371. exeFlags = this->Makefile->GetSafeDefinition("CMAKE_EXE_LINKER_FLAGS");
  1372. exeFlags += " ";
  1373. if (!configUpper.empty()) {
  1374. exeFlags += this->Makefile->GetSafeDefinition(
  1375. cmStrCat("CMAKE_EXE_LINKER_FLAGS_", configUpper));
  1376. exeFlags += " ";
  1377. }
  1378. if (linkLanguage.empty()) {
  1379. cmSystemTools::Error(
  1380. "CMake can not determine linker language for target: " +
  1381. target->GetName());
  1382. return;
  1383. }
  1384. if (target->IsWin32Executable(config)) {
  1385. exeFlags += this->Makefile->GetSafeDefinition(
  1386. cmStrCat("CMAKE_", linkLanguage, "_CREATE_WIN32_EXE"));
  1387. exeFlags += " ";
  1388. } else {
  1389. exeFlags += this->Makefile->GetSafeDefinition(
  1390. cmStrCat("CMAKE_", linkLanguage, "_CREATE_CONSOLE_EXE"));
  1391. exeFlags += " ";
  1392. }
  1393. if (target->IsExecutableWithExports()) {
  1394. exeFlags += this->Makefile->GetSafeDefinition(
  1395. cmStrCat("CMAKE_EXE_EXPORTS_", linkLanguage, "_FLAG"));
  1396. exeFlags += " ";
  1397. }
  1398. }
  1399. this->AddLanguageFlagsForLinking(flags, target, linkLanguage, config);
  1400. if (pcli) {
  1401. this->OutputLinkLibraries(pcli, linkLineComputer, linkLibs,
  1402. frameworkPath, linkPath);
  1403. }
  1404. if (this->Makefile->IsOn("BUILD_SHARED_LIBS")) {
  1405. std::string sFlagVar = "CMAKE_SHARED_BUILD_" + linkLanguage + "_FLAGS";
  1406. exeFlags += this->Makefile->GetSafeDefinition(sFlagVar);
  1407. exeFlags += " ";
  1408. }
  1409. std::string cmp0065Flags =
  1410. this->GetLinkLibsCMP0065(linkLanguage, *target);
  1411. if (!cmp0065Flags.empty()) {
  1412. exeFlags += cmp0065Flags;
  1413. exeFlags += " ";
  1414. }
  1415. cmValue targetLinkFlags = target->GetProperty("LINK_FLAGS");
  1416. if (targetLinkFlags) {
  1417. exeFlags += *targetLinkFlags;
  1418. exeFlags += " ";
  1419. }
  1420. if (!configUpper.empty()) {
  1421. targetLinkFlags =
  1422. target->GetProperty(cmStrCat("LINK_FLAGS_", configUpper));
  1423. if (targetLinkFlags) {
  1424. exeFlags += *targetLinkFlags;
  1425. exeFlags += " ";
  1426. }
  1427. }
  1428. if (!exeFlags.empty()) {
  1429. this->GetGlobalGenerator()->EncodeLiteral(exeFlags);
  1430. linkFlags.emplace_back(std::move(exeFlags));
  1431. }
  1432. std::vector<BT<std::string>> linkOpts =
  1433. target->GetLinkOptions(config, linkLanguage);
  1434. this->SetLinkScriptShell(this->GetGlobalGenerator()->GetUseLinkScript());
  1435. // LINK_OPTIONS are escaped.
  1436. this->AppendCompileOptions(linkFlags, linkOpts);
  1437. this->SetLinkScriptShell(false);
  1438. } break;
  1439. default:
  1440. break;
  1441. }
  1442. std::string extraLinkFlags;
  1443. this->AppendPositionIndependentLinkerFlags(extraLinkFlags, target, config,
  1444. linkLanguage);
  1445. this->AppendIPOLinkerFlags(extraLinkFlags, target, config, linkLanguage);
  1446. this->AppendDependencyInfoLinkerFlags(extraLinkFlags, target, config,
  1447. linkLanguage);
  1448. this->AppendModuleDefinitionFlag(extraLinkFlags, target, linkLineComputer,
  1449. config);
  1450. if (!extraLinkFlags.empty()) {
  1451. this->GetGlobalGenerator()->EncodeLiteral(extraLinkFlags);
  1452. linkFlags.emplace_back(std::move(extraLinkFlags));
  1453. }
  1454. }
  1455. void cmLocalGenerator::GetTargetCompileFlags(cmGeneratorTarget* target,
  1456. std::string const& config,
  1457. std::string const& lang,
  1458. std::string& flags,
  1459. std::string const& arch)
  1460. {
  1461. std::vector<BT<std::string>> tmpFlags =
  1462. this->GetTargetCompileFlags(target, config, lang, arch);
  1463. this->AppendFlags(flags, tmpFlags);
  1464. }
  1465. std::vector<BT<std::string>> cmLocalGenerator::GetTargetCompileFlags(
  1466. cmGeneratorTarget* target, std::string const& config,
  1467. std::string const& lang, std::string const& arch)
  1468. {
  1469. std::vector<BT<std::string>> flags;
  1470. std::string compileFlags;
  1471. cmMakefile* mf = this->GetMakefile();
  1472. // Add language-specific flags.
  1473. this->AddLanguageFlags(compileFlags, target, cmBuildStep::Compile, lang,
  1474. config);
  1475. if (target->IsIPOEnabled(lang, config)) {
  1476. this->AppendFeatureOptions(compileFlags, lang, "IPO");
  1477. }
  1478. this->AddArchitectureFlags(compileFlags, target, lang, config, arch);
  1479. if (lang == "Fortran") {
  1480. this->AppendFlags(compileFlags,
  1481. this->GetTargetFortranFlags(target, config));
  1482. }
  1483. this->AddCMP0018Flags(compileFlags, target, lang, config);
  1484. this->AddVisibilityPresetFlags(compileFlags, target, lang);
  1485. this->AddColorDiagnosticsFlags(compileFlags, lang);
  1486. this->AppendFlags(compileFlags, mf->GetDefineFlags());
  1487. this->AppendFlags(compileFlags,
  1488. this->GetFrameworkFlags(lang, config, target));
  1489. this->AppendFlags(compileFlags,
  1490. this->GetXcFrameworkFlags(lang, config, target));
  1491. if (!compileFlags.empty()) {
  1492. flags.emplace_back(std::move(compileFlags));
  1493. }
  1494. this->AddCompileOptions(flags, target, lang, config);
  1495. return flags;
  1496. }
  1497. std::string cmLocalGenerator::GetFrameworkFlags(std::string const& lang,
  1498. std::string const& config,
  1499. cmGeneratorTarget* target)
  1500. {
  1501. cmLocalGenerator* lg = target->GetLocalGenerator();
  1502. cmMakefile* mf = lg->GetMakefile();
  1503. if (!target->IsApple()) {
  1504. return std::string();
  1505. }
  1506. cmValue fwSearchFlag =
  1507. mf->GetDefinition(cmStrCat("CMAKE_", lang, "_FRAMEWORK_SEARCH_FLAG"));
  1508. cmValue sysFwSearchFlag = mf->GetDefinition(
  1509. cmStrCat("CMAKE_", lang, "_SYSTEM_FRAMEWORK_SEARCH_FLAG"));
  1510. if (!fwSearchFlag && !sysFwSearchFlag) {
  1511. return std::string{};
  1512. }
  1513. std::set<std::string> emitted;
  1514. #ifdef __APPLE__ /* don't insert this when crosscompiling e.g. to iphone */
  1515. emitted.insert("/System/Library/Frameworks");
  1516. #endif
  1517. std::vector<std::string> includes;
  1518. lg->GetIncludeDirectories(includes, target, "C", config);
  1519. // check all include directories for frameworks as this
  1520. // will already have added a -F for the framework
  1521. for (std::string const& include : includes) {
  1522. if (lg->GetGlobalGenerator()->NameResolvesToFramework(include)) {
  1523. std::string frameworkDir = cmStrCat(include, "/../");
  1524. frameworkDir = cmSystemTools::CollapseFullPath(frameworkDir);
  1525. emitted.insert(frameworkDir);
  1526. }
  1527. }
  1528. std::string flags;
  1529. if (cmComputeLinkInformation* cli = target->GetLinkInformation(config)) {
  1530. std::vector<std::string> const& frameworks = cli->GetFrameworkPaths();
  1531. for (std::string const& framework : frameworks) {
  1532. if (emitted.insert(framework).second) {
  1533. if (sysFwSearchFlag &&
  1534. target->IsSystemIncludeDirectory(framework, config, lang)) {
  1535. flags += *sysFwSearchFlag;
  1536. } else {
  1537. flags += *fwSearchFlag;
  1538. }
  1539. flags +=
  1540. lg->ConvertToOutputFormat(framework, cmOutputConverter::SHELL);
  1541. flags += " ";
  1542. }
  1543. }
  1544. }
  1545. return flags;
  1546. }
  1547. std::string cmLocalGenerator::GetXcFrameworkFlags(std::string const& lang,
  1548. std::string const& config,
  1549. cmGeneratorTarget* target)
  1550. {
  1551. cmLocalGenerator* lg = target->GetLocalGenerator();
  1552. cmMakefile* mf = lg->GetMakefile();
  1553. if (!target->IsApple()) {
  1554. return std::string();
  1555. }
  1556. cmValue includeSearchFlag =
  1557. mf->GetDefinition(cmStrCat("CMAKE_INCLUDE_FLAG_", lang));
  1558. cmValue sysIncludeSearchFlag =
  1559. mf->GetDefinition(cmStrCat("CMAKE_INCLUDE_SYSTEM_FLAG_", lang));
  1560. if (!includeSearchFlag && !sysIncludeSearchFlag) {
  1561. return std::string{};
  1562. }
  1563. std::string flags;
  1564. if (cmComputeLinkInformation* cli = target->GetLinkInformation(config)) {
  1565. std::vector<std::string> const& paths = cli->GetXcFrameworkHeaderPaths();
  1566. for (std::string const& path : paths) {
  1567. if (sysIncludeSearchFlag &&
  1568. target->IsSystemIncludeDirectory(path, config, lang)) {
  1569. flags += *sysIncludeSearchFlag;
  1570. } else {
  1571. flags += *includeSearchFlag;
  1572. }
  1573. flags += lg->ConvertToOutputFormat(path, cmOutputConverter::SHELL);
  1574. flags += " ";
  1575. }
  1576. }
  1577. return flags;
  1578. }
  1579. void cmLocalGenerator::GetTargetDefines(cmGeneratorTarget const* target,
  1580. std::string const& config,
  1581. std::string const& lang,
  1582. std::set<std::string>& defines) const
  1583. {
  1584. std::set<BT<std::string>> tmp = this->GetTargetDefines(target, config, lang);
  1585. for (BT<std::string> const& v : tmp) {
  1586. defines.emplace(v.Value);
  1587. }
  1588. }
  1589. std::set<BT<std::string>> cmLocalGenerator::GetTargetDefines(
  1590. cmGeneratorTarget const* target, std::string const& config,
  1591. std::string const& lang) const
  1592. {
  1593. std::set<BT<std::string>> defines;
  1594. // Add the export symbol definition for shared library objects.
  1595. if (const std::string* exportMacro = target->GetExportMacro()) {
  1596. this->AppendDefines(defines, *exportMacro);
  1597. }
  1598. // Add preprocessor definitions for this target and configuration.
  1599. std::vector<BT<std::string>> targetDefines =
  1600. target->GetCompileDefinitions(config, lang);
  1601. this->AppendDefines(defines, targetDefines);
  1602. return defines;
  1603. }
  1604. std::string cmLocalGenerator::GetTargetFortranFlags(
  1605. cmGeneratorTarget const* /*unused*/, std::string const& /*unused*/)
  1606. {
  1607. // Implemented by specific generators that override this.
  1608. return std::string();
  1609. }
  1610. /**
  1611. * Output the linking rules on a command line. For executables,
  1612. * targetLibrary should be a NULL pointer. For libraries, it should point
  1613. * to the name of the library. This will not link a library against itself.
  1614. */
  1615. void cmLocalGenerator::OutputLinkLibraries(
  1616. cmComputeLinkInformation* pcli, cmLinkLineComputer* linkLineComputer,
  1617. std::string& linkLibraries, std::string& frameworkPath,
  1618. std::string& linkPath)
  1619. {
  1620. std::vector<BT<std::string>> linkLibrariesList;
  1621. std::vector<BT<std::string>> linkPathList;
  1622. this->OutputLinkLibraries(pcli, linkLineComputer, linkLibrariesList,
  1623. frameworkPath, linkPathList);
  1624. pcli->AppendValues(linkLibraries, linkLibrariesList);
  1625. pcli->AppendValues(linkPath, linkPathList);
  1626. }
  1627. void cmLocalGenerator::OutputLinkLibraries(
  1628. cmComputeLinkInformation* pcli, cmLinkLineComputer* linkLineComputer,
  1629. std::vector<BT<std::string>>& linkLibraries, std::string& frameworkPath,
  1630. std::vector<BT<std::string>>& linkPath)
  1631. {
  1632. cmComputeLinkInformation& cli = *pcli;
  1633. std::string linkLanguage = cli.GetLinkLanguage();
  1634. std::string libPathFlag;
  1635. if (cmValue value = this->Makefile->GetDefinition(
  1636. "CMAKE_" + cli.GetLinkLanguage() + "_LIBRARY_PATH_FLAG")) {
  1637. libPathFlag = *value;
  1638. } else {
  1639. libPathFlag =
  1640. this->Makefile->GetRequiredDefinition("CMAKE_LIBRARY_PATH_FLAG");
  1641. }
  1642. std::string libPathTerminator;
  1643. if (cmValue value = this->Makefile->GetDefinition(
  1644. "CMAKE_" + cli.GetLinkLanguage() + "_LIBRARY_PATH_TERMINATOR")) {
  1645. libPathTerminator = *value;
  1646. } else {
  1647. libPathTerminator =
  1648. this->Makefile->GetRequiredDefinition("CMAKE_LIBRARY_PATH_TERMINATOR");
  1649. }
  1650. // Add standard libraries for this language.
  1651. std::string stdLibString = this->Makefile->GetSafeDefinition(
  1652. cmStrCat("CMAKE_", cli.GetLinkLanguage(), "_STANDARD_LIBRARIES"));
  1653. // Append the framework search path flags.
  1654. cmValue fwSearchFlag = this->Makefile->GetDefinition(
  1655. cmStrCat("CMAKE_", linkLanguage, "_FRAMEWORK_SEARCH_FLAG"));
  1656. frameworkPath = linkLineComputer->ComputeFrameworkPath(cli, fwSearchFlag);
  1657. linkLineComputer->ComputeLinkPath(cli, libPathFlag, libPathTerminator,
  1658. linkPath);
  1659. linkLineComputer->ComputeLinkLibraries(cli, stdLibString, linkLibraries);
  1660. }
  1661. std::string cmLocalGenerator::GetLinkLibsCMP0065(
  1662. std::string const& linkLanguage, cmGeneratorTarget& tgt) const
  1663. {
  1664. std::string linkFlags;
  1665. // Flags to link an executable to shared libraries.
  1666. if (tgt.GetType() == cmStateEnums::EXECUTABLE &&
  1667. this->StateSnapshot.GetState()->GetGlobalPropertyAsBool(
  1668. "TARGET_SUPPORTS_SHARED_LIBS")) {
  1669. bool add_shlib_flags = false;
  1670. switch (tgt.GetPolicyStatusCMP0065()) {
  1671. case cmPolicies::WARN:
  1672. if (!tgt.GetPropertyAsBool("ENABLE_EXPORTS") &&
  1673. this->Makefile->PolicyOptionalWarningEnabled(
  1674. "CMAKE_POLICY_WARNING_CMP0065")) {
  1675. std::ostringstream w;
  1676. /* clang-format off */
  1677. w << cmPolicies::GetPolicyWarning(cmPolicies::CMP0065) << "\n"
  1678. "For compatibility with older versions of CMake, "
  1679. "additional flags may be added to export symbols on all "
  1680. "executables regardless of their ENABLE_EXPORTS property.";
  1681. /* clang-format on */
  1682. this->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
  1683. }
  1684. CM_FALLTHROUGH;
  1685. case cmPolicies::OLD:
  1686. // OLD behavior is to always add the flags, except on AIX where
  1687. // we compute symbol exports if ENABLE_EXPORTS is on.
  1688. add_shlib_flags =
  1689. !(tgt.IsAIX() && tgt.GetPropertyAsBool("ENABLE_EXPORTS"));
  1690. break;
  1691. case cmPolicies::REQUIRED_IF_USED:
  1692. case cmPolicies::REQUIRED_ALWAYS:
  1693. this->IssueMessage(
  1694. MessageType::FATAL_ERROR,
  1695. cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0065));
  1696. CM_FALLTHROUGH;
  1697. case cmPolicies::NEW:
  1698. // NEW behavior is to only add the flags if ENABLE_EXPORTS is on,
  1699. // except on AIX where we compute symbol exports.
  1700. add_shlib_flags =
  1701. !tgt.IsAIX() && tgt.GetPropertyAsBool("ENABLE_EXPORTS");
  1702. break;
  1703. }
  1704. if (add_shlib_flags) {
  1705. linkFlags = this->Makefile->GetSafeDefinition(
  1706. cmStrCat("CMAKE_SHARED_LIBRARY_LINK_", linkLanguage, "_FLAGS"));
  1707. }
  1708. }
  1709. return linkFlags;
  1710. }
  1711. bool cmLocalGenerator::AllAppleArchSysrootsAreTheSame(
  1712. const std::vector<std::string>& archs, cmValue sysroot)
  1713. {
  1714. if (!sysroot) {
  1715. return false;
  1716. }
  1717. return std::all_of(archs.begin(), archs.end(),
  1718. [this, sysroot](std::string const& arch) -> bool {
  1719. std::string const& archSysroot =
  1720. this->AppleArchSysroots[arch];
  1721. return cmIsOff(archSysroot) || *sysroot == archSysroot;
  1722. });
  1723. }
  1724. void cmLocalGenerator::AddArchitectureFlags(std::string& flags,
  1725. cmGeneratorTarget const* target,
  1726. const std::string& lang,
  1727. const std::string& config,
  1728. const std::string& filterArch)
  1729. {
  1730. // Only add Apple specific flags on Apple platforms
  1731. if (target->IsApple() && this->EmitUniversalBinaryFlags) {
  1732. std::vector<std::string> archs = target->GetAppleArchs(config, lang);
  1733. if (!archs.empty() &&
  1734. (lang == "C" || lang == "CXX" || lang == "OBJC" || lang == "OBJCXX" ||
  1735. lang == "ASM")) {
  1736. for (std::string const& arch : archs) {
  1737. if (filterArch.empty() || filterArch == arch) {
  1738. flags += " -arch ";
  1739. flags += arch;
  1740. }
  1741. }
  1742. }
  1743. cmValue sysroot = this->Makefile->GetDefinition("CMAKE_OSX_SYSROOT");
  1744. if (sysroot && *sysroot == "/") {
  1745. sysroot = nullptr;
  1746. }
  1747. std::string sysrootFlagVar = "CMAKE_" + lang + "_SYSROOT_FLAG";
  1748. cmValue sysrootFlag = this->Makefile->GetDefinition(sysrootFlagVar);
  1749. if (cmNonempty(sysrootFlag)) {
  1750. if (!this->AppleArchSysroots.empty() &&
  1751. !this->AllAppleArchSysrootsAreTheSame(archs, sysroot)) {
  1752. for (std::string const& arch : archs) {
  1753. std::string const& archSysroot = this->AppleArchSysroots[arch];
  1754. if (cmIsOff(archSysroot)) {
  1755. continue;
  1756. }
  1757. if (filterArch.empty() || filterArch == arch) {
  1758. flags += " -Xarch_" + arch + " ";
  1759. // Combine sysroot flag and path to work with -Xarch
  1760. std::string arch_sysroot = *sysrootFlag + archSysroot;
  1761. flags += this->ConvertToOutputFormat(arch_sysroot, SHELL);
  1762. }
  1763. }
  1764. } else if (cmNonempty(sysroot)) {
  1765. flags += " ";
  1766. flags += *sysrootFlag;
  1767. flags += " ";
  1768. flags += this->ConvertToOutputFormat(*sysroot, SHELL);
  1769. }
  1770. }
  1771. cmValue deploymentTarget =
  1772. this->Makefile->GetDefinition("CMAKE_OSX_DEPLOYMENT_TARGET");
  1773. std::string deploymentTargetFlagVar =
  1774. "CMAKE_" + lang + "_OSX_DEPLOYMENT_TARGET_FLAG";
  1775. cmValue deploymentTargetFlag =
  1776. this->Makefile->GetDefinition(deploymentTargetFlagVar);
  1777. if (cmNonempty(deploymentTargetFlag) && cmNonempty(deploymentTarget)) {
  1778. flags += " ";
  1779. flags += *deploymentTargetFlag;
  1780. flags += *deploymentTarget;
  1781. }
  1782. }
  1783. }
  1784. void cmLocalGenerator::AddLanguageFlags(std::string& flags,
  1785. cmGeneratorTarget const* target,
  1786. cmBuildStep compileOrLink,
  1787. const std::string& lang,
  1788. const std::string& config)
  1789. {
  1790. // Add language-specific flags.
  1791. this->AddConfigVariableFlags(flags, cmStrCat("CMAKE_", lang, "_FLAGS"),
  1792. config);
  1793. // Add the language standard flag for compiling, and sometimes linking.
  1794. if (compileOrLink == cmBuildStep::Compile ||
  1795. (compileOrLink == cmBuildStep::Link &&
  1796. // Some toolchains require use of the language standard flag
  1797. // when linking in order to use the matching standard library.
  1798. // FIXME: If CMake gains an abstraction for standard library
  1799. // selection, this will have to be reconciled with it.
  1800. this->Makefile->IsOn(
  1801. cmStrCat("CMAKE_", lang, "_LINK_WITH_STANDARD_COMPILE_OPTION")))) {
  1802. cmStandardLevelResolver standardResolver(this->Makefile);
  1803. std::string const& optionFlagDef =
  1804. standardResolver.GetCompileOptionDef(target, lang, config);
  1805. if (!optionFlagDef.empty()) {
  1806. cmValue opt =
  1807. target->Target->GetMakefile()->GetDefinition(optionFlagDef);
  1808. if (opt) {
  1809. cmList optList{ *opt };
  1810. for (std::string const& i : optList) {
  1811. this->AppendFlagEscape(flags, i);
  1812. }
  1813. }
  1814. }
  1815. }
  1816. std::string compiler = this->Makefile->GetSafeDefinition(
  1817. cmStrCat("CMAKE_", lang, "_COMPILER_ID"));
  1818. std::string compilerSimulateId = this->Makefile->GetSafeDefinition(
  1819. cmStrCat("CMAKE_", lang, "_SIMULATE_ID"));
  1820. if (lang == "Swift") {
  1821. if (cmValue v = target->GetProperty("Swift_LANGUAGE_VERSION")) {
  1822. if (cmSystemTools::VersionCompare(
  1823. cmSystemTools::OP_GREATER_EQUAL,
  1824. this->Makefile->GetDefinition("CMAKE_Swift_COMPILER_VERSION"),
  1825. "4.2")) {
  1826. this->AppendFlags(flags, "-swift-version " + *v);
  1827. }
  1828. }
  1829. } else if (lang == "CUDA") {
  1830. target->AddCUDAArchitectureFlags(compileOrLink, config, flags);
  1831. target->AddCUDAToolkitFlags(flags);
  1832. } else if (lang == "ISPC") {
  1833. target->AddISPCTargetFlags(flags);
  1834. } else if (lang == "RC" &&
  1835. this->Makefile->GetSafeDefinition("CMAKE_RC_COMPILER")
  1836. .find("llvm-rc") != std::string::npos) {
  1837. compiler = this->Makefile->GetSafeDefinition("CMAKE_C_COMPILER_ID");
  1838. if (!compiler.empty()) {
  1839. compilerSimulateId =
  1840. this->Makefile->GetSafeDefinition("CMAKE_C_SIMULATE_ID");
  1841. } else {
  1842. compiler = this->Makefile->GetSafeDefinition("CMAKE_CXX_COMPILER_ID");
  1843. compilerSimulateId =
  1844. this->Makefile->GetSafeDefinition("CMAKE_CXX_SIMULATE_ID");
  1845. }
  1846. } else if (lang == "HIP") {
  1847. target->AddHIPArchitectureFlags(compileOrLink, config, flags);
  1848. }
  1849. // Add VFS Overlay for Clang compilers
  1850. if (compiler == "Clang") {
  1851. if (cmValue vfsOverlay =
  1852. this->Makefile->GetDefinition("CMAKE_CLANG_VFS_OVERLAY")) {
  1853. if (compilerSimulateId == "MSVC") {
  1854. this->AppendCompileOptions(
  1855. flags,
  1856. std::vector<std::string>{ "-Xclang", "-ivfsoverlay", "-Xclang",
  1857. *vfsOverlay });
  1858. } else {
  1859. this->AppendCompileOptions(
  1860. flags, std::vector<std::string>{ "-ivfsoverlay", *vfsOverlay });
  1861. }
  1862. }
  1863. }
  1864. // Add MSVC runtime library flags. This is activated by the presence
  1865. // of a default selection whether or not it is overridden by a property.
  1866. cmValue msvcRuntimeLibraryDefault =
  1867. this->Makefile->GetDefinition("CMAKE_MSVC_RUNTIME_LIBRARY_DEFAULT");
  1868. if (cmNonempty(msvcRuntimeLibraryDefault)) {
  1869. cmValue msvcRuntimeLibraryValue =
  1870. target->GetProperty("MSVC_RUNTIME_LIBRARY");
  1871. if (!msvcRuntimeLibraryValue) {
  1872. msvcRuntimeLibraryValue = msvcRuntimeLibraryDefault;
  1873. }
  1874. std::string const msvcRuntimeLibrary = cmGeneratorExpression::Evaluate(
  1875. *msvcRuntimeLibraryValue, this, config, target);
  1876. if (!msvcRuntimeLibrary.empty()) {
  1877. if (cmValue msvcRuntimeLibraryOptions = this->Makefile->GetDefinition(
  1878. "CMAKE_" + lang + "_COMPILE_OPTIONS_MSVC_RUNTIME_LIBRARY_" +
  1879. msvcRuntimeLibrary)) {
  1880. this->AppendCompileOptions(flags, *msvcRuntimeLibraryOptions);
  1881. } else if ((this->Makefile->GetSafeDefinition(
  1882. "CMAKE_" + lang + "_COMPILER_ID") == "MSVC" ||
  1883. this->Makefile->GetSafeDefinition(
  1884. "CMAKE_" + lang + "_SIMULATE_ID") == "MSVC") &&
  1885. !cmSystemTools::GetErrorOccurredFlag()) {
  1886. // The compiler uses the MSVC ABI so it needs a known runtime library.
  1887. this->IssueMessage(MessageType::FATAL_ERROR,
  1888. "MSVC_RUNTIME_LIBRARY value '" +
  1889. msvcRuntimeLibrary + "' not known for this " +
  1890. lang + " compiler.");
  1891. }
  1892. }
  1893. }
  1894. // Add Watcom runtime library flags. This is activated by the presence
  1895. // of a default selection whether or not it is overridden by a property.
  1896. cmValue watcomRuntimeLibraryDefault =
  1897. this->Makefile->GetDefinition("CMAKE_WATCOM_RUNTIME_LIBRARY_DEFAULT");
  1898. if (cmNonempty(watcomRuntimeLibraryDefault)) {
  1899. cmValue watcomRuntimeLibraryValue =
  1900. target->GetProperty("WATCOM_RUNTIME_LIBRARY");
  1901. if (!watcomRuntimeLibraryValue) {
  1902. watcomRuntimeLibraryValue = watcomRuntimeLibraryDefault;
  1903. }
  1904. std::string const watcomRuntimeLibrary = cmGeneratorExpression::Evaluate(
  1905. *watcomRuntimeLibraryValue, this, config, target);
  1906. if (!watcomRuntimeLibrary.empty()) {
  1907. if (cmValue watcomRuntimeLibraryOptions = this->Makefile->GetDefinition(
  1908. "CMAKE_" + lang + "_COMPILE_OPTIONS_WATCOM_RUNTIME_LIBRARY_" +
  1909. watcomRuntimeLibrary)) {
  1910. this->AppendCompileOptions(flags, *watcomRuntimeLibraryOptions);
  1911. } else if ((this->Makefile->GetSafeDefinition(
  1912. "CMAKE_" + lang + "_COMPILER_ID") == "OpenWatcom" ||
  1913. this->Makefile->GetSafeDefinition(
  1914. "CMAKE_" + lang + "_SIMULATE_ID") == "OpenWatcom") &&
  1915. !cmSystemTools::GetErrorOccurredFlag()) {
  1916. // The compiler uses the Watcom ABI so it needs a known runtime
  1917. // library.
  1918. this->IssueMessage(MessageType::FATAL_ERROR,
  1919. "WATCOM_RUNTIME_LIBRARY value '" +
  1920. watcomRuntimeLibrary + "' not known for this " +
  1921. lang + " compiler.");
  1922. }
  1923. }
  1924. }
  1925. // Add MSVC debug information format flags if CMP0141 is NEW.
  1926. if (cm::optional<std::string> msvcDebugInformationFormat =
  1927. this->GetMSVCDebugFormatName(config, target)) {
  1928. if (!msvcDebugInformationFormat->empty()) {
  1929. if (cmValue msvcDebugInformationFormatOptions =
  1930. this->Makefile->GetDefinition(
  1931. cmStrCat("CMAKE_", lang,
  1932. "_COMPILE_OPTIONS_MSVC_DEBUG_INFORMATION_FORMAT_",
  1933. *msvcDebugInformationFormat))) {
  1934. this->AppendCompileOptions(flags, *msvcDebugInformationFormatOptions);
  1935. } else if ((this->Makefile->GetSafeDefinition(
  1936. cmStrCat("CMAKE_", lang, "_COMPILER_ID")) == "MSVC"_s ||
  1937. this->Makefile->GetSafeDefinition(
  1938. cmStrCat("CMAKE_", lang, "_SIMULATE_ID")) == "MSVC"_s) &&
  1939. !cmSystemTools::GetErrorOccurredFlag()) {
  1940. // The compiler uses the MSVC ABI so it needs a known runtime library.
  1941. this->IssueMessage(MessageType::FATAL_ERROR,
  1942. cmStrCat("MSVC_DEBUG_INFORMATION_FORMAT value '",
  1943. *msvcDebugInformationFormat,
  1944. "' not known for this ", lang,
  1945. " compiler."));
  1946. }
  1947. }
  1948. }
  1949. }
  1950. void cmLocalGenerator::AddLanguageFlagsForLinking(
  1951. std::string& flags, cmGeneratorTarget const* target, const std::string& lang,
  1952. const std::string& config)
  1953. {
  1954. this->AddLanguageFlags(flags, target, cmBuildStep::Link, lang, config);
  1955. if (target->IsIPOEnabled(lang, config)) {
  1956. this->AppendFeatureOptions(flags, lang, "IPO");
  1957. }
  1958. }
  1959. cmGeneratorTarget* cmLocalGenerator::FindGeneratorTargetToUse(
  1960. const std::string& name) const
  1961. {
  1962. auto imported = this->ImportedGeneratorTargets.find(name);
  1963. if (imported != this->ImportedGeneratorTargets.end()) {
  1964. return imported->second;
  1965. }
  1966. // find local alias to imported target
  1967. auto aliased = this->AliasTargets.find(name);
  1968. if (aliased != this->AliasTargets.end()) {
  1969. imported = this->ImportedGeneratorTargets.find(aliased->second);
  1970. if (imported != this->ImportedGeneratorTargets.end()) {
  1971. return imported->second;
  1972. }
  1973. }
  1974. if (cmGeneratorTarget* t = this->FindLocalNonAliasGeneratorTarget(name)) {
  1975. return t;
  1976. }
  1977. return this->GetGlobalGenerator()->FindGeneratorTarget(name);
  1978. }
  1979. bool cmLocalGenerator::GetRealDependency(const std::string& inName,
  1980. const std::string& config,
  1981. std::string& dep)
  1982. {
  1983. // Older CMake code may specify the dependency using the target
  1984. // output file rather than the target name. Such code would have
  1985. // been written before there was support for target properties that
  1986. // modify the name so stripping down to just the file name should
  1987. // produce the target name in this case.
  1988. std::string name = cmSystemTools::GetFilenameName(inName);
  1989. // If the input name is the empty string, there is no real
  1990. // dependency. Short-circuit the other checks:
  1991. if (name.empty()) {
  1992. return false;
  1993. }
  1994. if (cmSystemTools::GetFilenameLastExtension(name) == ".exe") {
  1995. name = cmSystemTools::GetFilenameWithoutLastExtension(name);
  1996. }
  1997. // Look for a CMake target with the given name.
  1998. if (cmGeneratorTarget* target = this->FindGeneratorTargetToUse(name)) {
  1999. // make sure it is not just a coincidence that the target name
  2000. // found is part of the inName
  2001. if (cmSystemTools::FileIsFullPath(inName)) {
  2002. std::string tLocation;
  2003. if (target->GetType() >= cmStateEnums::EXECUTABLE &&
  2004. target->GetType() <= cmStateEnums::MODULE_LIBRARY) {
  2005. tLocation = target->GetLocation(config);
  2006. tLocation = cmSystemTools::GetFilenamePath(tLocation);
  2007. tLocation = cmSystemTools::CollapseFullPath(tLocation);
  2008. }
  2009. std::string depLocation =
  2010. cmSystemTools::GetFilenamePath(std::string(inName));
  2011. depLocation = cmSystemTools::CollapseFullPath(depLocation);
  2012. if (depLocation != tLocation) {
  2013. // it is a full path to a depend that has the same name
  2014. // as a target but is in a different location so do not use
  2015. // the target as the depend
  2016. dep = inName;
  2017. return true;
  2018. }
  2019. }
  2020. switch (target->GetType()) {
  2021. case cmStateEnums::EXECUTABLE:
  2022. case cmStateEnums::STATIC_LIBRARY:
  2023. case cmStateEnums::SHARED_LIBRARY:
  2024. case cmStateEnums::MODULE_LIBRARY:
  2025. case cmStateEnums::UNKNOWN_LIBRARY:
  2026. dep = target->GetFullPath(config, cmStateEnums::RuntimeBinaryArtifact,
  2027. /*realname=*/true);
  2028. return true;
  2029. case cmStateEnums::OBJECT_LIBRARY:
  2030. // An object library has no single file on which to depend.
  2031. // This was listed to get the target-level dependency.
  2032. case cmStateEnums::INTERFACE_LIBRARY:
  2033. // An interface library has no file on which to depend.
  2034. // This was listed to get the target-level dependency.
  2035. case cmStateEnums::UTILITY:
  2036. case cmStateEnums::GLOBAL_TARGET:
  2037. // A utility target has no file on which to depend. This was listed
  2038. // only to get the target-level dependency.
  2039. return false;
  2040. }
  2041. }
  2042. // The name was not that of a CMake target. It must name a file.
  2043. if (cmSystemTools::FileIsFullPath(inName)) {
  2044. // This is a full path. Return it as given.
  2045. dep = inName;
  2046. return true;
  2047. }
  2048. // Check for a source file in this directory that matches the
  2049. // dependency.
  2050. if (cmSourceFile* sf = this->Makefile->GetSource(inName)) {
  2051. dep = sf->ResolveFullPath();
  2052. return true;
  2053. }
  2054. // Treat the name as relative to the source directory in which it
  2055. // was given.
  2056. dep = cmStrCat(this->GetCurrentSourceDirectory(), '/', inName);
  2057. // If the in-source path does not exist, assume it instead lives in the
  2058. // binary directory.
  2059. if (!cmSystemTools::FileExists(dep)) {
  2060. dep = cmStrCat(this->GetCurrentBinaryDirectory(), '/', inName);
  2061. }
  2062. dep = cmSystemTools::CollapseFullPath(dep, this->GetBinaryDirectory());
  2063. return true;
  2064. }
  2065. void cmLocalGenerator::AddSharedFlags(std::string& flags,
  2066. const std::string& lang, bool shared)
  2067. {
  2068. std::string flagsVar;
  2069. // Add flags for dealing with shared libraries for this language.
  2070. if (shared) {
  2071. this->AppendFlags(flags,
  2072. this->Makefile->GetSafeDefinition(
  2073. cmStrCat("CMAKE_SHARED_LIBRARY_", lang, "_FLAGS")));
  2074. }
  2075. }
  2076. static void AddVisibilityCompileOption(std::string& flags,
  2077. cmGeneratorTarget const* target,
  2078. cmLocalGenerator* lg,
  2079. const std::string& lang,
  2080. std::string* warnCMP0063)
  2081. {
  2082. std::string compileOption = "CMAKE_" + lang + "_COMPILE_OPTIONS_VISIBILITY";
  2083. cmValue opt = lg->GetMakefile()->GetDefinition(compileOption);
  2084. if (!opt) {
  2085. return;
  2086. }
  2087. std::string flagDefine = lang + "_VISIBILITY_PRESET";
  2088. cmValue prop = target->GetProperty(flagDefine);
  2089. if (!prop) {
  2090. return;
  2091. }
  2092. if (warnCMP0063) {
  2093. *warnCMP0063 += " " + flagDefine + "\n";
  2094. return;
  2095. }
  2096. if ((*prop != "hidden") && (*prop != "default") && (*prop != "protected") &&
  2097. (*prop != "internal")) {
  2098. std::ostringstream e;
  2099. e << "Target " << target->GetName() << " uses unsupported value \""
  2100. << *prop << "\" for " << flagDefine << "."
  2101. << " The supported values are: default, hidden, protected, and "
  2102. "internal.";
  2103. cmSystemTools::Error(e.str());
  2104. return;
  2105. }
  2106. std::string option = *opt + *prop;
  2107. lg->AppendFlags(flags, option);
  2108. }
  2109. static void AddInlineVisibilityCompileOption(std::string& flags,
  2110. cmGeneratorTarget const* target,
  2111. cmLocalGenerator* lg,
  2112. std::string* warnCMP0063,
  2113. const std::string& lang)
  2114. {
  2115. std::string compileOption =
  2116. cmStrCat("CMAKE_", lang, "_COMPILE_OPTIONS_VISIBILITY_INLINES_HIDDEN");
  2117. cmValue opt = lg->GetMakefile()->GetDefinition(compileOption);
  2118. if (!opt) {
  2119. return;
  2120. }
  2121. bool prop = target->GetPropertyAsBool("VISIBILITY_INLINES_HIDDEN");
  2122. if (!prop) {
  2123. return;
  2124. }
  2125. if (warnCMP0063) {
  2126. *warnCMP0063 += " VISIBILITY_INLINES_HIDDEN\n";
  2127. return;
  2128. }
  2129. lg->AppendFlags(flags, *opt);
  2130. }
  2131. void cmLocalGenerator::AddVisibilityPresetFlags(
  2132. std::string& flags, cmGeneratorTarget const* target, const std::string& lang)
  2133. {
  2134. if (lang.empty()) {
  2135. return;
  2136. }
  2137. std::string warnCMP0063;
  2138. std::string* pWarnCMP0063 = nullptr;
  2139. if (target->GetType() != cmStateEnums::SHARED_LIBRARY &&
  2140. target->GetType() != cmStateEnums::MODULE_LIBRARY &&
  2141. !target->IsExecutableWithExports()) {
  2142. switch (target->GetPolicyStatusCMP0063()) {
  2143. case cmPolicies::OLD:
  2144. return;
  2145. case cmPolicies::WARN:
  2146. pWarnCMP0063 = &warnCMP0063;
  2147. break;
  2148. default:
  2149. break;
  2150. }
  2151. }
  2152. AddVisibilityCompileOption(flags, target, this, lang, pWarnCMP0063);
  2153. if (lang == "CXX" || lang == "OBJCXX") {
  2154. AddInlineVisibilityCompileOption(flags, target, this, pWarnCMP0063, lang);
  2155. }
  2156. if (!warnCMP0063.empty() && this->WarnCMP0063.insert(target).second) {
  2157. std::ostringstream w;
  2158. /* clang-format off */
  2159. w <<
  2160. cmPolicies::GetPolicyWarning(cmPolicies::CMP0063) << "\n"
  2161. "Target \"" << target->GetName() << "\" of "
  2162. "type \"" << cmState::GetTargetTypeName(target->GetType()) << "\" "
  2163. "has the following visibility properties set for " << lang << ":\n" <<
  2164. warnCMP0063 <<
  2165. "For compatibility CMake is not honoring them for this target.";
  2166. /* clang-format on */
  2167. target->GetLocalGenerator()->GetCMakeInstance()->IssueMessage(
  2168. MessageType::AUTHOR_WARNING, w.str(), target->GetBacktrace());
  2169. }
  2170. }
  2171. void cmLocalGenerator::AddCMP0018Flags(std::string& flags,
  2172. cmGeneratorTarget const* target,
  2173. std::string const& lang,
  2174. const std::string& config)
  2175. {
  2176. int targetType = target->GetType();
  2177. bool shared = ((targetType == cmStateEnums::SHARED_LIBRARY) ||
  2178. (targetType == cmStateEnums::MODULE_LIBRARY));
  2179. if (this->GetShouldUseOldFlags(shared, lang)) {
  2180. this->AddSharedFlags(flags, lang, shared);
  2181. } else {
  2182. if (target->GetLinkInterfaceDependentBoolProperty(
  2183. "POSITION_INDEPENDENT_CODE", config)) {
  2184. this->AddPositionIndependentFlags(flags, lang, targetType);
  2185. }
  2186. if (shared) {
  2187. this->AppendFeatureOptions(flags, lang, "DLL");
  2188. }
  2189. }
  2190. }
  2191. bool cmLocalGenerator::GetShouldUseOldFlags(bool shared,
  2192. const std::string& lang) const
  2193. {
  2194. std::string originalFlags =
  2195. this->GlobalGenerator->GetSharedLibFlagsForLanguage(lang);
  2196. if (shared) {
  2197. std::string flagsVar = cmStrCat("CMAKE_SHARED_LIBRARY_", lang, "_FLAGS");
  2198. std::string const& flags = this->Makefile->GetSafeDefinition(flagsVar);
  2199. if (flags != originalFlags) {
  2200. switch (this->GetPolicyStatus(cmPolicies::CMP0018)) {
  2201. case cmPolicies::WARN: {
  2202. std::ostringstream e;
  2203. e << "Variable " << flagsVar
  2204. << " has been modified. CMake "
  2205. "will ignore the POSITION_INDEPENDENT_CODE target property "
  2206. "for "
  2207. "shared libraries and will use the "
  2208. << flagsVar
  2209. << " variable "
  2210. "instead. This may cause errors if the original content of "
  2211. << flagsVar << " was removed.\n"
  2212. << cmPolicies::GetPolicyWarning(cmPolicies::CMP0018);
  2213. this->IssueMessage(MessageType::AUTHOR_WARNING, e.str());
  2214. CM_FALLTHROUGH;
  2215. }
  2216. case cmPolicies::OLD:
  2217. return true;
  2218. case cmPolicies::REQUIRED_IF_USED:
  2219. case cmPolicies::REQUIRED_ALWAYS:
  2220. case cmPolicies::NEW:
  2221. return false;
  2222. }
  2223. }
  2224. }
  2225. return false;
  2226. }
  2227. void cmLocalGenerator::AddPositionIndependentFlags(std::string& flags,
  2228. std::string const& lang,
  2229. int targetType)
  2230. {
  2231. std::string picFlags;
  2232. if (targetType == cmStateEnums::EXECUTABLE) {
  2233. picFlags = this->Makefile->GetSafeDefinition(
  2234. cmStrCat("CMAKE_", lang, "_COMPILE_OPTIONS_PIE"));
  2235. }
  2236. if (picFlags.empty()) {
  2237. picFlags = this->Makefile->GetSafeDefinition(
  2238. cmStrCat("CMAKE_", lang, "_COMPILE_OPTIONS_PIC"));
  2239. }
  2240. if (!picFlags.empty()) {
  2241. cmList options{ picFlags };
  2242. for (std::string const& o : options) {
  2243. this->AppendFlagEscape(flags, o);
  2244. }
  2245. }
  2246. }
  2247. void cmLocalGenerator::AddColorDiagnosticsFlags(std::string& flags,
  2248. const std::string& lang)
  2249. {
  2250. cmValue diag = this->Makefile->GetDefinition("CMAKE_COLOR_DIAGNOSTICS");
  2251. if (diag.IsSet()) {
  2252. std::string colorFlagName;
  2253. if (diag.IsOn()) {
  2254. colorFlagName =
  2255. cmStrCat("CMAKE_", lang, "_COMPILE_OPTIONS_COLOR_DIAGNOSTICS");
  2256. } else {
  2257. colorFlagName =
  2258. cmStrCat("CMAKE_", lang, "_COMPILE_OPTIONS_COLOR_DIAGNOSTICS_OFF");
  2259. }
  2260. cmList options{ this->Makefile->GetDefinition(colorFlagName) };
  2261. for (auto const& option : options) {
  2262. this->AppendFlagEscape(flags, option);
  2263. }
  2264. }
  2265. }
  2266. void cmLocalGenerator::AddConfigVariableFlags(std::string& flags,
  2267. const std::string& var,
  2268. const std::string& config)
  2269. {
  2270. // Add the flags from the variable itself.
  2271. this->AppendFlags(flags, this->Makefile->GetSafeDefinition(var));
  2272. // Add the flags from the build-type specific variable.
  2273. if (!config.empty()) {
  2274. const std::string flagsVar =
  2275. cmStrCat(var, '_', cmSystemTools::UpperCase(config));
  2276. this->AppendFlags(flags, this->Makefile->GetSafeDefinition(flagsVar));
  2277. }
  2278. }
  2279. void cmLocalGenerator::AppendFlags(std::string& flags,
  2280. const std::string& newFlags) const
  2281. {
  2282. bool allSpaces = std::all_of(newFlags.begin(), newFlags.end(), cmIsSpace);
  2283. if (!newFlags.empty() && !allSpaces) {
  2284. if (!flags.empty()) {
  2285. flags += " ";
  2286. }
  2287. flags += newFlags;
  2288. }
  2289. }
  2290. void cmLocalGenerator::AppendFlags(
  2291. std::string& flags, const std::vector<BT<std::string>>& newFlags) const
  2292. {
  2293. for (BT<std::string> const& flag : newFlags) {
  2294. this->AppendFlags(flags, flag.Value);
  2295. }
  2296. }
  2297. void cmLocalGenerator::AppendFlagEscape(std::string& flags,
  2298. const std::string& rawFlag) const
  2299. {
  2300. this->AppendFlags(
  2301. flags,
  2302. this->EscapeForShell(rawFlag, false, false, false, this->IsNinjaMulti()));
  2303. }
  2304. void cmLocalGenerator::AddISPCDependencies(cmGeneratorTarget* target)
  2305. {
  2306. std::vector<std::string> enabledLanguages =
  2307. this->GetState()->GetEnabledLanguages();
  2308. if (std::find(enabledLanguages.begin(), enabledLanguages.end(), "ISPC") ==
  2309. enabledLanguages.end()) {
  2310. return;
  2311. }
  2312. cmValue ispcHeaderSuffixProp = target->GetProperty("ISPC_HEADER_SUFFIX");
  2313. assert(ispcHeaderSuffixProp);
  2314. std::vector<std::string> ispcArchSuffixes =
  2315. detail::ComputeISPCObjectSuffixes(target);
  2316. const bool extra_objects = (ispcArchSuffixes.size() > 1);
  2317. std::vector<std::string> configsList =
  2318. this->Makefile->GetGeneratorConfigs(cmMakefile::IncludeEmptyConfig);
  2319. for (std::string const& config : configsList) {
  2320. std::string rootObjectDir = target->GetObjectDirectory(config);
  2321. std::string headerDir = rootObjectDir;
  2322. if (cmValue prop = target->GetProperty("ISPC_HEADER_DIRECTORY")) {
  2323. headerDir = cmSystemTools::CollapseFullPath(
  2324. cmStrCat(this->GetBinaryDirectory(), '/', *prop));
  2325. }
  2326. std::vector<cmSourceFile*> sources;
  2327. target->GetSourceFiles(sources, config);
  2328. // build up the list of ispc headers and extra objects that this target is
  2329. // generating
  2330. for (cmSourceFile const* sf : sources) {
  2331. // Generate this object file's rule file.
  2332. const std::string& lang = sf->GetLanguage();
  2333. if (lang == "ISPC") {
  2334. std::string const& objectName = target->GetObjectName(sf);
  2335. // Drop both ".obj" and the source file extension
  2336. std::string ispcSource =
  2337. cmSystemTools::GetFilenameWithoutLastExtension(objectName);
  2338. ispcSource =
  2339. cmSystemTools::GetFilenameWithoutLastExtension(ispcSource);
  2340. auto headerPath =
  2341. cmStrCat(headerDir, '/', ispcSource, *ispcHeaderSuffixProp);
  2342. target->AddISPCGeneratedHeader(headerPath, config);
  2343. if (extra_objects) {
  2344. std::vector<std::string> objs = detail::ComputeISPCExtraObjects(
  2345. objectName, rootObjectDir, ispcArchSuffixes);
  2346. target->AddISPCGeneratedObject(std::move(objs), config);
  2347. }
  2348. }
  2349. }
  2350. }
  2351. }
  2352. void cmLocalGenerator::AddPchDependencies(cmGeneratorTarget* target)
  2353. {
  2354. std::vector<std::string> configsList =
  2355. this->Makefile->GetGeneratorConfigs(cmMakefile::IncludeEmptyConfig);
  2356. for (std::string const& config : configsList) {
  2357. // FIXME: Refactor collection of sources to not evaluate object
  2358. // libraries.
  2359. std::vector<cmSourceFile*> sources;
  2360. target->GetSourceFiles(sources, config);
  2361. const std::string configUpper = cmSystemTools::UpperCase(config);
  2362. static const std::array<std::string, 4> langs = { { "C", "CXX", "OBJC",
  2363. "OBJCXX" } };
  2364. std::set<std::string> pchLangSet;
  2365. if (this->GetGlobalGenerator()->IsXcode()) {
  2366. for (const std::string& lang : langs) {
  2367. const std::string pchHeader = target->GetPchHeader(config, lang, "");
  2368. if (!pchHeader.empty()) {
  2369. pchLangSet.emplace(lang);
  2370. }
  2371. }
  2372. }
  2373. for (const std::string& lang : langs) {
  2374. auto langSources = std::count_if(
  2375. sources.begin(), sources.end(), [lang](cmSourceFile* sf) {
  2376. return lang == sf->GetLanguage() &&
  2377. !sf->GetProperty("SKIP_PRECOMPILE_HEADERS");
  2378. });
  2379. if (langSources == 0) {
  2380. continue;
  2381. }
  2382. std::vector<std::string> architectures;
  2383. if (!this->GetGlobalGenerator()->IsXcode()) {
  2384. architectures = target->GetAppleArchs(config, lang);
  2385. }
  2386. if (architectures.empty()) {
  2387. architectures.emplace_back();
  2388. } else {
  2389. std::string useMultiArchPch;
  2390. for (const std::string& arch : architectures) {
  2391. const std::string pchHeader =
  2392. target->GetPchHeader(config, lang, arch);
  2393. if (!pchHeader.empty()) {
  2394. useMultiArchPch = cmStrCat(useMultiArchPch, ";-Xarch_", arch,
  2395. ";-include", pchHeader);
  2396. }
  2397. }
  2398. if (!useMultiArchPch.empty()) {
  2399. target->Target->AppendProperty(
  2400. cmStrCat(lang, "_COMPILE_OPTIONS_USE_PCH"),
  2401. cmStrCat("$<$<CONFIG:", config, ">:", useMultiArchPch, ">"));
  2402. }
  2403. }
  2404. for (const std::string& arch : architectures) {
  2405. const std::string pchSource = target->GetPchSource(config, lang, arch);
  2406. const std::string pchHeader = target->GetPchHeader(config, lang, arch);
  2407. if (pchSource.empty() || pchHeader.empty()) {
  2408. if (this->GetGlobalGenerator()->IsXcode() && !pchLangSet.empty()) {
  2409. for (auto* sf : sources) {
  2410. const auto sourceLanguage = sf->GetLanguage();
  2411. if (!sourceLanguage.empty() &&
  2412. pchLangSet.find(sourceLanguage) == pchLangSet.end()) {
  2413. sf->SetProperty("SKIP_PRECOMPILE_HEADERS", "ON");
  2414. }
  2415. }
  2416. }
  2417. continue;
  2418. }
  2419. cmValue pchExtension =
  2420. this->Makefile->GetDefinition("CMAKE_PCH_EXTENSION");
  2421. if (pchExtension.IsEmpty()) {
  2422. continue;
  2423. }
  2424. cmValue ReuseFrom =
  2425. target->GetProperty("PRECOMPILE_HEADERS_REUSE_FROM");
  2426. auto* pch_sf = this->Makefile->GetOrCreateSource(
  2427. pchSource, false, cmSourceFileLocationKind::Known);
  2428. // PCH sources should never be scanned as they cannot contain C++
  2429. // module references.
  2430. pch_sf->SetProperty("CXX_SCAN_FOR_MODULES", "0");
  2431. if (!this->GetGlobalGenerator()->IsXcode()) {
  2432. if (!ReuseFrom) {
  2433. target->AddSource(pchSource, true);
  2434. }
  2435. const std::string pchFile = target->GetPchFile(config, lang, arch);
  2436. // Exclude the pch files from linking
  2437. if (this->Makefile->IsOn("CMAKE_LINK_PCH")) {
  2438. if (!ReuseFrom) {
  2439. pch_sf->AppendProperty(
  2440. "OBJECT_OUTPUTS",
  2441. cmStrCat("$<$<CONFIG:", config, ">:", pchFile, ">"));
  2442. } else {
  2443. auto* reuseTarget =
  2444. this->GlobalGenerator->FindGeneratorTarget(*ReuseFrom);
  2445. if (this->Makefile->IsOn("CMAKE_PCH_COPY_COMPILE_PDB")) {
  2446. const std::string compilerId =
  2447. this->Makefile->GetSafeDefinition(
  2448. cmStrCat("CMAKE_", lang, "_COMPILER_ID"));
  2449. const std::string compilerVersion =
  2450. this->Makefile->GetSafeDefinition(
  2451. cmStrCat("CMAKE_", lang, "_COMPILER_VERSION"));
  2452. const std::string langFlags =
  2453. this->Makefile->GetSafeDefinition(
  2454. cmStrCat("CMAKE_", lang, "_FLAGS_", configUpper));
  2455. bool editAndContinueDebugInfo = false;
  2456. bool programDatabaseDebugInfo = false;
  2457. cm::optional<std::string> msvcDebugInformationFormat =
  2458. this->GetMSVCDebugFormatName(config, target);
  2459. if (msvcDebugInformationFormat &&
  2460. !msvcDebugInformationFormat->empty()) {
  2461. editAndContinueDebugInfo =
  2462. *msvcDebugInformationFormat == "EditAndContinue";
  2463. programDatabaseDebugInfo =
  2464. *msvcDebugInformationFormat == "ProgramDatabase";
  2465. } else {
  2466. editAndContinueDebugInfo =
  2467. langFlags.find("/ZI") != std::string::npos ||
  2468. langFlags.find("-ZI") != std::string::npos;
  2469. programDatabaseDebugInfo =
  2470. langFlags.find("/Zi") != std::string::npos ||
  2471. langFlags.find("-Zi") != std::string::npos;
  2472. }
  2473. // MSVC 2008 is producing both .pdb and .idb files with /Zi.
  2474. bool msvc2008OrLess =
  2475. cmSystemTools::VersionCompare(cmSystemTools::OP_LESS,
  2476. compilerVersion, "16.0") &&
  2477. compilerId == "MSVC";
  2478. // but not when used via toolset -Tv90
  2479. if (this->Makefile->GetSafeDefinition(
  2480. "CMAKE_VS_PLATFORM_TOOLSET") == "v90") {
  2481. msvc2008OrLess = false;
  2482. }
  2483. if (editAndContinueDebugInfo || msvc2008OrLess) {
  2484. this->CopyPchCompilePdb(config, lang, target, *ReuseFrom,
  2485. reuseTarget, { ".pdb", ".idb" });
  2486. } else if (programDatabaseDebugInfo) {
  2487. this->CopyPchCompilePdb(config, lang, target, *ReuseFrom,
  2488. reuseTarget, { ".pdb" });
  2489. }
  2490. }
  2491. // Link to the pch object file
  2492. std::string pchSourceObj =
  2493. reuseTarget->GetPchFileObject(config, lang, arch);
  2494. if (target->GetType() != cmStateEnums::OBJECT_LIBRARY) {
  2495. std::string linkerProperty = "LINK_FLAGS_";
  2496. if (target->GetType() == cmStateEnums::STATIC_LIBRARY) {
  2497. linkerProperty = "STATIC_LIBRARY_FLAGS_";
  2498. }
  2499. target->Target->AppendProperty(
  2500. cmStrCat(linkerProperty, configUpper),
  2501. cmStrCat(" ",
  2502. this->ConvertToOutputFormat(pchSourceObj, SHELL)),
  2503. cm::nullopt, true);
  2504. } else if (reuseTarget->GetType() ==
  2505. cmStateEnums::OBJECT_LIBRARY) {
  2506. // FIXME: This can propagate more than one level, unlike
  2507. // the rest of the object files in an object library.
  2508. // Find another way to do this.
  2509. target->Target->AppendProperty(
  2510. "INTERFACE_LINK_LIBRARIES",
  2511. cmStrCat("$<$<CONFIG:", config,
  2512. ">:$<LINK_ONLY:", pchSourceObj, ">>"));
  2513. // We updated the link interface, so ensure it is recomputed.
  2514. target->ClearLinkInterfaceCache();
  2515. }
  2516. }
  2517. } else {
  2518. pch_sf->SetProperty("PCH_EXTENSION", pchExtension);
  2519. }
  2520. // Add pchHeader to source files, which will
  2521. // be grouped as "Precompile Header File"
  2522. auto* pchHeader_sf = this->Makefile->GetOrCreateSource(
  2523. pchHeader, false, cmSourceFileLocationKind::Known);
  2524. std::string err;
  2525. pchHeader_sf->ResolveFullPath(&err);
  2526. if (!err.empty()) {
  2527. std::ostringstream msg;
  2528. msg << "Unable to resolve full path of PCH-header '" << pchHeader
  2529. << "' assigned to target " << target->GetName()
  2530. << ", although its path is supposed to be known!";
  2531. this->IssueMessage(MessageType::FATAL_ERROR, msg.str());
  2532. }
  2533. target->AddSource(pchHeader);
  2534. }
  2535. }
  2536. }
  2537. }
  2538. }
  2539. void cmLocalGenerator::CopyPchCompilePdb(
  2540. const std::string& config, const std::string& language,
  2541. cmGeneratorTarget* target, const std::string& ReuseFrom,
  2542. cmGeneratorTarget* reuseTarget, const std::vector<std::string>& extensions)
  2543. {
  2544. const std::string pdb_prefix =
  2545. this->GetGlobalGenerator()->IsMultiConfig() ? cmStrCat(config, "/") : "";
  2546. const std::string target_compile_pdb_dir =
  2547. cmStrCat(target->GetLocalGenerator()->GetCurrentBinaryDirectory(), "/",
  2548. target->GetName(), ".dir/");
  2549. const std::string copy_script = cmStrCat(
  2550. target_compile_pdb_dir, "copy_idb_pdb_", config.c_str(), ".cmake");
  2551. cmGeneratedFileStream file(copy_script);
  2552. file << "# CMake generated file\n";
  2553. file << "# The compiler generated pdb file needs to be written to disk\n"
  2554. << "# by mspdbsrv. The foreach retry loop is needed to make sure\n"
  2555. << "# the pdb file is ready to be copied.\n\n";
  2556. for (auto const& extension : extensions) {
  2557. const std::string from_file =
  2558. cmStrCat(reuseTarget->GetLocalGenerator()->GetCurrentBinaryDirectory(),
  2559. "/", ReuseFrom, ".dir/${PDB_PREFIX}", ReuseFrom, extension);
  2560. const std::string to_dir =
  2561. cmStrCat(target->GetLocalGenerator()->GetCurrentBinaryDirectory(), "/",
  2562. target->GetName(), ".dir/${PDB_PREFIX}");
  2563. const std::string to_file = cmStrCat(to_dir, ReuseFrom, extension);
  2564. std::string dest_file = to_file;
  2565. std::string const& prefix = target->GetSafeProperty("PREFIX");
  2566. if (!prefix.empty()) {
  2567. dest_file = cmStrCat(to_dir, prefix, ReuseFrom, extension);
  2568. }
  2569. file << "foreach(retry RANGE 1 30)\n";
  2570. file << " if (EXISTS \"" << from_file << "\" AND (NOT EXISTS \""
  2571. << dest_file << "\" OR NOT \"" << dest_file << " \" IS_NEWER_THAN \""
  2572. << from_file << "\"))\n";
  2573. file << " execute_process(COMMAND ${CMAKE_COMMAND} -E copy";
  2574. file << " \"" << from_file << "\""
  2575. << " \"" << to_dir << "\" RESULT_VARIABLE result "
  2576. << " ERROR_QUIET)\n";
  2577. file << " if (NOT result EQUAL 0)\n"
  2578. << " execute_process(COMMAND ${CMAKE_COMMAND}"
  2579. << " -E sleep 1)\n"
  2580. << " else()\n";
  2581. if (!prefix.empty()) {
  2582. file << " file(REMOVE \"" << dest_file << "\")\n";
  2583. file << " file(RENAME \"" << to_file << "\" \"" << dest_file << "\")\n";
  2584. }
  2585. file << " break()\n"
  2586. << " endif()\n";
  2587. file << " elseif(NOT EXISTS \"" << from_file << "\")\n"
  2588. << " execute_process(COMMAND ${CMAKE_COMMAND}"
  2589. << " -E sleep 1)\n"
  2590. << " endif()\n";
  2591. file << "endforeach()\n";
  2592. }
  2593. auto configGenex = [&](cm::string_view expr) -> std::string {
  2594. if (this->GetGlobalGenerator()->IsMultiConfig()) {
  2595. return cmStrCat("$<$<CONFIG:", config, ">:", expr, ">");
  2596. }
  2597. return std::string(expr);
  2598. };
  2599. cmCustomCommandLines commandLines = cmMakeSingleCommandLine(
  2600. { configGenex(cmSystemTools::GetCMakeCommand()),
  2601. configGenex(cmStrCat("-DPDB_PREFIX=", pdb_prefix)), configGenex("-P"),
  2602. configGenex(copy_script) });
  2603. const char* no_message = "";
  2604. std::vector<std::string> outputs;
  2605. outputs.push_back(configGenex(
  2606. cmStrCat(target_compile_pdb_dir, pdb_prefix, ReuseFrom, ".pdb")));
  2607. auto cc = cm::make_unique<cmCustomCommand>();
  2608. cc->SetCommandLines(commandLines);
  2609. cc->SetComment(no_message);
  2610. cc->SetStdPipesUTF8(true);
  2611. cc->AppendDepends({ reuseTarget->GetPchFile(config, language) });
  2612. if (this->GetGlobalGenerator()->IsVisualStudio()) {
  2613. cc->SetByproducts(outputs);
  2614. this->AddCustomCommandToTarget(
  2615. target->GetName(), cmCustomCommandType::PRE_BUILD, std::move(cc),
  2616. cmObjectLibraryCommands::Accept);
  2617. } else {
  2618. cc->SetOutputs(outputs);
  2619. cmSourceFile* copy_rule = this->AddCustomCommandToOutput(std::move(cc));
  2620. copy_rule->SetProperty("CXX_SCAN_FOR_MODULES", "0");
  2621. if (copy_rule) {
  2622. target->AddSource(copy_rule->ResolveFullPath());
  2623. }
  2624. }
  2625. target->Target->SetProperty("COMPILE_PDB_OUTPUT_DIRECTORY",
  2626. target_compile_pdb_dir);
  2627. }
  2628. cm::optional<std::string> cmLocalGenerator::GetMSVCDebugFormatName(
  2629. std::string const& config, cmGeneratorTarget const* target)
  2630. {
  2631. // MSVC debug information format selection is activated by the presence
  2632. // of a default whether or not it is overridden by a property.
  2633. cm::optional<std::string> msvcDebugInformationFormat;
  2634. cmValue msvcDebugInformationFormatDefault = this->Makefile->GetDefinition(
  2635. "CMAKE_MSVC_DEBUG_INFORMATION_FORMAT_DEFAULT");
  2636. if (cmNonempty(msvcDebugInformationFormatDefault)) {
  2637. cmValue msvcDebugInformationFormatValue =
  2638. target->GetProperty("MSVC_DEBUG_INFORMATION_FORMAT");
  2639. if (!msvcDebugInformationFormatValue) {
  2640. msvcDebugInformationFormatValue = msvcDebugInformationFormatDefault;
  2641. }
  2642. msvcDebugInformationFormat = cmGeneratorExpression::Evaluate(
  2643. *msvcDebugInformationFormatValue, this, config, target);
  2644. }
  2645. return msvcDebugInformationFormat;
  2646. }
  2647. namespace {
  2648. inline void RegisterUnitySources(cmGeneratorTarget* target, cmSourceFile* sf,
  2649. std::string const& filename)
  2650. {
  2651. target->AddSourceFileToUnityBatch(sf->ResolveFullPath());
  2652. sf->SetProperty("UNITY_SOURCE_FILE", filename);
  2653. }
  2654. }
  2655. cmLocalGenerator::UnitySource cmLocalGenerator::WriteUnitySource(
  2656. cmGeneratorTarget* target, std::vector<std::string> const& configs,
  2657. cmRange<std::vector<UnityBatchedSource>::const_iterator> sources,
  2658. cmValue beforeInclude, cmValue afterInclude, std::string filename) const
  2659. {
  2660. cmValue uniqueIdName = target->GetProperty("UNITY_BUILD_UNIQUE_ID");
  2661. cmGeneratedFileStream file(
  2662. filename, false, target->GetGlobalGenerator()->GetMakefileEncoding());
  2663. file.SetCopyIfDifferent(true);
  2664. file << "/* generated by CMake */\n\n";
  2665. bool perConfig = false;
  2666. for (UnityBatchedSource const& ubs : sources) {
  2667. cm::optional<std::string> cond;
  2668. if (ubs.Configs.size() != configs.size()) {
  2669. perConfig = true;
  2670. cond = std::string();
  2671. cm::string_view sep;
  2672. for (size_t ci : ubs.Configs) {
  2673. cond = cmStrCat(*cond, sep, "defined(CMAKE_UNITY_CONFIG_",
  2674. cmSystemTools::UpperCase(configs[ci]), ")");
  2675. sep = " || "_s;
  2676. }
  2677. }
  2678. RegisterUnitySources(target, ubs.Source, filename);
  2679. WriteUnitySourceInclude(file, cond, ubs.Source->ResolveFullPath(),
  2680. beforeInclude, afterInclude, uniqueIdName);
  2681. }
  2682. return UnitySource(std::move(filename), perConfig);
  2683. }
  2684. void cmLocalGenerator::WriteUnitySourceInclude(
  2685. std::ostream& unity_file, cm::optional<std::string> const& cond,
  2686. std::string const& sf_full_path, cmValue beforeInclude, cmValue afterInclude,
  2687. cmValue uniqueIdName) const
  2688. {
  2689. if (cond) {
  2690. unity_file << "#if " << *cond << "\n";
  2691. }
  2692. if (cmNonempty(uniqueIdName)) {
  2693. std::string pathToHash;
  2694. auto PathEqOrSubDir = [](std::string const& a, std::string const& b) {
  2695. return (cmSystemTools::ComparePath(a, b) ||
  2696. cmSystemTools::IsSubDirectory(a, b));
  2697. };
  2698. const auto path = cmSystemTools::GetFilenamePath(sf_full_path);
  2699. if (PathEqOrSubDir(path, this->GetBinaryDirectory())) {
  2700. pathToHash = "BLD_" +
  2701. cmSystemTools::RelativePath(this->GetBinaryDirectory(), sf_full_path);
  2702. } else if (PathEqOrSubDir(path, this->GetSourceDirectory())) {
  2703. pathToHash = "SRC_" +
  2704. cmSystemTools::RelativePath(this->GetSourceDirectory(), sf_full_path);
  2705. } else {
  2706. pathToHash = "ABS_" + sf_full_path;
  2707. }
  2708. cmCryptoHash hasher(cmCryptoHash::AlgoMD5);
  2709. unity_file << "/* " << pathToHash << " */\n"
  2710. << "#undef " << *uniqueIdName << "\n"
  2711. << "#define " << *uniqueIdName << " unity_"
  2712. << hasher.HashString(pathToHash) << "\n";
  2713. }
  2714. if (beforeInclude) {
  2715. unity_file << *beforeInclude << "\n";
  2716. }
  2717. unity_file << "/* NOLINTNEXTLINE(bugprone-suspicious-include) */\n";
  2718. unity_file << "#include \"" << sf_full_path << "\"\n";
  2719. if (afterInclude) {
  2720. unity_file << *afterInclude << "\n";
  2721. }
  2722. if (cond) {
  2723. unity_file << "#endif\n";
  2724. }
  2725. unity_file << "\n";
  2726. }
  2727. std::vector<cmLocalGenerator::UnitySource>
  2728. cmLocalGenerator::AddUnityFilesModeAuto(
  2729. cmGeneratorTarget* target, std::string const& lang,
  2730. std::vector<std::string> const& configs,
  2731. std::vector<UnityBatchedSource> const& filtered_sources,
  2732. cmValue beforeInclude, cmValue afterInclude,
  2733. std::string const& filename_base, size_t batchSize)
  2734. {
  2735. if (batchSize == 0) {
  2736. batchSize = filtered_sources.size();
  2737. }
  2738. std::vector<UnitySource> unity_files;
  2739. for (size_t itemsLeft = filtered_sources.size(), chunk, batch = 0;
  2740. itemsLeft > 0; itemsLeft -= chunk, ++batch) {
  2741. chunk = std::min(itemsLeft, batchSize);
  2742. std::string filename = cmStrCat(filename_base, "unity_", batch,
  2743. (lang == "C") ? "_c.c" : "_cxx.cxx");
  2744. auto const begin = filtered_sources.begin() + batch * batchSize;
  2745. auto const end = begin + chunk;
  2746. unity_files.emplace_back(this->WriteUnitySource(
  2747. target, configs, cmMakeRange(begin, end), beforeInclude, afterInclude,
  2748. std::move(filename)));
  2749. }
  2750. return unity_files;
  2751. }
  2752. std::vector<cmLocalGenerator::UnitySource>
  2753. cmLocalGenerator::AddUnityFilesModeGroup(
  2754. cmGeneratorTarget* target, std::string const& lang,
  2755. std::vector<std::string> const& configs,
  2756. std::vector<UnityBatchedSource> const& filtered_sources,
  2757. cmValue beforeInclude, cmValue afterInclude,
  2758. std::string const& filename_base)
  2759. {
  2760. std::vector<UnitySource> unity_files;
  2761. // sources organized by group name. Drop any source
  2762. // without a group
  2763. std::unordered_map<std::string, std::vector<UnityBatchedSource>>
  2764. explicit_mapping;
  2765. for (UnityBatchedSource const& ubs : filtered_sources) {
  2766. if (cmValue value = ubs.Source->GetProperty("UNITY_GROUP")) {
  2767. auto i = explicit_mapping.find(*value);
  2768. if (i == explicit_mapping.end()) {
  2769. std::vector<UnityBatchedSource> sources{ ubs };
  2770. explicit_mapping.emplace(*value, std::move(sources));
  2771. } else {
  2772. i->second.emplace_back(ubs);
  2773. }
  2774. }
  2775. }
  2776. for (auto const& item : explicit_mapping) {
  2777. auto const& name = item.first;
  2778. std::string filename = cmStrCat(filename_base, "unity_", name,
  2779. (lang == "C") ? "_c.c" : "_cxx.cxx");
  2780. unity_files.emplace_back(this->WriteUnitySource(
  2781. target, configs, cmMakeRange(item.second), beforeInclude, afterInclude,
  2782. std::move(filename)));
  2783. }
  2784. return unity_files;
  2785. }
  2786. void cmLocalGenerator::AddUnityBuild(cmGeneratorTarget* target)
  2787. {
  2788. if (!target->GetPropertyAsBool("UNITY_BUILD")) {
  2789. return;
  2790. }
  2791. std::vector<UnityBatchedSource> unitySources;
  2792. std::vector<std::string> configs =
  2793. this->Makefile->GetGeneratorConfigs(cmMakefile::IncludeEmptyConfig);
  2794. std::map<cmSourceFile const*, size_t> index;
  2795. for (size_t ci = 0; ci < configs.size(); ++ci) {
  2796. // FIXME: Refactor collection of sources to not evaluate object libraries.
  2797. std::vector<cmSourceFile*> sources;
  2798. target->GetSourceFiles(sources, configs[ci]);
  2799. for (cmSourceFile* sf : sources) {
  2800. // Files which need C++ scanning cannot participate in unity builds as
  2801. // there is a single place in TUs that may perform module-dependency bits
  2802. // and a unity source cannot `#include` them in-order and represent a
  2803. // valid TU.
  2804. if (sf->GetLanguage() == "CXX"_s &&
  2805. target->NeedDyndepForSource("CXX", configs[ci], sf)) {
  2806. continue;
  2807. }
  2808. auto mi = index.find(sf);
  2809. if (mi == index.end()) {
  2810. unitySources.emplace_back(sf);
  2811. std::map<cmSourceFile const*, size_t>::value_type entry(
  2812. sf, unitySources.size() - 1);
  2813. mi = index.insert(entry).first;
  2814. }
  2815. unitySources[mi->second].Configs.emplace_back(ci);
  2816. }
  2817. }
  2818. std::string filename_base =
  2819. cmStrCat(this->GetCurrentBinaryDirectory(), "/CMakeFiles/",
  2820. target->GetName(), ".dir/Unity/");
  2821. cmValue batchSizeString = target->GetProperty("UNITY_BUILD_BATCH_SIZE");
  2822. const size_t unityBatchSize = batchSizeString
  2823. ? static_cast<size_t>(std::atoi(batchSizeString->c_str()))
  2824. : 0;
  2825. cmValue beforeInclude =
  2826. target->GetProperty("UNITY_BUILD_CODE_BEFORE_INCLUDE");
  2827. cmValue afterInclude = target->GetProperty("UNITY_BUILD_CODE_AFTER_INCLUDE");
  2828. cmValue unityMode = target->GetProperty("UNITY_BUILD_MODE");
  2829. for (std::string lang : { "C", "CXX" }) {
  2830. std::vector<UnityBatchedSource> filtered_sources;
  2831. std::copy_if(unitySources.begin(), unitySources.end(),
  2832. std::back_inserter(filtered_sources),
  2833. [&](UnityBatchedSource const& ubs) -> bool {
  2834. cmSourceFile* sf = ubs.Source;
  2835. return sf->GetLanguage() == lang &&
  2836. !sf->GetPropertyAsBool("SKIP_UNITY_BUILD_INCLUSION") &&
  2837. !sf->GetPropertyAsBool("HEADER_FILE_ONLY") &&
  2838. !sf->GetProperty("COMPILE_OPTIONS") &&
  2839. !sf->GetProperty("COMPILE_DEFINITIONS") &&
  2840. !sf->GetProperty("COMPILE_FLAGS") &&
  2841. !sf->GetProperty("INCLUDE_DIRECTORIES");
  2842. });
  2843. std::vector<UnitySource> unity_files;
  2844. if (!unityMode || *unityMode == "BATCH") {
  2845. unity_files = AddUnityFilesModeAuto(
  2846. target, lang, configs, filtered_sources, beforeInclude, afterInclude,
  2847. filename_base, unityBatchSize);
  2848. } else if (unityMode && *unityMode == "GROUP") {
  2849. unity_files =
  2850. AddUnityFilesModeGroup(target, lang, configs, filtered_sources,
  2851. beforeInclude, afterInclude, filename_base);
  2852. } else {
  2853. // unity mode is set to an unsupported value
  2854. std::string e("Invalid UNITY_BUILD_MODE value of " + *unityMode +
  2855. " assigned to target " + target->GetName() +
  2856. ". Acceptable values are BATCH and GROUP.");
  2857. this->IssueMessage(MessageType::FATAL_ERROR, e);
  2858. }
  2859. for (UnitySource const& file : unity_files) {
  2860. auto* unity = this->GetMakefile()->GetOrCreateSource(file.Path);
  2861. target->AddSource(file.Path, true);
  2862. unity->SetProperty("SKIP_UNITY_BUILD_INCLUSION", "ON");
  2863. unity->SetProperty("UNITY_SOURCE_FILE", file.Path);
  2864. unity->SetProperty("CXX_SCAN_FOR_MODULES", "0");
  2865. if (file.PerConfig) {
  2866. unity->SetProperty("COMPILE_DEFINITIONS",
  2867. "CMAKE_UNITY_CONFIG_$<UPPER_CASE:$<CONFIG>>");
  2868. }
  2869. }
  2870. }
  2871. }
  2872. void cmLocalGenerator::AppendIPOLinkerFlags(std::string& flags,
  2873. cmGeneratorTarget* target,
  2874. const std::string& config,
  2875. const std::string& lang)
  2876. {
  2877. if (!target->IsIPOEnabled(lang, config)) {
  2878. return;
  2879. }
  2880. switch (target->GetType()) {
  2881. case cmStateEnums::EXECUTABLE:
  2882. case cmStateEnums::SHARED_LIBRARY:
  2883. case cmStateEnums::MODULE_LIBRARY:
  2884. break;
  2885. default:
  2886. return;
  2887. }
  2888. const std::string name = "CMAKE_" + lang + "_LINK_OPTIONS_IPO";
  2889. cmValue rawFlagsList = this->Makefile->GetDefinition(name);
  2890. if (!rawFlagsList) {
  2891. return;
  2892. }
  2893. cmList flagsList{ *rawFlagsList };
  2894. for (std::string const& o : flagsList) {
  2895. this->AppendFlagEscape(flags, o);
  2896. }
  2897. }
  2898. void cmLocalGenerator::AppendPositionIndependentLinkerFlags(
  2899. std::string& flags, cmGeneratorTarget* target, const std::string& config,
  2900. const std::string& lang)
  2901. {
  2902. // For now, only EXECUTABLE is concerned
  2903. if (target->GetType() != cmStateEnums::EXECUTABLE) {
  2904. return;
  2905. }
  2906. const char* PICValue = target->GetLinkPIEProperty(config);
  2907. if (PICValue == nullptr) {
  2908. // POSITION_INDEPENDENT_CODE is not set
  2909. return;
  2910. }
  2911. const std::string mode = cmIsOn(PICValue) ? "PIE" : "NO_PIE";
  2912. std::string supported = "CMAKE_" + lang + "_LINK_" + mode + "_SUPPORTED";
  2913. if (cmIsOff(this->Makefile->GetDefinition(supported))) {
  2914. return;
  2915. }
  2916. std::string name = "CMAKE_" + lang + "_LINK_OPTIONS_" + mode;
  2917. auto pieFlags = this->Makefile->GetSafeDefinition(name);
  2918. if (pieFlags.empty()) {
  2919. return;
  2920. }
  2921. cmList flagsList{ pieFlags };
  2922. for (const auto& flag : flagsList) {
  2923. this->AppendFlagEscape(flags, flag);
  2924. }
  2925. }
  2926. void cmLocalGenerator::AppendDependencyInfoLinkerFlags(
  2927. std::string& flags, cmGeneratorTarget* target, const std::string& config,
  2928. const std::string& linkLanguage)
  2929. {
  2930. if (!this->GetGlobalGenerator()->SupportsLinkerDependencyFile() ||
  2931. !target->HasLinkDependencyFile(config)) {
  2932. return;
  2933. }
  2934. auto depFlag = *this->Makefile->GetDefinition(
  2935. cmStrCat("CMAKE_", linkLanguage, "_LINKER_DEPFILE_FLAGS"));
  2936. if (depFlag.empty()) {
  2937. return;
  2938. }
  2939. auto depFile = this->ConvertToOutputFormat(
  2940. this->MaybeRelativeToWorkDir(this->GetLinkDependencyFile(target, config)),
  2941. cmOutputConverter::SHELL);
  2942. auto rulePlaceholderExpander = this->CreateRulePlaceholderExpander();
  2943. cmRulePlaceholderExpander::RuleVariables linkDepsVariables;
  2944. linkDepsVariables.DependencyFile = depFile.c_str();
  2945. rulePlaceholderExpander->ExpandRuleVariables(this, depFlag,
  2946. linkDepsVariables);
  2947. auto depFlags = cmExpandListWithBacktrace(depFlag);
  2948. target->ResolveLinkerWrapper(depFlags, linkLanguage);
  2949. this->AppendFlags(flags, depFlags);
  2950. }
  2951. std::string cmLocalGenerator::GetLinkDependencyFile(
  2952. cmGeneratorTarget* /*target*/, const std::string& /*config*/) const
  2953. {
  2954. return "link.d";
  2955. }
  2956. void cmLocalGenerator::AppendModuleDefinitionFlag(
  2957. std::string& flags, cmGeneratorTarget const* target,
  2958. cmLinkLineComputer* linkLineComputer, std::string const& config)
  2959. {
  2960. cmGeneratorTarget::ModuleDefinitionInfo const* mdi =
  2961. target->GetModuleDefinitionInfo(config);
  2962. if (!mdi || mdi->DefFile.empty()) {
  2963. return;
  2964. }
  2965. cmValue defFileFlag =
  2966. this->Makefile->GetDefinition("CMAKE_LINK_DEF_FILE_FLAG");
  2967. if (!defFileFlag) {
  2968. return;
  2969. }
  2970. // Append the flag and value. Use ConvertToLinkReference to help
  2971. // vs6's "cl -link" pass it to the linker.
  2972. std::string flag =
  2973. cmStrCat(*defFileFlag,
  2974. this->ConvertToOutputFormat(
  2975. linkLineComputer->ConvertToLinkReference(mdi->DefFile),
  2976. cmOutputConverter::SHELL));
  2977. this->AppendFlags(flags, flag);
  2978. }
  2979. bool cmLocalGenerator::AppendLWYUFlags(std::string& flags,
  2980. const cmGeneratorTarget* target,
  2981. const std::string& lang)
  2982. {
  2983. auto useLWYU = target->GetPropertyAsBool("LINK_WHAT_YOU_USE") &&
  2984. (target->GetType() == cmStateEnums::TargetType::EXECUTABLE ||
  2985. target->GetType() == cmStateEnums::TargetType::SHARED_LIBRARY ||
  2986. target->GetType() == cmStateEnums::TargetType::MODULE_LIBRARY);
  2987. if (useLWYU) {
  2988. const auto& lwyuFlag = this->GetMakefile()->GetSafeDefinition(
  2989. cmStrCat("CMAKE_", lang, "_LINK_WHAT_YOU_USE_FLAG"));
  2990. useLWYU = !lwyuFlag.empty();
  2991. if (useLWYU) {
  2992. std::vector<BT<std::string>> lwyuOpts;
  2993. lwyuOpts.emplace_back(lwyuFlag);
  2994. this->AppendFlags(flags, target->ResolveLinkerWrapper(lwyuOpts, lang));
  2995. }
  2996. }
  2997. return useLWYU;
  2998. }
  2999. void cmLocalGenerator::AppendCompileOptions(std::string& options,
  3000. std::string const& options_list,
  3001. const char* regex) const
  3002. {
  3003. // Short-circuit if there are no options.
  3004. if (options_list.empty()) {
  3005. return;
  3006. }
  3007. // Expand the list of options.
  3008. cmList options_vec{ options_list };
  3009. this->AppendCompileOptions(options, options_vec, regex);
  3010. }
  3011. void cmLocalGenerator::AppendCompileOptions(
  3012. std::string& options, const std::vector<std::string>& options_vec,
  3013. const char* regex) const
  3014. {
  3015. if (regex != nullptr) {
  3016. // Filter flags upon specified reges.
  3017. cmsys::RegularExpression r(regex);
  3018. for (std::string const& opt : options_vec) {
  3019. if (r.find(opt)) {
  3020. this->AppendFlagEscape(options, opt);
  3021. }
  3022. }
  3023. } else {
  3024. for (std::string const& opt : options_vec) {
  3025. this->AppendFlagEscape(options, opt);
  3026. }
  3027. }
  3028. }
  3029. void cmLocalGenerator::AppendCompileOptions(
  3030. std::vector<BT<std::string>>& options,
  3031. const std::vector<BT<std::string>>& options_vec, const char* regex) const
  3032. {
  3033. if (regex != nullptr) {
  3034. // Filter flags upon specified regular expressions.
  3035. cmsys::RegularExpression r(regex);
  3036. for (BT<std::string> const& opt : options_vec) {
  3037. if (r.find(opt.Value)) {
  3038. std::string flag;
  3039. this->AppendFlagEscape(flag, opt.Value);
  3040. options.emplace_back(std::move(flag), opt.Backtrace);
  3041. }
  3042. }
  3043. } else {
  3044. for (BT<std::string> const& opt : options_vec) {
  3045. std::string flag;
  3046. this->AppendFlagEscape(flag, opt.Value);
  3047. options.emplace_back(std::move(flag), opt.Backtrace);
  3048. }
  3049. }
  3050. }
  3051. void cmLocalGenerator::AppendIncludeDirectories(
  3052. std::vector<std::string>& includes, const std::string& includes_list,
  3053. const cmSourceFile& sourceFile) const
  3054. {
  3055. // Short-circuit if there are no includes.
  3056. if (includes_list.empty()) {
  3057. return;
  3058. }
  3059. // Expand the list of includes.
  3060. cmList includes_vec{ includes_list };
  3061. this->AppendIncludeDirectories(includes, includes_vec, sourceFile);
  3062. }
  3063. void cmLocalGenerator::AppendIncludeDirectories(
  3064. std::vector<std::string>& includes,
  3065. const std::vector<std::string>& includes_vec,
  3066. const cmSourceFile& sourceFile) const
  3067. {
  3068. std::unordered_set<std::string> uniqueIncludes;
  3069. for (const std::string& include : includes_vec) {
  3070. if (!cmSystemTools::FileIsFullPath(include)) {
  3071. std::ostringstream e;
  3072. e << "Found relative path while evaluating include directories of "
  3073. "\""
  3074. << sourceFile.GetLocation().GetName() << "\":\n \"" << include
  3075. << "\"\n";
  3076. this->IssueMessage(MessageType::FATAL_ERROR, e.str());
  3077. return;
  3078. }
  3079. std::string inc = include;
  3080. if (!cmIsOff(inc)) {
  3081. cmSystemTools::ConvertToUnixSlashes(inc);
  3082. }
  3083. if (uniqueIncludes.insert(inc).second) {
  3084. includes.push_back(std::move(inc));
  3085. }
  3086. }
  3087. }
  3088. void cmLocalGenerator::AppendDefines(std::set<std::string>& defines,
  3089. std::string const& defines_list) const
  3090. {
  3091. std::set<BT<std::string>> tmp;
  3092. this->AppendDefines(tmp, cmExpandListWithBacktrace(defines_list));
  3093. for (BT<std::string> const& i : tmp) {
  3094. defines.emplace(i.Value);
  3095. }
  3096. }
  3097. void cmLocalGenerator::AppendDefines(std::set<BT<std::string>>& defines,
  3098. std::string const& defines_list) const
  3099. {
  3100. // Short-circuit if there are no definitions.
  3101. if (defines_list.empty()) {
  3102. return;
  3103. }
  3104. // Expand the list of definitions.
  3105. this->AppendDefines(defines, cmExpandListWithBacktrace(defines_list));
  3106. }
  3107. void cmLocalGenerator::AppendDefines(
  3108. std::set<BT<std::string>>& defines,
  3109. const std::vector<BT<std::string>>& defines_vec) const
  3110. {
  3111. for (BT<std::string> const& d : defines_vec) {
  3112. // Skip unsupported definitions.
  3113. if (!this->CheckDefinition(d.Value)) {
  3114. continue;
  3115. }
  3116. // remove any leading -D
  3117. if (cmHasLiteralPrefix(d.Value, "-D")) {
  3118. defines.emplace(d.Value.substr(2), d.Backtrace);
  3119. } else {
  3120. defines.insert(d);
  3121. }
  3122. }
  3123. }
  3124. void cmLocalGenerator::JoinDefines(const std::set<std::string>& defines,
  3125. std::string& definesString,
  3126. const std::string& lang)
  3127. {
  3128. // Lookup the define flag for the current language.
  3129. std::string dflag = "-D";
  3130. if (!lang.empty()) {
  3131. cmValue df =
  3132. this->Makefile->GetDefinition(cmStrCat("CMAKE_", lang, "_DEFINE_FLAG"));
  3133. if (cmNonempty(df)) {
  3134. dflag = *df;
  3135. }
  3136. }
  3137. const char* itemSeparator = definesString.empty() ? "" : " ";
  3138. for (std::string const& define : defines) {
  3139. // Append the definition with proper escaping.
  3140. std::string def = dflag;
  3141. if (this->GetState()->UseWatcomWMake()) {
  3142. // The Watcom compiler does its own command line parsing instead
  3143. // of using the windows shell rules. Definitions are one of
  3144. // -DNAME
  3145. // -DNAME=<cpp-token>
  3146. // -DNAME="c-string with spaces and other characters(?@#$)"
  3147. //
  3148. // Watcom will properly parse each of these cases from the
  3149. // command line without any escapes. However we still have to
  3150. // get the '$' and '#' characters through WMake as '$$' and
  3151. // '$#'.
  3152. for (char c : define) {
  3153. if (c == '$' || c == '#') {
  3154. def += '$';
  3155. }
  3156. def += c;
  3157. }
  3158. } else {
  3159. // Make the definition appear properly on the command line. Use
  3160. // -DNAME="value" instead of -D"NAME=value" for historical reasons.
  3161. std::string::size_type eq = define.find('=');
  3162. def += define.substr(0, eq);
  3163. if (eq != std::string::npos) {
  3164. def += "=";
  3165. def += this->EscapeForShell(define.substr(eq + 1), true);
  3166. }
  3167. }
  3168. definesString += itemSeparator;
  3169. itemSeparator = " ";
  3170. definesString += def;
  3171. }
  3172. }
  3173. void cmLocalGenerator::AppendFeatureOptions(std::string& flags,
  3174. const std::string& lang,
  3175. const char* feature)
  3176. {
  3177. cmValue optionList = this->Makefile->GetDefinition(
  3178. cmStrCat("CMAKE_", lang, "_COMPILE_OPTIONS_", feature));
  3179. if (optionList) {
  3180. cmList options{ *optionList };
  3181. for (std::string const& o : options) {
  3182. this->AppendFlagEscape(flags, o);
  3183. }
  3184. }
  3185. }
  3186. cmValue cmLocalGenerator::GetFeature(const std::string& feature,
  3187. const std::string& config)
  3188. {
  3189. std::string featureName = feature;
  3190. // TODO: Define accumulation policy for features (prepend, append,
  3191. // replace). Currently we always replace.
  3192. if (!config.empty()) {
  3193. featureName += "_";
  3194. featureName += cmSystemTools::UpperCase(config);
  3195. }
  3196. cmStateSnapshot snp = this->StateSnapshot;
  3197. while (snp.IsValid()) {
  3198. if (cmValue value = snp.GetDirectory().GetProperty(featureName)) {
  3199. return value;
  3200. }
  3201. snp = snp.GetBuildsystemDirectoryParent();
  3202. }
  3203. return nullptr;
  3204. }
  3205. std::string cmLocalGenerator::GetProjectName() const
  3206. {
  3207. return this->StateSnapshot.GetProjectName();
  3208. }
  3209. std::string cmLocalGenerator::ConstructComment(
  3210. cmCustomCommandGenerator const& ccg, const char* default_comment) const
  3211. {
  3212. // Check for a comment provided with the command.
  3213. if (cm::optional<std::string> comment = ccg.GetComment()) {
  3214. return *comment;
  3215. }
  3216. // Construct a reasonable default comment if possible.
  3217. if (!ccg.GetOutputs().empty()) {
  3218. std::string comment;
  3219. comment = "Generating ";
  3220. const char* sep = "";
  3221. for (std::string const& o : ccg.GetOutputs()) {
  3222. comment += sep;
  3223. comment += this->MaybeRelativeToCurBinDir(o);
  3224. sep = ", ";
  3225. }
  3226. return comment;
  3227. }
  3228. // Otherwise use the provided default.
  3229. return default_comment;
  3230. }
  3231. class cmInstallTargetGeneratorLocal : public cmInstallTargetGenerator
  3232. {
  3233. public:
  3234. cmInstallTargetGeneratorLocal(cmLocalGenerator* lg, std::string const& t,
  3235. std::string const& dest, bool implib)
  3236. : cmInstallTargetGenerator(
  3237. t, dest, implib, "", std::vector<std::string>(), "Unspecified",
  3238. cmInstallGenerator::SelectMessageLevel(lg->GetMakefile()), false,
  3239. false)
  3240. {
  3241. this->Compute(lg);
  3242. }
  3243. };
  3244. void cmLocalGenerator::GenerateTargetInstallRules(
  3245. std::ostream& os, const std::string& config,
  3246. std::vector<std::string> const& configurationTypes)
  3247. {
  3248. // Convert the old-style install specification from each target to
  3249. // an install generator and run it.
  3250. const auto& tgts = this->GetGeneratorTargets();
  3251. for (const auto& l : tgts) {
  3252. if (l->GetType() == cmStateEnums::INTERFACE_LIBRARY) {
  3253. continue;
  3254. }
  3255. // Include the user-specified pre-install script for this target.
  3256. if (cmValue preinstall = l->GetProperty("PRE_INSTALL_SCRIPT")) {
  3257. cmInstallScriptGenerator g(*preinstall, false, "", false, false);
  3258. g.Generate(os, config, configurationTypes);
  3259. }
  3260. // Install this target if a destination is given.
  3261. if (!l->Target->GetInstallPath().empty()) {
  3262. // Compute the full install destination. Note that converting
  3263. // to unix slashes also removes any trailing slash.
  3264. // We also skip over the leading slash given by the user.
  3265. std::string destination = l->Target->GetInstallPath().substr(1);
  3266. cmSystemTools::ConvertToUnixSlashes(destination);
  3267. if (destination.empty()) {
  3268. destination = ".";
  3269. }
  3270. // Generate the proper install generator for this target type.
  3271. switch (l->GetType()) {
  3272. case cmStateEnums::EXECUTABLE:
  3273. case cmStateEnums::STATIC_LIBRARY:
  3274. case cmStateEnums::MODULE_LIBRARY: {
  3275. // Use a target install generator.
  3276. cmInstallTargetGeneratorLocal g(this, l->GetName(), destination,
  3277. false);
  3278. g.Generate(os, config, configurationTypes);
  3279. } break;
  3280. case cmStateEnums::SHARED_LIBRARY: {
  3281. #if defined(_WIN32) || defined(__CYGWIN__)
  3282. // Special code to handle DLL. Install the import library
  3283. // to the normal destination and the DLL to the runtime
  3284. // destination.
  3285. cmInstallTargetGeneratorLocal g1(this, l->GetName(), destination,
  3286. true);
  3287. g1.Generate(os, config, configurationTypes);
  3288. // We also skip over the leading slash given by the user.
  3289. destination = l->Target->GetRuntimeInstallPath().substr(1);
  3290. cmSystemTools::ConvertToUnixSlashes(destination);
  3291. cmInstallTargetGeneratorLocal g2(this, l->GetName(), destination,
  3292. false);
  3293. g2.Generate(os, config, configurationTypes);
  3294. #else
  3295. // Use a target install generator.
  3296. cmInstallTargetGeneratorLocal g(this, l->GetName(), destination,
  3297. false);
  3298. g.Generate(os, config, configurationTypes);
  3299. #endif
  3300. } break;
  3301. default:
  3302. break;
  3303. }
  3304. }
  3305. // Include the user-specified post-install script for this target.
  3306. if (cmValue postinstall = l->GetProperty("POST_INSTALL_SCRIPT")) {
  3307. cmInstallScriptGenerator g(*postinstall, false, "", false, false);
  3308. g.Generate(os, config, configurationTypes);
  3309. }
  3310. }
  3311. }
  3312. namespace {
  3313. bool cmLocalGeneratorShortenObjectName(std::string& objName,
  3314. std::string::size_type max_len)
  3315. {
  3316. // Check if the path can be shortened using an md5 sum replacement for
  3317. // a portion of the path.
  3318. std::string::size_type md5Len = 32;
  3319. std::string::size_type numExtraChars = objName.size() - max_len + md5Len;
  3320. std::string::size_type pos = objName.find('/', numExtraChars);
  3321. if (pos == std::string::npos) {
  3322. pos = objName.rfind('/', numExtraChars);
  3323. if (pos == std::string::npos || pos <= md5Len) {
  3324. return false;
  3325. }
  3326. }
  3327. // Replace the beginning of the path portion of the object name with
  3328. // its own md5 sum.
  3329. cmCryptoHash md5(cmCryptoHash::AlgoMD5);
  3330. std::string md5name = cmStrCat(md5.HashString(objName.substr(0, pos)),
  3331. cm::string_view(objName).substr(pos));
  3332. objName = md5name;
  3333. // The object name is now shorter, check if it is short enough.
  3334. return pos >= numExtraChars;
  3335. }
  3336. bool cmLocalGeneratorCheckObjectName(std::string& objName,
  3337. std::string::size_type dir_len,
  3338. std::string::size_type max_total_len)
  3339. {
  3340. // Enforce the maximum file name length if possible.
  3341. std::string::size_type max_obj_len = max_total_len;
  3342. if (dir_len < max_total_len) {
  3343. max_obj_len = max_total_len - dir_len;
  3344. if (objName.size() > max_obj_len) {
  3345. // The current object file name is too long. Try to shorten it.
  3346. return cmLocalGeneratorShortenObjectName(objName, max_obj_len);
  3347. }
  3348. // The object file name is short enough.
  3349. return true;
  3350. }
  3351. // The build directory in which the object will be stored is
  3352. // already too deep.
  3353. return false;
  3354. }
  3355. }
  3356. std::string& cmLocalGenerator::CreateSafeUniqueObjectFileName(
  3357. const std::string& sin, std::string const& dir_max)
  3358. {
  3359. // Look for an existing mapped name for this object file.
  3360. auto it = this->UniqueObjectNamesMap.find(sin);
  3361. // If no entry exists create one.
  3362. if (it == this->UniqueObjectNamesMap.end()) {
  3363. // Start with the original name.
  3364. std::string ssin = sin;
  3365. // Avoid full paths by removing leading slashes.
  3366. ssin.erase(0, ssin.find_first_not_of('/'));
  3367. // Avoid full paths by removing colons.
  3368. std::replace(ssin.begin(), ssin.end(), ':', '_');
  3369. // Avoid relative paths that go up the tree.
  3370. cmSystemTools::ReplaceString(ssin, "../", "__/");
  3371. // Avoid spaces.
  3372. std::replace(ssin.begin(), ssin.end(), ' ', '_');
  3373. // Mangle the name if necessary.
  3374. if (this->Makefile->IsOn("CMAKE_MANGLE_OBJECT_FILE_NAMES")) {
  3375. bool done;
  3376. int cc = 0;
  3377. char rpstr[100];
  3378. snprintf(rpstr, sizeof(rpstr), "_p_");
  3379. cmSystemTools::ReplaceString(ssin, "+", rpstr);
  3380. std::string sssin = sin;
  3381. do {
  3382. done = true;
  3383. for (it = this->UniqueObjectNamesMap.begin();
  3384. it != this->UniqueObjectNamesMap.end(); ++it) {
  3385. if (it->second == ssin) {
  3386. done = false;
  3387. }
  3388. }
  3389. if (done) {
  3390. break;
  3391. }
  3392. sssin = ssin;
  3393. cmSystemTools::ReplaceString(ssin, "_p_", rpstr);
  3394. snprintf(rpstr, sizeof(rpstr), "_p%d_", cc++);
  3395. } while (!done);
  3396. }
  3397. if (!cmLocalGeneratorCheckObjectName(ssin, dir_max.size(),
  3398. this->ObjectPathMax)) {
  3399. // Warn if this is the first time the path has been seen.
  3400. if (this->ObjectMaxPathViolations.insert(dir_max).second) {
  3401. std::ostringstream m;
  3402. /* clang-format off */
  3403. m << "The object file directory\n"
  3404. << " " << dir_max << "\n"
  3405. << "has " << dir_max.size() << " characters. "
  3406. << "The maximum full path to an object file is "
  3407. << this->ObjectPathMax << " characters "
  3408. << "(see CMAKE_OBJECT_PATH_MAX). "
  3409. << "Object file\n"
  3410. << " " << ssin << "\n"
  3411. << "cannot be safely placed under this directory. "
  3412. << "The build may not work correctly.";
  3413. /* clang-format on */
  3414. this->IssueMessage(MessageType::WARNING, m.str());
  3415. }
  3416. }
  3417. // Insert the newly mapped object file name.
  3418. std::map<std::string, std::string>::value_type e(sin, ssin);
  3419. it = this->UniqueObjectNamesMap.insert(e).first;
  3420. }
  3421. // Return the map entry.
  3422. return it->second;
  3423. }
  3424. void cmLocalGenerator::ComputeObjectFilenames(
  3425. std::map<cmSourceFile const*, std::string>& /*unused*/,
  3426. cmGeneratorTarget const* /*unused*/)
  3427. {
  3428. }
  3429. bool cmLocalGenerator::IsWindowsShell() const
  3430. {
  3431. return this->GetState()->UseWindowsShell();
  3432. }
  3433. bool cmLocalGenerator::IsWatcomWMake() const
  3434. {
  3435. return this->GetState()->UseWatcomWMake();
  3436. }
  3437. bool cmLocalGenerator::IsMinGWMake() const
  3438. {
  3439. return this->GetState()->UseMinGWMake();
  3440. }
  3441. bool cmLocalGenerator::IsNMake() const
  3442. {
  3443. return this->GetState()->UseNMake();
  3444. }
  3445. bool cmLocalGenerator::IsNinjaMulti() const
  3446. {
  3447. return this->GetState()->UseNinjaMulti();
  3448. }
  3449. namespace {
  3450. std::string relativeIfUnder(std::string const& top, std::string const& cur,
  3451. std::string const& path)
  3452. {
  3453. // Use a path relative to 'cur' if it can be expressed without
  3454. // a `../` sequence that leaves 'top'.
  3455. if (cmSystemTools::IsSubDirectory(path, cur) ||
  3456. (cmSystemTools::IsSubDirectory(cur, top) &&
  3457. cmSystemTools::IsSubDirectory(path, top))) {
  3458. return cmSystemTools::ForceToRelativePath(cur, path);
  3459. }
  3460. return path;
  3461. }
  3462. }
  3463. std::string cmLocalGenerator::GetObjectFileNameWithoutTarget(
  3464. const cmSourceFile& source, std::string const& dir_max,
  3465. bool* hasSourceExtension, char const* customOutputExtension)
  3466. {
  3467. // Construct the object file name using the full path to the source
  3468. // file which is its only unique identification.
  3469. std::string const& fullPath = source.GetFullPath();
  3470. // Try referencing the source relative to the source tree.
  3471. std::string relFromSource = relativeIfUnder(
  3472. this->GetSourceDirectory(), this->GetCurrentSourceDirectory(), fullPath);
  3473. assert(!relFromSource.empty());
  3474. bool relSource = !cmSystemTools::FileIsFullPath(relFromSource);
  3475. bool subSource = relSource && relFromSource[0] != '.';
  3476. // Try referencing the source relative to the binary tree.
  3477. std::string relFromBinary = relativeIfUnder(
  3478. this->GetBinaryDirectory(), this->GetCurrentBinaryDirectory(), fullPath);
  3479. assert(!relFromBinary.empty());
  3480. bool relBinary = !cmSystemTools::FileIsFullPath(relFromBinary);
  3481. bool subBinary = relBinary && relFromBinary[0] != '.';
  3482. // Select a nice-looking reference to the source file to construct
  3483. // the object file name.
  3484. std::string objectName;
  3485. // XXX(clang-tidy): https://bugs.llvm.org/show_bug.cgi?id=44165
  3486. // NOLINTNEXTLINE(bugprone-branch-clone)
  3487. if ((relSource && !relBinary) || (subSource && !subBinary)) {
  3488. objectName = relFromSource;
  3489. } else if ((relBinary && !relSource) || (subBinary && !subSource) ||
  3490. relFromBinary.length() < relFromSource.length()) {
  3491. objectName = relFromBinary;
  3492. } else {
  3493. objectName = relFromSource;
  3494. }
  3495. // if it is still a full path check for the try compile case
  3496. // try compile never have in source sources, and should not
  3497. // have conflicting source file names in the same target
  3498. if (cmSystemTools::FileIsFullPath(objectName)) {
  3499. if (this->GetGlobalGenerator()->GetCMakeInstance()->GetIsInTryCompile()) {
  3500. objectName = cmSystemTools::GetFilenameName(source.GetFullPath());
  3501. }
  3502. }
  3503. // Ensure that for the CMakeFiles/<target>.dir/generated_source_file
  3504. // we don't end up having:
  3505. // CMakeFiles/<target>.dir/CMakeFiles/<target>.dir/generated_source_file.obj
  3506. cmValue unitySourceFile = source.GetProperty("UNITY_SOURCE_FILE");
  3507. cmValue pchExtension = source.GetProperty("PCH_EXTENSION");
  3508. const bool isPchObject = objectName.find("cmake_pch") != std::string::npos;
  3509. if (unitySourceFile || pchExtension || isPchObject) {
  3510. if (pchExtension) {
  3511. customOutputExtension = pchExtension->c_str();
  3512. }
  3513. cmsys::RegularExpression var("(CMakeFiles/[^/]+.dir/)");
  3514. if (var.find(objectName)) {
  3515. objectName.erase(var.start(), var.end() - var.start());
  3516. }
  3517. }
  3518. // Replace the original source file extension with the object file
  3519. // extension.
  3520. bool keptSourceExtension = true;
  3521. if (!source.GetPropertyAsBool("KEEP_EXTENSION")) {
  3522. // Decide whether this language wants to replace the source
  3523. // extension with the object extension. For CMake 2.4
  3524. // compatibility do this by default.
  3525. bool replaceExt = this->NeedBackwardsCompatibility_2_4();
  3526. if (!replaceExt) {
  3527. std::string lang = source.GetLanguage();
  3528. if (!lang.empty()) {
  3529. replaceExt = this->Makefile->IsOn(
  3530. cmStrCat("CMAKE_", lang, "_OUTPUT_EXTENSION_REPLACE"));
  3531. }
  3532. }
  3533. // Remove the source extension if it is to be replaced.
  3534. if (replaceExt || customOutputExtension) {
  3535. keptSourceExtension = false;
  3536. std::string::size_type dot_pos = objectName.rfind('.');
  3537. if (dot_pos != std::string::npos) {
  3538. objectName = objectName.substr(0, dot_pos);
  3539. }
  3540. }
  3541. // Store the new extension.
  3542. if (customOutputExtension) {
  3543. objectName += customOutputExtension;
  3544. } else {
  3545. objectName += this->GlobalGenerator->GetLanguageOutputExtension(source);
  3546. }
  3547. }
  3548. if (hasSourceExtension) {
  3549. *hasSourceExtension = keptSourceExtension;
  3550. }
  3551. // Convert to a safe name.
  3552. return this->CreateSafeUniqueObjectFileName(objectName, dir_max);
  3553. }
  3554. std::string cmLocalGenerator::GetSourceFileLanguage(const cmSourceFile& source)
  3555. {
  3556. return source.GetLanguage();
  3557. }
  3558. cmake* cmLocalGenerator::GetCMakeInstance() const
  3559. {
  3560. return this->GlobalGenerator->GetCMakeInstance();
  3561. }
  3562. std::string const& cmLocalGenerator::GetSourceDirectory() const
  3563. {
  3564. return this->GetCMakeInstance()->GetHomeDirectory();
  3565. }
  3566. std::string const& cmLocalGenerator::GetBinaryDirectory() const
  3567. {
  3568. return this->GetCMakeInstance()->GetHomeOutputDirectory();
  3569. }
  3570. std::string const& cmLocalGenerator::GetCurrentBinaryDirectory() const
  3571. {
  3572. return this->StateSnapshot.GetDirectory().GetCurrentBinary();
  3573. }
  3574. std::string const& cmLocalGenerator::GetCurrentSourceDirectory() const
  3575. {
  3576. return this->StateSnapshot.GetDirectory().GetCurrentSource();
  3577. }
  3578. std::string cmLocalGenerator::GetTargetDirectory(
  3579. const cmGeneratorTarget* /*unused*/) const
  3580. {
  3581. cmSystemTools::Error("GetTargetDirectory"
  3582. " called on cmLocalGenerator");
  3583. return "";
  3584. }
  3585. KWIML_INT_uint64_t cmLocalGenerator::GetBackwardsCompatibility()
  3586. {
  3587. // The computed version may change until the project is fully
  3588. // configured.
  3589. if (!this->BackwardsCompatibilityFinal) {
  3590. unsigned int major = 0;
  3591. unsigned int minor = 0;
  3592. unsigned int patch = 0;
  3593. if (cmValue value =
  3594. this->Makefile->GetDefinition("CMAKE_BACKWARDS_COMPATIBILITY")) {
  3595. switch (sscanf(value->c_str(), "%u.%u.%u", &major, &minor, &patch)) {
  3596. case 2:
  3597. patch = 0;
  3598. break;
  3599. case 1:
  3600. minor = 0;
  3601. patch = 0;
  3602. break;
  3603. default:
  3604. break;
  3605. }
  3606. }
  3607. this->BackwardsCompatibility = CMake_VERSION_ENCODE(major, minor, patch);
  3608. this->BackwardsCompatibilityFinal = true;
  3609. }
  3610. return this->BackwardsCompatibility;
  3611. }
  3612. bool cmLocalGenerator::NeedBackwardsCompatibility_2_4()
  3613. {
  3614. // Check the policy to decide whether to pay attention to this
  3615. // variable.
  3616. switch (this->GetPolicyStatus(cmPolicies::CMP0001)) {
  3617. case cmPolicies::WARN:
  3618. // WARN is just OLD without warning because user code does not
  3619. // always affect whether this check is done.
  3620. CM_FALLTHROUGH;
  3621. case cmPolicies::OLD:
  3622. // Old behavior is to check the variable.
  3623. break;
  3624. case cmPolicies::NEW:
  3625. // New behavior is to ignore the variable.
  3626. case cmPolicies::REQUIRED_IF_USED:
  3627. case cmPolicies::REQUIRED_ALWAYS:
  3628. // This will never be the case because the only way to require
  3629. // the setting is to require the user to specify version policy
  3630. // 2.6 or higher. Once we add that requirement then this whole
  3631. // method can be removed anyway.
  3632. return false;
  3633. }
  3634. // Compatibility is needed if CMAKE_BACKWARDS_COMPATIBILITY is set
  3635. // equal to or lower than the given version.
  3636. KWIML_INT_uint64_t actual_compat = this->GetBackwardsCompatibility();
  3637. return (actual_compat && actual_compat <= CMake_VERSION_ENCODE(2, 4, 255));
  3638. }
  3639. cmPolicies::PolicyStatus cmLocalGenerator::GetPolicyStatus(
  3640. cmPolicies::PolicyID id) const
  3641. {
  3642. return this->Makefile->GetPolicyStatus(id);
  3643. }
  3644. bool cmLocalGenerator::CheckDefinition(std::string const& define) const
  3645. {
  3646. // Many compilers do not support -DNAME(arg)=sdf so we disable it.
  3647. std::string::size_type pos = define.find_first_of("(=");
  3648. if (pos != std::string::npos) {
  3649. if (define[pos] == '(') {
  3650. std::ostringstream e;
  3651. /* clang-format off */
  3652. e << "WARNING: Function-style preprocessor definitions may not be "
  3653. << "passed on the compiler command line because many compilers "
  3654. << "do not support it.\n"
  3655. << "CMake is dropping a preprocessor definition: " << define << "\n"
  3656. << "Consider defining the macro in a (configured) header file.\n";
  3657. /* clang-format on */
  3658. cmSystemTools::Message(e.str());
  3659. return false;
  3660. }
  3661. }
  3662. // Many compilers do not support # in the value so we disable it.
  3663. if (define.find_first_of('#') != std::string::npos) {
  3664. std::ostringstream e;
  3665. /* clang-format off */
  3666. e << "WARNING: Preprocessor definitions containing '#' may not be "
  3667. << "passed on the compiler command line because many compilers "
  3668. << "do not support it.\n"
  3669. << "CMake is dropping a preprocessor definition: " << define << "\n"
  3670. << "Consider defining the macro in a (configured) header file.\n";
  3671. /* clang-format on */
  3672. cmSystemTools::Message(e.str());
  3673. return false;
  3674. }
  3675. // Assume it is supported.
  3676. return true;
  3677. }
  3678. static void cmLGInfoProp(cmMakefile* mf, cmGeneratorTarget* target,
  3679. const std::string& prop)
  3680. {
  3681. if (cmValue val = target->GetProperty(prop)) {
  3682. mf->AddDefinition(prop, *val);
  3683. }
  3684. }
  3685. void cmLocalGenerator::GenerateAppleInfoPList(cmGeneratorTarget* target,
  3686. const std::string& targetName,
  3687. const std::string& fname)
  3688. {
  3689. // Find the Info.plist template.
  3690. cmValue in = target->GetProperty("MACOSX_BUNDLE_INFO_PLIST");
  3691. std::string inFile = cmNonempty(in) ? *in : "MacOSXBundleInfo.plist.in";
  3692. if (!cmSystemTools::FileIsFullPath(inFile)) {
  3693. std::string inMod = this->Makefile->GetModulesFile(inFile);
  3694. if (!inMod.empty()) {
  3695. inFile = inMod;
  3696. }
  3697. }
  3698. if (!cmSystemTools::FileExists(inFile, true)) {
  3699. std::ostringstream e;
  3700. e << "Target " << target->GetName() << " Info.plist template \"" << inFile
  3701. << "\" could not be found.";
  3702. cmSystemTools::Error(e.str());
  3703. return;
  3704. }
  3705. // Convert target properties to variables in an isolated makefile
  3706. // scope to configure the file. If properties are set they will
  3707. // override user make variables. If not the configuration will fall
  3708. // back to the directory-level values set by the user.
  3709. cmMakefile* mf = this->Makefile;
  3710. cmMakefile::ScopePushPop varScope(mf);
  3711. mf->AddDefinition("MACOSX_BUNDLE_EXECUTABLE_NAME", targetName);
  3712. cmLGInfoProp(mf, target, "MACOSX_BUNDLE_INFO_STRING");
  3713. cmLGInfoProp(mf, target, "MACOSX_BUNDLE_ICON_FILE");
  3714. cmLGInfoProp(mf, target, "MACOSX_BUNDLE_GUI_IDENTIFIER");
  3715. cmLGInfoProp(mf, target, "MACOSX_BUNDLE_LONG_VERSION_STRING");
  3716. cmLGInfoProp(mf, target, "MACOSX_BUNDLE_BUNDLE_NAME");
  3717. cmLGInfoProp(mf, target, "MACOSX_BUNDLE_SHORT_VERSION_STRING");
  3718. cmLGInfoProp(mf, target, "MACOSX_BUNDLE_BUNDLE_VERSION");
  3719. cmLGInfoProp(mf, target, "MACOSX_BUNDLE_COPYRIGHT");
  3720. mf->ConfigureFile(inFile, fname, false, false, false);
  3721. }
  3722. void cmLocalGenerator::GenerateFrameworkInfoPList(
  3723. cmGeneratorTarget* target, const std::string& targetName,
  3724. const std::string& fname)
  3725. {
  3726. // Find the Info.plist template.
  3727. cmValue in = target->GetProperty("MACOSX_FRAMEWORK_INFO_PLIST");
  3728. std::string inFile = cmNonempty(in) ? *in : "MacOSXFrameworkInfo.plist.in";
  3729. if (!cmSystemTools::FileIsFullPath(inFile)) {
  3730. std::string inMod = this->Makefile->GetModulesFile(inFile);
  3731. if (!inMod.empty()) {
  3732. inFile = inMod;
  3733. }
  3734. }
  3735. if (!cmSystemTools::FileExists(inFile, true)) {
  3736. std::ostringstream e;
  3737. e << "Target " << target->GetName() << " Info.plist template \"" << inFile
  3738. << "\" could not be found.";
  3739. cmSystemTools::Error(e.str());
  3740. return;
  3741. }
  3742. // Convert target properties to variables in an isolated makefile
  3743. // scope to configure the file. If properties are set they will
  3744. // override user make variables. If not the configuration will fall
  3745. // back to the directory-level values set by the user.
  3746. cmMakefile* mf = this->Makefile;
  3747. cmMakefile::ScopePushPop varScope(mf);
  3748. mf->AddDefinition("MACOSX_FRAMEWORK_NAME", targetName);
  3749. cmLGInfoProp(mf, target, "MACOSX_FRAMEWORK_ICON_FILE");
  3750. cmLGInfoProp(mf, target, "MACOSX_FRAMEWORK_IDENTIFIER");
  3751. cmLGInfoProp(mf, target, "MACOSX_FRAMEWORK_SHORT_VERSION_STRING");
  3752. cmLGInfoProp(mf, target, "MACOSX_FRAMEWORK_BUNDLE_VERSION");
  3753. mf->ConfigureFile(inFile, fname, false, false, false);
  3754. }
  3755. namespace {
  3756. cm::string_view CustomOutputRoleKeyword(cmLocalGenerator::OutputRole role)
  3757. {
  3758. return (role == cmLocalGenerator::OutputRole::Primary ? "OUTPUT"_s
  3759. : "BYPRODUCTS"_s);
  3760. }
  3761. void CreateGeneratedSource(cmLocalGenerator& lg, const std::string& output,
  3762. cmLocalGenerator::OutputRole role,
  3763. cmCommandOrigin origin,
  3764. const cmListFileBacktrace& lfbt)
  3765. {
  3766. if (cmGeneratorExpression::Find(output) != std::string::npos) {
  3767. lg.GetCMakeInstance()->IssueMessage(
  3768. MessageType::FATAL_ERROR,
  3769. "Generator expressions in custom command outputs are not implemented!",
  3770. lfbt);
  3771. return;
  3772. }
  3773. // Make sure the file will not be generated into the source
  3774. // directory during an out of source build.
  3775. if (!lg.GetMakefile()->CanIWriteThisFile(output)) {
  3776. lg.GetCMakeInstance()->IssueMessage(
  3777. MessageType::FATAL_ERROR,
  3778. cmStrCat(CustomOutputRoleKeyword(role), " path\n ", output,
  3779. "\nin a source directory as an output of custom command."),
  3780. lfbt);
  3781. return;
  3782. }
  3783. // Make sure the output file name has no invalid characters.
  3784. std::string::size_type pos = output.find_first_of("#<>");
  3785. if (pos != std::string::npos) {
  3786. lg.GetCMakeInstance()->IssueMessage(
  3787. MessageType::FATAL_ERROR,
  3788. cmStrCat(CustomOutputRoleKeyword(role), " containing a \"", output[pos],
  3789. "\" is not allowed."),
  3790. lfbt);
  3791. return;
  3792. }
  3793. // Outputs without generator expressions from the project are already
  3794. // created and marked as generated. Do not mark them again, because
  3795. // other commands might have overwritten the property.
  3796. if (origin == cmCommandOrigin::Generator) {
  3797. lg.GetMakefile()->GetOrCreateGeneratedSource(output);
  3798. }
  3799. }
  3800. std::string ComputeCustomCommandRuleFileName(cmLocalGenerator& lg,
  3801. cmListFileBacktrace const& bt,
  3802. std::string const& output)
  3803. {
  3804. // If the output path has no generator expressions, use it directly.
  3805. if (cmGeneratorExpression::Find(output) == std::string::npos) {
  3806. return output;
  3807. }
  3808. // The output path contains a generator expression, but we must choose
  3809. // a single source file path to which to attach the custom command.
  3810. // Use some heuristics to provide a nice-looking name when possible.
  3811. // If the only genex is $<CONFIG>, replace that gracefully.
  3812. {
  3813. std::string simple = output;
  3814. cmSystemTools::ReplaceString(simple, "$<CONFIG>", "(CONFIG)");
  3815. if (cmGeneratorExpression::Find(simple) == std::string::npos) {
  3816. return simple;
  3817. }
  3818. }
  3819. // If the genex evaluates to the same value in all configurations, use that.
  3820. {
  3821. std::vector<std::string> allConfigOutputs =
  3822. lg.ExpandCustomCommandOutputGenex(output, bt);
  3823. if (allConfigOutputs.size() == 1) {
  3824. return allConfigOutputs.front();
  3825. }
  3826. }
  3827. // Fall back to a deterministic unique name.
  3828. cmCryptoHash h(cmCryptoHash::AlgoSHA256);
  3829. return cmStrCat(lg.GetCurrentBinaryDirectory(), "/CMakeFiles/",
  3830. h.HashString(output).substr(0, 16));
  3831. }
  3832. cmSourceFile* AddCustomCommand(cmLocalGenerator& lg, cmCommandOrigin origin,
  3833. std::unique_ptr<cmCustomCommand> cc,
  3834. bool replace)
  3835. {
  3836. cmMakefile* mf = lg.GetMakefile();
  3837. const auto& lfbt = cc->GetBacktrace();
  3838. const auto& outputs = cc->GetOutputs();
  3839. const auto& byproducts = cc->GetByproducts();
  3840. const auto& commandLines = cc->GetCommandLines();
  3841. // Choose a source file on which to store the custom command.
  3842. cmSourceFile* file = nullptr;
  3843. if (!commandLines.empty() && cc->HasMainDependency()) {
  3844. const auto& main_dependency = cc->GetMainDependency();
  3845. // The main dependency was specified. Use it unless a different
  3846. // custom command already used it.
  3847. file = mf->GetSource(main_dependency);
  3848. if (file && file->GetCustomCommand() && !replace) {
  3849. // The main dependency already has a custom command.
  3850. if (commandLines == file->GetCustomCommand()->GetCommandLines()) {
  3851. // The existing custom command is identical. Silently ignore
  3852. // the duplicate.
  3853. return file;
  3854. }
  3855. // The existing custom command is different. We need to
  3856. // generate a rule file for this new command.
  3857. file = nullptr;
  3858. } else if (!file) {
  3859. file = mf->CreateSource(main_dependency);
  3860. }
  3861. }
  3862. // Generate a rule file if the main dependency is not available.
  3863. if (!file) {
  3864. cmGlobalGenerator* gg = lg.GetGlobalGenerator();
  3865. // Construct a rule file associated with the first output produced.
  3866. std::string outName = gg->GenerateRuleFile(
  3867. ComputeCustomCommandRuleFileName(lg, lfbt, outputs[0]));
  3868. // Check if the rule file already exists.
  3869. file = mf->GetSource(outName, cmSourceFileLocationKind::Known);
  3870. if (file && file->GetCustomCommand() && !replace) {
  3871. // The rule file already exists.
  3872. if (commandLines != file->GetCustomCommand()->GetCommandLines()) {
  3873. lg.GetCMakeInstance()->IssueMessage(
  3874. MessageType::FATAL_ERROR,
  3875. cmStrCat("Attempt to add a custom rule to output\n ", outName,
  3876. "\nwhich already has a custom rule."),
  3877. lfbt);
  3878. }
  3879. return file;
  3880. }
  3881. // Create a cmSourceFile for the rule file.
  3882. if (!file) {
  3883. file = mf->CreateSource(outName, true, cmSourceFileLocationKind::Known);
  3884. }
  3885. file->SetProperty("__CMAKE_RULE", "1");
  3886. }
  3887. // Attach the custom command to the file.
  3888. if (file) {
  3889. cc->SetEscapeAllowMakeVars(true);
  3890. lg.AddSourceOutputs(file, outputs, cmLocalGenerator::OutputRole::Primary,
  3891. lfbt, origin);
  3892. lg.AddSourceOutputs(file, byproducts,
  3893. cmLocalGenerator::OutputRole::Byproduct, lfbt, origin);
  3894. file->SetCustomCommand(std::move(cc));
  3895. }
  3896. return file;
  3897. }
  3898. bool AnyOutputMatches(const std::string& name,
  3899. const std::vector<std::string>& outputs)
  3900. {
  3901. return std::any_of(outputs.begin(), outputs.end(),
  3902. [&name](std::string const& output) -> bool {
  3903. std::string::size_type pos = output.rfind(name);
  3904. // If the output matches exactly
  3905. return (pos != std::string::npos &&
  3906. pos == output.size() - name.size() &&
  3907. (pos == 0 || output[pos - 1] == '/'));
  3908. });
  3909. }
  3910. bool AnyTargetCommandOutputMatches(
  3911. const std::string& name, const std::vector<cmCustomCommand>& commands)
  3912. {
  3913. return std::any_of(commands.begin(), commands.end(),
  3914. [&name](cmCustomCommand const& command) -> bool {
  3915. return AnyOutputMatches(name, command.GetByproducts());
  3916. });
  3917. }
  3918. }
  3919. namespace detail {
  3920. void AddCustomCommandToTarget(cmLocalGenerator& lg, cmCommandOrigin origin,
  3921. cmTarget* target, cmCustomCommandType type,
  3922. std::unique_ptr<cmCustomCommand> cc)
  3923. {
  3924. // Add the command to the appropriate build step for the target.
  3925. cc->SetEscapeAllowMakeVars(true);
  3926. cc->SetTarget(target->GetName());
  3927. lg.AddTargetByproducts(target, cc->GetByproducts(), cc->GetBacktrace(),
  3928. origin);
  3929. switch (type) {
  3930. case cmCustomCommandType::PRE_BUILD:
  3931. target->AddPreBuildCommand(std::move(*cc));
  3932. break;
  3933. case cmCustomCommandType::PRE_LINK:
  3934. target->AddPreLinkCommand(std::move(*cc));
  3935. break;
  3936. case cmCustomCommandType::POST_BUILD:
  3937. target->AddPostBuildCommand(std::move(*cc));
  3938. break;
  3939. }
  3940. cc.reset();
  3941. }
  3942. cmSourceFile* AddCustomCommandToOutput(cmLocalGenerator& lg,
  3943. cmCommandOrigin origin,
  3944. std::unique_ptr<cmCustomCommand> cc,
  3945. bool replace)
  3946. {
  3947. return AddCustomCommand(lg, origin, std::move(cc), replace);
  3948. }
  3949. void AppendCustomCommandToOutput(cmLocalGenerator& lg,
  3950. const cmListFileBacktrace& lfbt,
  3951. const std::string& output,
  3952. const std::vector<std::string>& depends,
  3953. const cmImplicitDependsList& implicit_depends,
  3954. const cmCustomCommandLines& commandLines)
  3955. {
  3956. // Lookup an existing command.
  3957. cmSourceFile* sf = nullptr;
  3958. if (cmGeneratorExpression::Find(output) == std::string::npos) {
  3959. sf = lg.GetSourceFileWithOutput(output);
  3960. } else {
  3961. // This output path has a generator expression. Evaluate it to
  3962. // find the output for any configurations.
  3963. for (std::string const& out :
  3964. lg.ExpandCustomCommandOutputGenex(output, lfbt)) {
  3965. sf = lg.GetSourceFileWithOutput(out);
  3966. if (sf) {
  3967. break;
  3968. }
  3969. }
  3970. }
  3971. if (sf) {
  3972. if (cmCustomCommand* cc = sf->GetCustomCommand()) {
  3973. cc->AppendCommands(commandLines);
  3974. cc->AppendDepends(depends);
  3975. cc->AppendImplicitDepends(implicit_depends);
  3976. return;
  3977. }
  3978. }
  3979. // No existing command found.
  3980. lg.GetCMakeInstance()->IssueMessage(
  3981. MessageType::FATAL_ERROR,
  3982. cmStrCat("Attempt to APPEND to custom command with output\n ", output,
  3983. "\nwhich is not already a custom command output."),
  3984. lfbt);
  3985. }
  3986. void AddUtilityCommand(cmLocalGenerator& lg, cmCommandOrigin origin,
  3987. cmTarget* target, std::unique_ptr<cmCustomCommand> cc)
  3988. {
  3989. // They might be moved away
  3990. auto byproducts = cc->GetByproducts();
  3991. auto lfbt = cc->GetBacktrace();
  3992. // Use an empty comment to avoid generation of default comment.
  3993. if (!cc->GetComment()) {
  3994. cc->SetComment("");
  3995. }
  3996. // Create the generated symbolic output name of the utility target.
  3997. std::string output =
  3998. lg.CreateUtilityOutput(target->GetName(), byproducts, lfbt);
  3999. cc->SetOutputs(output);
  4000. cmSourceFile* rule = AddCustomCommand(lg, origin, std::move(cc),
  4001. /*replace=*/false);
  4002. if (rule) {
  4003. lg.AddTargetByproducts(target, byproducts, lfbt, origin);
  4004. }
  4005. target->AddSource(output);
  4006. }
  4007. std::vector<std::string> ComputeISPCObjectSuffixes(cmGeneratorTarget* target)
  4008. {
  4009. const cmValue targetProperty = target->GetProperty("ISPC_INSTRUCTION_SETS");
  4010. cmList ispcTargets;
  4011. if (!targetProperty.IsOff()) {
  4012. ispcTargets.assign(targetProperty);
  4013. for (auto& ispcTarget : ispcTargets) {
  4014. // transform targets into the suffixes
  4015. auto pos = ispcTarget.find('-');
  4016. auto target_suffix = ispcTarget.substr(0, pos);
  4017. if (target_suffix ==
  4018. "avx1") { // when targeting avx1 ISPC uses the 'avx' output string
  4019. target_suffix = "avx";
  4020. }
  4021. ispcTarget = target_suffix;
  4022. }
  4023. }
  4024. return std::move(ispcTargets.data());
  4025. }
  4026. std::vector<std::string> ComputeISPCExtraObjects(
  4027. std::string const& objectName, std::string const& buildDirectory,
  4028. std::vector<std::string> const& ispcSuffixes)
  4029. {
  4030. auto normalizedDir = cmSystemTools::CollapseFullPath(buildDirectory);
  4031. std::vector<std::string> computedObjects;
  4032. computedObjects.reserve(ispcSuffixes.size());
  4033. auto extension = cmSystemTools::GetFilenameLastExtension(objectName);
  4034. // We can't use cmSystemTools::GetFilenameWithoutLastExtension as it
  4035. // drops any directories in objectName
  4036. auto objNameNoExt = objectName;
  4037. std::string::size_type dot_pos = objectName.rfind('.');
  4038. if (dot_pos != std::string::npos) {
  4039. objNameNoExt.resize(dot_pos);
  4040. }
  4041. for (const auto& ispcTarget : ispcSuffixes) {
  4042. computedObjects.emplace_back(
  4043. cmStrCat(normalizedDir, "/", objNameNoExt, "_", ispcTarget, extension));
  4044. }
  4045. return computedObjects;
  4046. }
  4047. }
  4048. cmSourcesWithOutput cmLocalGenerator::GetSourcesWithOutput(
  4049. const std::string& name) const
  4050. {
  4051. // Linear search? Also see GetSourceFileWithOutput for detail.
  4052. if (!cmSystemTools::FileIsFullPath(name)) {
  4053. cmSourcesWithOutput sources;
  4054. sources.Target = this->LinearGetTargetWithOutput(name);
  4055. sources.Source = this->LinearGetSourceFileWithOutput(
  4056. name, cmSourceOutputKind::OutputOrByproduct, sources.SourceIsByproduct);
  4057. return sources;
  4058. }
  4059. // Otherwise we use an efficient lookup map.
  4060. auto o = this->OutputToSource.find(name);
  4061. if (o != this->OutputToSource.end()) {
  4062. return o->second.Sources;
  4063. }
  4064. return {};
  4065. }
  4066. cmSourceFile* cmLocalGenerator::GetSourceFileWithOutput(
  4067. const std::string& name, cmSourceOutputKind kind) const
  4068. {
  4069. // If the queried path is not absolute we use the backward compatible
  4070. // linear-time search for an output with a matching suffix.
  4071. if (!cmSystemTools::FileIsFullPath(name)) {
  4072. bool byproduct = false;
  4073. return this->LinearGetSourceFileWithOutput(name, kind, byproduct);
  4074. }
  4075. // Otherwise we use an efficient lookup map.
  4076. auto o = this->OutputToSource.find(name);
  4077. if (o != this->OutputToSource.end() &&
  4078. (!o->second.Sources.SourceIsByproduct ||
  4079. kind == cmSourceOutputKind::OutputOrByproduct)) {
  4080. // Source file could also be null pointer for example if we found the
  4081. // byproduct of a utility target, a PRE_BUILD, PRE_LINK, or POST_BUILD
  4082. // command of a target, or a not yet created custom command.
  4083. return o->second.Sources.Source;
  4084. }
  4085. return nullptr;
  4086. }
  4087. std::string cmLocalGenerator::CreateUtilityOutput(
  4088. std::string const& targetName, std::vector<std::string> const&,
  4089. cmListFileBacktrace const&)
  4090. {
  4091. std::string force =
  4092. cmStrCat(this->GetCurrentBinaryDirectory(), "/CMakeFiles/", targetName);
  4093. // The output is not actually created so mark it symbolic.
  4094. if (cmSourceFile* sf = this->Makefile->GetOrCreateGeneratedSource(force)) {
  4095. sf->SetProperty("SYMBOLIC", "1");
  4096. } else {
  4097. cmSystemTools::Error("Could not get source file entry for " + force);
  4098. }
  4099. return force;
  4100. }
  4101. std::vector<cmCustomCommandGenerator>
  4102. cmLocalGenerator::MakeCustomCommandGenerators(cmCustomCommand const& cc,
  4103. std::string const& config)
  4104. {
  4105. std::vector<cmCustomCommandGenerator> ccgs;
  4106. ccgs.emplace_back(cc, config, this);
  4107. return ccgs;
  4108. }
  4109. std::vector<std::string> cmLocalGenerator::ExpandCustomCommandOutputPaths(
  4110. cmCompiledGeneratorExpression const& cge, std::string const& config)
  4111. {
  4112. cmList paths{ cge.Evaluate(this, config) };
  4113. for (std::string& p : paths) {
  4114. p = cmSystemTools::CollapseFullPath(p, this->GetCurrentBinaryDirectory());
  4115. }
  4116. return std::move(paths.data());
  4117. }
  4118. std::vector<std::string> cmLocalGenerator::ExpandCustomCommandOutputGenex(
  4119. std::string const& o, cmListFileBacktrace const& bt)
  4120. {
  4121. std::vector<std::string> allConfigOutputs;
  4122. cmGeneratorExpression ge(*this->GetCMakeInstance(), bt);
  4123. std::unique_ptr<cmCompiledGeneratorExpression> cge = ge.Parse(o);
  4124. std::vector<std::string> configs =
  4125. this->Makefile->GetGeneratorConfigs(cmMakefile::IncludeEmptyConfig);
  4126. for (std::string const& config : configs) {
  4127. std::vector<std::string> configOutputs =
  4128. this->ExpandCustomCommandOutputPaths(*cge, config);
  4129. allConfigOutputs.reserve(allConfigOutputs.size() + configOutputs.size());
  4130. std::move(configOutputs.begin(), configOutputs.end(),
  4131. std::back_inserter(allConfigOutputs));
  4132. }
  4133. auto endUnique =
  4134. cmRemoveDuplicates(allConfigOutputs.begin(), allConfigOutputs.end());
  4135. allConfigOutputs.erase(endUnique, allConfigOutputs.end());
  4136. return allConfigOutputs;
  4137. }
  4138. void cmLocalGenerator::AddTargetByproducts(
  4139. cmTarget* target, const std::vector<std::string>& byproducts,
  4140. cmListFileBacktrace const& bt, cmCommandOrigin origin)
  4141. {
  4142. for (std::string const& o : byproducts) {
  4143. if (cmGeneratorExpression::Find(o) == std::string::npos) {
  4144. this->UpdateOutputToSourceMap(o, target, bt, origin);
  4145. continue;
  4146. }
  4147. // This byproduct path has a generator expression. Evaluate it to
  4148. // register the byproducts for all configurations.
  4149. for (std::string const& b : this->ExpandCustomCommandOutputGenex(o, bt)) {
  4150. this->UpdateOutputToSourceMap(b, target, bt, cmCommandOrigin::Generator);
  4151. }
  4152. }
  4153. }
  4154. void cmLocalGenerator::AddSourceOutputs(
  4155. cmSourceFile* source, const std::vector<std::string>& outputs,
  4156. OutputRole role, cmListFileBacktrace const& bt, cmCommandOrigin origin)
  4157. {
  4158. for (std::string const& o : outputs) {
  4159. if (cmGeneratorExpression::Find(o) == std::string::npos) {
  4160. this->UpdateOutputToSourceMap(o, source, role, bt, origin);
  4161. continue;
  4162. }
  4163. // This output path has a generator expression. Evaluate it to
  4164. // register the outputs for all configurations.
  4165. for (std::string const& out :
  4166. this->ExpandCustomCommandOutputGenex(o, bt)) {
  4167. this->UpdateOutputToSourceMap(out, source, role, bt,
  4168. cmCommandOrigin::Generator);
  4169. }
  4170. }
  4171. }
  4172. void cmLocalGenerator::UpdateOutputToSourceMap(std::string const& byproduct,
  4173. cmTarget* target,
  4174. cmListFileBacktrace const& bt,
  4175. cmCommandOrigin origin)
  4176. {
  4177. SourceEntry entry;
  4178. entry.Sources.Target = target;
  4179. auto pr = this->OutputToSource.emplace(byproduct, entry);
  4180. if (pr.second) {
  4181. CreateGeneratedSource(*this, byproduct, OutputRole::Byproduct, origin, bt);
  4182. } else {
  4183. SourceEntry& current = pr.first->second;
  4184. // Has the target already been set?
  4185. if (!current.Sources.Target) {
  4186. current.Sources.Target = target;
  4187. } else {
  4188. // Multiple custom commands/targets produce the same output (source file
  4189. // or target). See also comment in other UpdateOutputToSourceMap
  4190. // overload.
  4191. //
  4192. // TODO: Warn the user about this case.
  4193. }
  4194. }
  4195. }
  4196. void cmLocalGenerator::UpdateOutputToSourceMap(std::string const& output,
  4197. cmSourceFile* source,
  4198. OutputRole role,
  4199. cmListFileBacktrace const& bt,
  4200. cmCommandOrigin origin)
  4201. {
  4202. SourceEntry entry;
  4203. entry.Sources.Source = source;
  4204. entry.Sources.SourceIsByproduct = role == OutputRole::Byproduct;
  4205. auto pr = this->OutputToSource.emplace(output, entry);
  4206. if (pr.second) {
  4207. CreateGeneratedSource(*this, output, role, origin, bt);
  4208. } else {
  4209. SourceEntry& current = pr.first->second;
  4210. // Outputs take precedence over byproducts
  4211. if (!current.Sources.Source ||
  4212. (current.Sources.SourceIsByproduct && role == OutputRole::Primary)) {
  4213. current.Sources.Source = source;
  4214. current.Sources.SourceIsByproduct = false;
  4215. } else {
  4216. // Multiple custom commands produce the same output but may
  4217. // be attached to a different source file (MAIN_DEPENDENCY).
  4218. // LinearGetSourceFileWithOutput would return the first one,
  4219. // so keep the mapping for the first one.
  4220. //
  4221. // TODO: Warn the user about this case. However, the VS 8 generator
  4222. // triggers it for separate generate.stamp rules in ZERO_CHECK and
  4223. // individual targets.
  4224. }
  4225. }
  4226. }
  4227. cmTarget* cmLocalGenerator::LinearGetTargetWithOutput(
  4228. const std::string& name) const
  4229. {
  4230. // We go through the ordered vector of targets to get reproducible results
  4231. // should multiple names match.
  4232. for (cmTarget* t : this->Makefile->GetOrderedTargets()) {
  4233. // Does the output of any command match the source file name?
  4234. if (AnyTargetCommandOutputMatches(name, t->GetPreBuildCommands())) {
  4235. return t;
  4236. }
  4237. if (AnyTargetCommandOutputMatches(name, t->GetPreLinkCommands())) {
  4238. return t;
  4239. }
  4240. if (AnyTargetCommandOutputMatches(name, t->GetPostBuildCommands())) {
  4241. return t;
  4242. }
  4243. }
  4244. return nullptr;
  4245. }
  4246. cmSourceFile* cmLocalGenerator::LinearGetSourceFileWithOutput(
  4247. const std::string& name, cmSourceOutputKind kind, bool& byproduct) const
  4248. {
  4249. // Outputs take precedence over byproducts.
  4250. byproduct = false;
  4251. cmSourceFile* fallback = nullptr;
  4252. // Look through all the source files that have custom commands and see if the
  4253. // custom command has the passed source file as an output.
  4254. for (const auto& src : this->Makefile->GetSourceFiles()) {
  4255. // Does this source file have a custom command?
  4256. if (src->GetCustomCommand()) {
  4257. // Does the output of the custom command match the source file name?
  4258. if (AnyOutputMatches(name, src->GetCustomCommand()->GetOutputs())) {
  4259. // Return the first matching output.
  4260. return src.get();
  4261. }
  4262. if (kind == cmSourceOutputKind::OutputOrByproduct) {
  4263. if (AnyOutputMatches(name, src->GetCustomCommand()->GetByproducts())) {
  4264. // Do not return the source yet as there might be a matching output.
  4265. fallback = src.get();
  4266. }
  4267. }
  4268. }
  4269. }
  4270. // Did we find a byproduct?
  4271. byproduct = fallback != nullptr;
  4272. return fallback;
  4273. }