cmLocalGenerator.cxx 171 KB

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