123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461 |
- /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
- file LICENSE.rst or https://cmake.org/licensing for details. */
- #include "cmake.h"
- #include <algorithm>
- #include <array>
- #include <chrono>
- #include <cstdio>
- #include <cstdlib>
- #include <initializer_list>
- #include <iomanip>
- #include <iostream>
- #include <sstream>
- #include <stdexcept>
- #include <utility>
- #include <cm/filesystem>
- #include <cm/memory>
- #include <cm/optional>
- #include <cm/string_view>
- #if defined(_WIN32) && !defined(__CYGWIN__) && !defined(CMAKE_BOOT_MINGW)
- # include <cm/iterator>
- #endif
- #include <cmext/algorithm>
- #include <cmext/string_view>
- #include "cmsys/FStream.hxx"
- #include "cmsys/Glob.hxx"
- #include "cmsys/RegularExpression.hxx"
- #include "cm_sys_stat.h"
- #include "cmBuildOptions.h"
- #include "cmCMakePath.h"
- #include "cmCMakePresetsGraph.h"
- #include "cmCommandLineArgument.h"
- #include "cmCommands.h"
- #ifdef CMake_ENABLE_DEBUGGER
- # include "cmDebuggerAdapter.h"
- # ifdef _WIN32
- # include "cmDebuggerWindowsPipeConnection.h"
- # else //!_WIN32
- # include "cmDebuggerPosixPipeConnection.h"
- # endif //_WIN32
- #endif
- #include "cmDocumentation.h"
- #include "cmDocumentationEntry.h"
- #include "cmDuration.h"
- #include "cmExternalMakefileProjectGenerator.h"
- #include "cmFileTimeCache.h"
- #include "cmGeneratorTarget.h"
- #include "cmGlobCacheEntry.h"
- #include "cmGlobalGenerator.h"
- #include "cmGlobalGeneratorFactory.h"
- #include "cmLinkLineComputer.h"
- #include "cmLocalGenerator.h"
- #include "cmMakefile.h"
- #if !defined(CMAKE_BOOTSTRAP)
- # include "cmMakefileProfilingData.h"
- #endif
- #include "cmJSONState.h"
- #include "cmList.h"
- #include "cmMessenger.h"
- #ifndef CMAKE_BOOTSTRAP
- # include "cmSarifLog.h"
- #endif
- #include "cmState.h"
- #include "cmStateDirectory.h"
- #include "cmStringAlgorithms.h"
- #include "cmSystemTools.h"
- #include "cmTarget.h"
- #include "cmTargetLinkLibraryType.h"
- #include "cmUVProcessChain.h"
- #include "cmUtils.hxx"
- #include "cmVersionConfig.h"
- #include "cmWorkingDirectory.h"
- #if !defined(CMAKE_BOOTSTRAP)
- # include <unordered_map>
- # include <cm3p/curl/curl.h>
- # include <cm3p/json/writer.h>
- # include "cmConfigureLog.h"
- # include "cmFileAPI.h"
- # include "cmGraphVizWriter.h"
- # include "cmInstrumentation.h"
- # include "cmInstrumentationQuery.h"
- # include "cmVariableWatch.h"
- #endif
- #if defined(__MINGW32__) && defined(CMAKE_BOOTSTRAP)
- # define CMAKE_BOOT_MINGW
- #endif
- // include the generator
- #if defined(_WIN32) && !defined(__CYGWIN__)
- # if !defined(CMAKE_BOOT_MINGW)
- # include <cmext/memory>
- # include "cmGlobalBorlandMakefileGenerator.h"
- # include "cmGlobalJOMMakefileGenerator.h"
- # include "cmGlobalNMakeMakefileGenerator.h"
- # include "cmGlobalVisualStudio14Generator.h"
- # include "cmGlobalVisualStudioVersionedGenerator.h"
- # include "cmVSSetupHelper.h"
- # define CMAKE_HAVE_VS_GENERATORS
- # endif
- # include "cmGlobalMSYSMakefileGenerator.h"
- # include "cmGlobalMinGWMakefileGenerator.h"
- #else
- #endif
- #if defined(CMAKE_USE_WMAKE)
- # include "cmGlobalWatcomWMakeGenerator.h"
- #endif
- #if !defined(CMAKE_BOOTSTRAP)
- # include "cmGlobalNinjaGenerator.h"
- # include "cmGlobalUnixMakefileGenerator3.h"
- #elif defined(CMAKE_BOOTSTRAP_MAKEFILES)
- # include "cmGlobalUnixMakefileGenerator3.h"
- #elif defined(CMAKE_BOOTSTRAP_NINJA)
- # include "cmGlobalNinjaGenerator.h"
- #endif
- #if !defined(CMAKE_BOOTSTRAP)
- # include "cmExtraCodeBlocksGenerator.h"
- # include "cmExtraCodeLiteGenerator.h"
- # include "cmExtraEclipseCDT4Generator.h"
- # include "cmExtraKateGenerator.h"
- # include "cmExtraSublimeTextGenerator.h"
- #endif
- // NOTE: the __linux__ macro is predefined on Android host too, but
- // main CMakeLists.txt filters out this generator by host name.
- #if (defined(__linux__) && !defined(__ANDROID__)) || defined(_WIN32)
- # include "cmGlobalGhsMultiGenerator.h"
- #endif
- #if defined(__APPLE__)
- # if !defined(CMAKE_BOOTSTRAP)
- # include "cmGlobalXCodeGenerator.h"
- # define CMAKE_USE_XCODE 1
- # endif
- # include <sys/resource.h>
- # include <sys/time.h>
- #endif
- namespace {
- #if !defined(CMAKE_BOOTSTRAP)
- using JsonValueMapType = std::unordered_map<std::string, Json::Value>;
- #endif
- auto IgnoreAndTrueLambda = [](std::string const&, cmake*) -> bool {
- return true;
- };
- using CommandArgument =
- cmCommandLineArgument<bool(std::string const& value, cmake* state)>;
- #ifndef CMAKE_BOOTSTRAP
- void cmWarnUnusedCliWarning(std::string const& variable, int /*unused*/,
- void* ctx, char const* /*unused*/,
- cmMakefile const* /*unused*/)
- {
- cmake* cm = reinterpret_cast<cmake*>(ctx);
- cm->MarkCliAsUsed(variable);
- }
- #endif
- bool cmakeCheckStampFile(std::string const& stampName)
- {
- // The stamp file does not exist. Use the stamp dependencies to
- // determine whether it is really out of date. This works in
- // conjunction with cmLocalVisualStudio7Generator to avoid
- // repeatedly re-running CMake when the user rebuilds the entire
- // solution.
- std::string stampDepends = cmStrCat(stampName, ".depend");
- #if defined(_WIN32) || defined(__CYGWIN__)
- cmsys::ifstream fin(stampDepends.c_str(), std::ios::in | std::ios::binary);
- #else
- cmsys::ifstream fin(stampDepends.c_str());
- #endif
- if (!fin) {
- // The stamp dependencies file cannot be read. Just assume the
- // build system is really out of date.
- std::cout << "CMake is re-running because " << stampName
- << " dependency file is missing.\n";
- return false;
- }
- // Compare the stamp dependencies against the dependency file itself.
- {
- cmFileTimeCache ftc;
- std::string dep;
- while (cmSystemTools::GetLineFromStream(fin, dep)) {
- int result;
- if (!dep.empty() && dep[0] != '#' &&
- (!ftc.Compare(stampDepends, dep, &result) || result < 0)) {
- // The stamp depends file is older than this dependency. The
- // build system is really out of date.
- /* clang-format off */
- std::cout << "CMake is re-running because " << stampName
- << " is out-of-date.\n"
- " the file '" << dep << "'\n"
- " is newer than '" << stampDepends << "'\n"
- " result='" << result << "'\n";
- /* clang-format on */
- return false;
- }
- }
- }
- // The build system is up to date. The stamp file has been removed
- // by the VS IDE due to a "rebuild" request. Restore it atomically.
- std::ostringstream stampTempStream;
- stampTempStream << stampName << ".tmp" << cmSystemTools::RandomNumber();
- std::string stampTemp = stampTempStream.str();
- {
- // TODO: Teach cmGeneratedFileStream to use a random temp file (with
- // multiple tries in unlikely case of conflict) and use that here.
- cmsys::ofstream stamp(stampTemp.c_str());
- stamp << "# CMake generation timestamp file for this directory.\n";
- }
- std::string err;
- if (cmSystemTools::RenameFile(stampTemp, stampName,
- cmSystemTools::Replace::Yes, &err) ==
- cmSystemTools::RenameResult::Success) {
- // CMake does not need to re-run because the stamp file is up-to-date.
- return true;
- }
- cmSystemTools::RemoveFile(stampTemp);
- cmSystemTools::Error(
- cmStrCat("Cannot restore timestamp \"", stampName, "\": ", err));
- return false;
- }
- bool cmakeCheckStampList(std::string const& stampList)
- {
- // If the stamp list does not exist CMake must rerun to generate it.
- if (!cmSystemTools::FileExists(stampList)) {
- std::cout << "CMake is re-running because generate.stamp.list "
- "is missing.\n";
- return false;
- }
- cmsys::ifstream fin(stampList.c_str());
- if (!fin) {
- std::cout << "CMake is re-running because generate.stamp.list "
- "could not be read.\n";
- return false;
- }
- // Check each stamp.
- std::string stampName;
- while (cmSystemTools::GetLineFromStream(fin, stampName)) {
- if (!cmakeCheckStampFile(stampName)) {
- return false;
- }
- }
- return true;
- }
- } // namespace
- cmDocumentationEntry cmake::CMAKE_STANDARD_OPTIONS_TABLE[19] = {
- { "-S <path-to-source>", "Explicitly specify a source directory." },
- { "-B <path-to-build>", "Explicitly specify a build directory." },
- { "-C <initial-cache>", "Pre-load a script to populate the cache." },
- { "-D <var>[:<type>]=<value>", "Create or update a cmake cache entry." },
- { "-U <globbing_expr>", "Remove matching entries from CMake cache." },
- { "-G <generator-name>", "Specify a build system generator." },
- { "-T <toolset-name>", "Specify toolset name if supported by generator." },
- { "-A <platform-name>", "Specify platform name if supported by generator." },
- { "--toolchain <file>", "Specify toolchain file [CMAKE_TOOLCHAIN_FILE]." },
- { "--install-prefix <directory>",
- "Specify install directory [CMAKE_INSTALL_PREFIX]." },
- { "--project-file <project-file-name>",
- "Specify an alternate project file name." },
- { "-Wdev", "Enable developer warnings." },
- { "-Wno-dev", "Suppress developer warnings." },
- { "-Werror=dev", "Make developer warnings errors." },
- { "-Wno-error=dev", "Make developer warnings not errors." },
- { "-Wdeprecated", "Enable deprecation warnings." },
- { "-Wno-deprecated", "Suppress deprecation warnings." },
- { "-Werror=deprecated",
- "Make deprecated macro and function warnings "
- "errors." },
- { "-Wno-error=deprecated",
- "Make deprecated macro and function warnings "
- "not errors." }
- };
- cmake::cmake(Role role, cmState::Mode mode, cmState::ProjectKind projectKind)
- : CMakeWorkingDirectory(cmSystemTools::GetLogicalWorkingDirectory())
- , FileTimeCache(cm::make_unique<cmFileTimeCache>())
- #ifndef CMAKE_BOOTSTRAP
- , VariableWatch(cm::make_unique<cmVariableWatch>())
- #endif
- , State(cm::make_unique<cmState>(mode, projectKind))
- , Messenger(cm::make_unique<cmMessenger>())
- {
- this->TraceFile.close();
- this->CurrentSnapshot = this->State->CreateBaseSnapshot();
- #ifdef __APPLE__
- struct rlimit rlp;
- if (!getrlimit(RLIMIT_STACK, &rlp)) {
- if (rlp.rlim_cur != rlp.rlim_max) {
- rlp.rlim_cur = rlp.rlim_max;
- setrlimit(RLIMIT_STACK, &rlp);
- }
- }
- #endif
- this->AddDefaultGenerators();
- this->AddDefaultExtraGenerators();
- if (role == RoleScript || role == RoleProject) {
- this->AddScriptingCommands();
- }
- if (role == RoleProject) {
- this->AddProjectCommands();
- }
- if (mode == cmState::Project || mode == cmState::Help) {
- this->LoadEnvironmentPresets();
- }
- // Make sure we can capture the build tool output.
- cmSystemTools::EnableVSConsoleOutput();
- // Set up a list of source and header extensions.
- // These are used to find files when the extension is not given.
- {
- auto setupExts = [](FileExtensions& exts,
- std::initializer_list<cm::string_view> extList) {
- // Fill ordered vector
- exts.ordered.reserve(extList.size());
- for (cm::string_view ext : extList) {
- exts.ordered.emplace_back(ext);
- }
- // Fill unordered set
- exts.unordered.insert(exts.ordered.begin(), exts.ordered.end());
- };
- // The "c" extension MUST precede the "C" extension.
- setupExts(this->CLikeSourceFileExtensions,
- { "c", "C", "c++", "cc", "cpp", "cxx", "cu", "mpp", "m", "M",
- "mm", "ixx", "cppm", "ccm", "cxxm", "c++m" });
- setupExts(this->HeaderFileExtensions,
- { "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" });
- setupExts(this->CudaFileExtensions, { "cu" });
- setupExts(this->FortranFileExtensions,
- { "f", "F", "for", "f77", "f90", "f95", "f03" });
- setupExts(this->HipFileExtensions, { "hip" });
- setupExts(this->ISPCFileExtensions, { "ispc" });
- }
- }
- cmake::~cmake() = default;
- #if !defined(CMAKE_BOOTSTRAP)
- Json::Value cmake::ReportVersionJson() const
- {
- Json::Value version = Json::objectValue;
- version["string"] = CMake_VERSION;
- version["major"] = CMake_VERSION_MAJOR;
- version["minor"] = CMake_VERSION_MINOR;
- version["suffix"] = CMake_VERSION_SUFFIX;
- version["isDirty"] = (CMake_VERSION_IS_DIRTY == 1);
- version["patch"] = CMake_VERSION_PATCH;
- return version;
- }
- Json::Value cmake::ReportCapabilitiesJson() const
- {
- Json::Value obj = Json::objectValue;
- // Version information:
- obj["version"] = this->ReportVersionJson();
- // Generators:
- std::vector<cmake::GeneratorInfo> generatorInfoList;
- this->GetRegisteredGenerators(generatorInfoList);
- auto* curlVersion = curl_version_info(CURLVERSION_FIRST);
- JsonValueMapType generatorMap;
- for (cmake::GeneratorInfo const& gi : generatorInfoList) {
- if (gi.isAlias) { // skip aliases, they are there for compatibility reasons
- // only
- continue;
- }
- if (gi.extraName.empty()) {
- Json::Value gen = Json::objectValue;
- gen["name"] = gi.name;
- gen["toolsetSupport"] = gi.supportsToolset;
- gen["platformSupport"] = gi.supportsPlatform;
- if (!gi.supportedPlatforms.empty()) {
- Json::Value supportedPlatforms = Json::arrayValue;
- for (std::string const& platform : gi.supportedPlatforms) {
- supportedPlatforms.append(platform);
- }
- gen["supportedPlatforms"] = std::move(supportedPlatforms);
- }
- gen["extraGenerators"] = Json::arrayValue;
- generatorMap[gi.name] = gen;
- } else {
- Json::Value& gen = generatorMap[gi.baseName];
- gen["extraGenerators"].append(gi.extraName);
- }
- }
- Json::Value generators = Json::arrayValue;
- for (auto const& i : generatorMap) {
- generators.append(i.second);
- }
- obj["generators"] = generators;
- obj["fileApi"] = cmFileAPI::ReportCapabilities();
- obj["serverMode"] = false;
- obj["tls"] = static_cast<bool>(curlVersion->features & CURL_VERSION_SSL);
- # ifdef CMake_ENABLE_DEBUGGER
- obj["debugger"] = true;
- # else
- obj["debugger"] = false;
- # endif
- return obj;
- }
- #endif
- std::string cmake::ReportCapabilities() const
- {
- std::string result;
- #if !defined(CMAKE_BOOTSTRAP)
- Json::FastWriter writer;
- result = writer.write(this->ReportCapabilitiesJson());
- #else
- result = "Not supported";
- #endif
- return result;
- }
- void cmake::CleanupCommandsAndMacros()
- {
- this->CurrentSnapshot = this->State->Reset();
- this->State->RemoveUserDefinedCommands();
- this->CurrentSnapshot.SetDefaultDefinitions();
- // FIXME: InstalledFiles probably belongs in the global generator.
- this->InstalledFiles.clear();
- }
- #ifndef CMAKE_BOOTSTRAP
- void cmake::SetWarningFromPreset(std::string const& name,
- cm::optional<bool> const& warning,
- cm::optional<bool> const& error)
- {
- if (warning) {
- if (*warning) {
- this->DiagLevels[name] = std::max(this->DiagLevels[name], DIAG_WARN);
- } else {
- this->DiagLevels[name] = DIAG_IGNORE;
- }
- }
- if (error) {
- if (*error) {
- this->DiagLevels[name] = DIAG_ERROR;
- } else {
- this->DiagLevels[name] = std::min(this->DiagLevels[name], DIAG_WARN);
- }
- }
- }
- void cmake::ProcessPresetVariables()
- {
- for (auto const& var : this->UnprocessedPresetVariables) {
- if (!var.second) {
- continue;
- }
- cmStateEnums::CacheEntryType type = cmStateEnums::UNINITIALIZED;
- if (!var.second->Type.empty()) {
- type = cmState::StringToCacheEntryType(var.second->Type);
- }
- this->ProcessCacheArg(var.first, var.second->Value, type);
- }
- }
- void cmake::PrintPresetVariables()
- {
- bool first = true;
- for (auto const& var : this->UnprocessedPresetVariables) {
- if (!var.second) {
- continue;
- }
- cmStateEnums::CacheEntryType type = cmStateEnums::UNINITIALIZED;
- if (!var.second->Type.empty()) {
- type = cmState::StringToCacheEntryType(var.second->Type);
- }
- if (first) {
- std::cout << "Preset CMake variables:\n\n";
- first = false;
- }
- std::cout << " " << var.first;
- if (type != cmStateEnums::UNINITIALIZED) {
- std::cout << ':' << cmState::CacheEntryTypeToString(type);
- }
- std::cout << "=\"" << var.second->Value << "\"\n";
- }
- if (!first) {
- std::cout << '\n';
- }
- this->UnprocessedPresetVariables.clear();
- }
- void cmake::ProcessPresetEnvironment()
- {
- for (auto const& var : this->UnprocessedPresetEnvironment) {
- if (var.second) {
- cmSystemTools::PutEnv(cmStrCat(var.first, '=', *var.second));
- }
- }
- }
- void cmake::PrintPresetEnvironment()
- {
- bool first = true;
- for (auto const& var : this->UnprocessedPresetEnvironment) {
- if (!var.second) {
- continue;
- }
- if (first) {
- std::cout << "Preset environment variables:\n\n";
- first = false;
- }
- std::cout << " " << var.first << "=\"" << *var.second << "\"\n";
- }
- if (!first) {
- std::cout << '\n';
- }
- this->UnprocessedPresetEnvironment.clear();
- }
- #endif
- // Parse the args
- bool cmake::SetCacheArgs(std::vector<std::string> const& args)
- {
- static std::string const kCMAKE_POLICY_VERSION_MINIMUM =
- "CMAKE_POLICY_VERSION_MINIMUM";
- if (!this->State->GetInitializedCacheValue(kCMAKE_POLICY_VERSION_MINIMUM)) {
- cm::optional<std::string> policyVersion =
- cmSystemTools::GetEnvVar(kCMAKE_POLICY_VERSION_MINIMUM);
- if (policyVersion && !policyVersion->empty()) {
- this->AddCacheEntry(
- kCMAKE_POLICY_VERSION_MINIMUM, *policyVersion,
- "Override policy version for cmake_minimum_required calls.",
- cmStateEnums::STRING);
- this->State->SetCacheEntryProperty(kCMAKE_POLICY_VERSION_MINIMUM,
- "ADVANCED", "1");
- }
- }
- auto DefineLambda = [](std::string const& entry, cmake* state) -> bool {
- std::string var;
- std::string value;
- cmStateEnums::CacheEntryType type = cmStateEnums::UNINITIALIZED;
- if (cmState::ParseCacheEntry(entry, var, value, type)) {
- #ifndef CMAKE_BOOTSTRAP
- state->UnprocessedPresetVariables.erase(var);
- #endif
- state->ProcessCacheArg(var, value, type);
- } else {
- cmSystemTools::Error(cmStrCat("Parse error in command line argument: ",
- entry, "\n Should be: VAR:type=value\n"));
- return false;
- }
- return true;
- };
- auto WarningLambda = [](cm::string_view entry, cmake* state) -> bool {
- bool foundNo = false;
- bool foundError = false;
- if (cmHasLiteralPrefix(entry, "no-")) {
- foundNo = true;
- entry.remove_prefix(3);
- }
- if (cmHasLiteralPrefix(entry, "error=")) {
- foundError = true;
- entry.remove_prefix(6);
- }
- if (entry.empty()) {
- cmSystemTools::Error("No warning name provided.");
- return false;
- }
- std::string const name = std::string(entry);
- if (!foundNo && !foundError) {
- // -W<name>
- state->DiagLevels[name] = std::max(state->DiagLevels[name], DIAG_WARN);
- } else if (foundNo && !foundError) {
- // -Wno<name>
- state->DiagLevels[name] = DIAG_IGNORE;
- } else if (!foundNo && foundError) {
- // -Werror=<name>
- state->DiagLevels[name] = DIAG_ERROR;
- } else {
- // -Wno-error=<name>
- // This can downgrade an error to a warning, but should not enable
- // or disable a warning in the first place.
- auto dli = state->DiagLevels.find(name);
- if (dli != state->DiagLevels.end()) {
- dli->second = std::min(dli->second, DIAG_WARN);
- }
- }
- return true;
- };
- auto UnSetLambda = [](std::string const& entryPattern,
- cmake* state) -> bool {
- cmsys::RegularExpression regex(
- cmsys::Glob::PatternToRegex(entryPattern, true, true));
- // go through all cache entries and collect the vars which will be
- // removed
- std::vector<std::string> entriesToDelete;
- std::vector<std::string> cacheKeys = state->State->GetCacheEntryKeys();
- for (std::string const& ck : cacheKeys) {
- cmStateEnums::CacheEntryType t = state->State->GetCacheEntryType(ck);
- if (t != cmStateEnums::STATIC) {
- if (regex.find(ck)) {
- entriesToDelete.push_back(ck);
- }
- }
- }
- // now remove them from the cache
- for (std::string const& currentEntry : entriesToDelete) {
- #ifndef CMAKE_BOOTSTRAP
- state->UnprocessedPresetVariables.erase(currentEntry);
- #endif
- state->State->RemoveCacheEntry(currentEntry);
- }
- return true;
- };
- auto ScriptLambda = [&](std::string const& path, cmake* state) -> bool {
- #ifdef CMake_ENABLE_DEBUGGER
- // Script mode doesn't hit the usual code path in cmake::Run() that starts
- // the debugger, so start it manually here instead.
- if (!this->StartDebuggerIfEnabled()) {
- return false;
- }
- #endif
- // Register fake project commands that hint misuse in script mode.
- GetProjectCommandsInScriptMode(state->GetState());
- // Documented behavior of CMAKE{,_CURRENT}_{SOURCE,BINARY}_DIR is to be
- // set to $PWD for -P mode.
- state->SetWorkingMode(SCRIPT_MODE,
- cmake::CommandFailureAction::FATAL_ERROR);
- state->SetHomeDirectory(cmSystemTools::GetLogicalWorkingDirectory());
- state->SetHomeOutputDirectory(cmSystemTools::GetLogicalWorkingDirectory());
- state->ReadListFile(args, path);
- return true;
- };
- auto PrefixLambda = [&](std::string const& path, cmake* state) -> bool {
- std::string const var = "CMAKE_INSTALL_PREFIX";
- cmStateEnums::CacheEntryType type = cmStateEnums::PATH;
- cmCMakePath absolutePath(path);
- if (absolutePath.IsAbsolute()) {
- #ifndef CMAKE_BOOTSTRAP
- state->UnprocessedPresetVariables.erase(var);
- #endif
- state->ProcessCacheArg(var, path, type);
- return true;
- }
- cmSystemTools::Error("Absolute paths are required for --install-prefix");
- return false;
- };
- auto ToolchainLambda = [&](std::string const& path, cmake* state) -> bool {
- std::string const var = "CMAKE_TOOLCHAIN_FILE";
- cmStateEnums::CacheEntryType type = cmStateEnums::FILEPATH;
- #ifndef CMAKE_BOOTSTRAP
- state->UnprocessedPresetVariables.erase(var);
- #endif
- state->ProcessCacheArg(var, path, type);
- return true;
- };
- std::vector<CommandArgument> arguments = {
- CommandArgument{ "-D", "-D must be followed with VAR=VALUE.",
- CommandArgument::Values::One,
- CommandArgument::RequiresSeparator::No, DefineLambda },
- CommandArgument{ "-W", "-W must be followed with [no-]<name>.",
- CommandArgument::Values::One,
- CommandArgument::RequiresSeparator::No, WarningLambda },
- CommandArgument{ "-U", "-U must be followed with VAR.",
- CommandArgument::Values::One,
- CommandArgument::RequiresSeparator::No, UnSetLambda },
- CommandArgument{
- "-C", "-C must be followed by a file name.",
- CommandArgument::Values::One, CommandArgument::RequiresSeparator::No,
- [&](std::string const& value, cmake* state) -> bool {
- if (value.empty()) {
- cmSystemTools::Error("No file name specified for -C");
- return false;
- }
- cmSystemTools::Stdout("loading initial cache file " + value + "\n");
- // Resolve script path specified on command line
- // relative to $PWD.
- auto path = cmSystemTools::ToNormalizedPathOnDisk(value);
- state->ReadListFile(args, path);
- return true;
- } },
- CommandArgument{ "-P", "-P must be followed by a file name.",
- CommandArgument::Values::One,
- CommandArgument::RequiresSeparator::No, ScriptLambda },
- CommandArgument{ "--toolchain", "No file specified for --toolchain",
- CommandArgument::Values::One, ToolchainLambda },
- CommandArgument{ "--install-prefix",
- "No install directory specified for --install-prefix",
- CommandArgument::Values::One, PrefixLambda },
- CommandArgument{ "--find-package", CommandArgument::Values::Zero,
- IgnoreAndTrueLambda },
- };
- for (decltype(args.size()) i = 1; i < args.size(); ++i) {
- std::string const& arg = args[i];
- if (arg == "--" && this->GetWorkingMode() == SCRIPT_MODE) {
- // Stop processing CMake args and avoid possible errors
- // when arbitrary args are given to CMake script.
- break;
- }
- for (auto const& m : arguments) {
- if (m.matches(arg)) {
- bool const parsedCorrectly = m.parse(arg, i, args, this);
- if (!parsedCorrectly) {
- return false;
- }
- }
- }
- }
- if (this->GetWorkingMode() == FIND_PACKAGE_MODE) {
- return this->FindPackage(args);
- }
- return true;
- }
- void cmake::ProcessCacheArg(std::string const& var, std::string const& value,
- cmStateEnums::CacheEntryType type)
- {
- // The value is transformed if it is a filepath for example, so
- // we can't compare whether the value is already in the cache until
- // after we call AddCacheEntry.
- bool haveValue = false;
- std::string cachedValue;
- if (this->WarnUnusedCli) {
- if (cmValue v = this->State->GetInitializedCacheValue(var)) {
- haveValue = true;
- cachedValue = *v;
- }
- }
- this->AddCacheEntry(
- var, value, "No help, variable specified on the command line.", type);
- if (this->WarnUnusedCli) {
- if (!haveValue ||
- cachedValue != *this->State->GetInitializedCacheValue(var)) {
- this->WatchUnusedCli(var);
- }
- }
- }
- void cmake::ReadListFile(std::vector<std::string> const& args,
- std::string const& path)
- {
- // if a generator was not yet created, temporarily create one
- cmGlobalGenerator* gg = this->GetGlobalGenerator();
- // if a generator was not specified use a generic one
- std::unique_ptr<cmGlobalGenerator> gen;
- if (!gg) {
- gen = cm::make_unique<cmGlobalGenerator>(this);
- gg = gen.get();
- }
- // read in the list file to fill the cache
- if (!path.empty()) {
- this->CurrentSnapshot = this->State->Reset();
- cmStateSnapshot snapshot = this->GetCurrentSnapshot();
- snapshot.GetDirectory().SetCurrentBinary(this->GetHomeOutputDirectory());
- snapshot.GetDirectory().SetCurrentSource(this->GetHomeDirectory());
- snapshot.SetDefaultDefinitions();
- cmMakefile mf(gg, snapshot);
- if (this->GetWorkingMode() != NORMAL_MODE) {
- mf.SetScriptModeFile(cmSystemTools::ToNormalizedPathOnDisk(path));
- mf.SetArgcArgv(args);
- }
- if (!cmSystemTools::FileExists(path, true)) {
- cmSystemTools::Error("Not a file: " + path);
- }
- if (!mf.ReadListFile(path)) {
- cmSystemTools::Error("Error processing file: " + path);
- }
- }
- }
- bool cmake::FindPackage(std::vector<std::string> const& args)
- {
- this->SetHomeDirectory(cmSystemTools::GetLogicalWorkingDirectory());
- this->SetHomeOutputDirectory(cmSystemTools::GetLogicalWorkingDirectory());
- this->SetGlobalGenerator(cm::make_unique<cmGlobalGenerator>(this));
- cmStateSnapshot snapshot = this->GetCurrentSnapshot();
- snapshot.GetDirectory().SetCurrentBinary(
- cmSystemTools::GetLogicalWorkingDirectory());
- snapshot.GetDirectory().SetCurrentSource(
- cmSystemTools::GetLogicalWorkingDirectory());
- // read in the list file to fill the cache
- snapshot.SetDefaultDefinitions();
- auto mfu = cm::make_unique<cmMakefile>(this->GetGlobalGenerator(), snapshot);
- cmMakefile* mf = mfu.get();
- this->GlobalGenerator->AddMakefile(std::move(mfu));
- mf->SetArgcArgv(args);
- std::string systemFile = mf->GetModulesFile("CMakeFindPackageMode.cmake");
- mf->ReadListFile(systemFile);
- std::string language = mf->GetSafeDefinition("LANGUAGE");
- std::string mode = mf->GetSafeDefinition("MODE");
- std::string packageName = mf->GetSafeDefinition("NAME");
- bool packageFound = mf->IsOn("PACKAGE_FOUND");
- bool quiet = mf->IsOn("PACKAGE_QUIET");
- if (!packageFound) {
- if (!quiet) {
- printf("%s not found.\n", packageName.c_str());
- }
- } else if (mode == "EXIST"_s) {
- if (!quiet) {
- printf("%s found.\n", packageName.c_str());
- }
- } else if (mode == "COMPILE"_s) {
- std::string includes = mf->GetSafeDefinition("PACKAGE_INCLUDE_DIRS");
- cmList includeDirs{ includes };
- this->GlobalGenerator->CreateGenerationObjects();
- auto const& lg = this->GlobalGenerator->LocalGenerators[0];
- std::string includeFlags =
- lg->GetIncludeFlags(includeDirs, nullptr, language, std::string());
- std::string definitions = mf->GetSafeDefinition("PACKAGE_DEFINITIONS");
- printf("%s %s\n", includeFlags.c_str(), definitions.c_str());
- } else if (mode == "LINK"_s) {
- char const* targetName = "dummy";
- std::vector<std::string> srcs;
- cmTarget* tgt = mf->AddExecutable(targetName, srcs, true);
- tgt->SetProperty("LINKER_LANGUAGE", language);
- std::string libs = mf->GetSafeDefinition("PACKAGE_LIBRARIES");
- cmList libList{ libs };
- for (std::string const& lib : libList) {
- tgt->AddLinkLibrary(*mf, lib, GENERAL_LibraryType);
- }
- std::string buildType = mf->GetSafeDefinition("CMAKE_BUILD_TYPE");
- buildType = cmSystemTools::UpperCase(buildType);
- std::string linkLibs;
- std::string frameworkPath;
- std::string linkPath;
- std::string flags;
- std::string linkFlags;
- this->GlobalGenerator->CreateGenerationObjects();
- cmGeneratorTarget* gtgt =
- this->GlobalGenerator->FindGeneratorTarget(tgt->GetName());
- cmLocalGenerator* lg = gtgt->GetLocalGenerator();
- cmLinkLineComputer linkLineComputer(lg,
- lg->GetStateSnapshot().GetDirectory());
- lg->GetTargetFlags(&linkLineComputer, buildType, linkLibs, flags,
- linkFlags, frameworkPath, linkPath, gtgt);
- linkLibs = frameworkPath + linkPath + linkLibs;
- printf("%s\n", linkLibs.c_str());
- /* if ( use_win32 )
- {
- tgt->SetProperty("WIN32_EXECUTABLE", "ON");
- }
- if ( use_macbundle)
- {
- tgt->SetProperty("MACOSX_BUNDLE", "ON");
- }*/
- }
- return packageFound;
- }
- void cmake::LoadEnvironmentPresets()
- {
- std::string envGenVar;
- bool hasEnvironmentGenerator = false;
- if (cmSystemTools::GetEnv("CMAKE_GENERATOR", envGenVar)) {
- hasEnvironmentGenerator = true;
- this->EnvironmentGenerator = envGenVar;
- }
- auto readGeneratorVar = [&](std::string const& name, std::string& key) {
- std::string varValue;
- if (cmSystemTools::GetEnv(name, varValue)) {
- if (hasEnvironmentGenerator) {
- key = varValue;
- } else if (!this->GetIsInTryCompile()) {
- std::string message =
- cmStrCat("Warning: Environment variable ", name,
- " will be ignored, because CMAKE_GENERATOR is not set.");
- cmSystemTools::Message(message, "Warning");
- }
- }
- };
- readGeneratorVar("CMAKE_GENERATOR_INSTANCE", this->GeneratorInstance);
- readGeneratorVar("CMAKE_GENERATOR_PLATFORM", this->GeneratorPlatform);
- readGeneratorVar("CMAKE_GENERATOR_TOOLSET", this->GeneratorToolset);
- }
- namespace {
- enum class ListPresets
- {
- None,
- Configure,
- Build,
- Test,
- Package,
- Workflow,
- All,
- };
- }
- // Parse the args
- void cmake::SetArgs(std::vector<std::string> const& args)
- {
- this->cmdArgs = args;
- bool haveToolset = false;
- bool havePlatform = false;
- bool haveBArg = false;
- bool haveCMLName = false;
- std::string possibleUnknownArg;
- std::string extraProvidedPath;
- #if !defined(CMAKE_BOOTSTRAP)
- std::string profilingFormat;
- std::string profilingOutput;
- std::string presetName;
- ListPresets listPresets = ListPresets::None;
- #endif
- auto EmptyStringArgLambda = [](std::string const&, cmake* state) -> bool {
- state->IssueMessage(
- MessageType::WARNING,
- "Ignoring empty string (\"\") provided on the command line.");
- return true;
- };
- auto SourceArgLambda = [](std::string const& value, cmake* state) -> bool {
- if (value.empty()) {
- cmSystemTools::Error("No source directory specified for -S");
- return false;
- }
- state->SetHomeDirectoryViaCommandLine(
- cmSystemTools::ToNormalizedPathOnDisk(value));
- return true;
- };
- auto BuildArgLambda = [&](std::string const& value, cmake* state) -> bool {
- if (value.empty()) {
- cmSystemTools::Error("No build directory specified for -B");
- return false;
- }
- state->SetHomeOutputDirectory(
- cmSystemTools::ToNormalizedPathOnDisk(value));
- haveBArg = true;
- return true;
- };
- auto PlatformLambda = [&](std::string const& value, cmake* state) -> bool {
- if (havePlatform) {
- cmSystemTools::Error("Multiple -A options not allowed");
- return false;
- }
- state->SetGeneratorPlatform(value);
- havePlatform = true;
- return true;
- };
- auto ToolsetLambda = [&](std::string const& value, cmake* state) -> bool {
- if (haveToolset) {
- cmSystemTools::Error("Multiple -T options not allowed");
- return false;
- }
- state->SetGeneratorToolset(value);
- haveToolset = true;
- return true;
- };
- auto CMakeListsFileLambda = [&](std::string const& value,
- cmake* state) -> bool {
- if (haveCMLName) {
- cmSystemTools::Error("Multiple --project-file options not allowed");
- return false;
- }
- state->SetCMakeListName(value);
- haveCMLName = true;
- return true;
- };
- std::vector<CommandArgument> arguments = {
- CommandArgument{ "", CommandArgument::Values::Zero, EmptyStringArgLambda },
- CommandArgument{ "-S", "No source directory specified for -S",
- CommandArgument::Values::One,
- CommandArgument::RequiresSeparator::No, SourceArgLambda },
- CommandArgument{ "-H", "No source directory specified for -H",
- CommandArgument::Values::One,
- CommandArgument::RequiresSeparator::No, SourceArgLambda },
- CommandArgument{ "-O", CommandArgument::Values::Zero,
- IgnoreAndTrueLambda },
- CommandArgument{ "-B", "No build directory specified for -B",
- CommandArgument::Values::One,
- CommandArgument::RequiresSeparator::No, BuildArgLambda },
- CommandArgument{ "--fresh", CommandArgument::Values::Zero,
- [](std::string const&, cmake* cm) -> bool {
- cm->FreshCache = true;
- return true;
- } },
- CommandArgument{ "-P", "-P must be followed by a file name.",
- CommandArgument::Values::One,
- CommandArgument::RequiresSeparator::No,
- IgnoreAndTrueLambda },
- CommandArgument{ "-D", "-D must be followed with VAR=VALUE.",
- CommandArgument::Values::One,
- CommandArgument::RequiresSeparator::No,
- IgnoreAndTrueLambda },
- CommandArgument{ "-C", "-C must be followed by a file name.",
- CommandArgument::Values::One,
- CommandArgument::RequiresSeparator::No,
- IgnoreAndTrueLambda },
- CommandArgument{
- "-U", "-U must be followed with VAR.", CommandArgument::Values::One,
- CommandArgument::RequiresSeparator::No, IgnoreAndTrueLambda },
- CommandArgument{ "-W", "-W must be followed with [no-]<name>.",
- CommandArgument::Values::One,
- CommandArgument::RequiresSeparator::No,
- IgnoreAndTrueLambda },
- CommandArgument{ "-A", "No platform specified for -A",
- CommandArgument::Values::One,
- CommandArgument::RequiresSeparator::No, PlatformLambda },
- CommandArgument{ "-T", "No toolset specified for -T",
- CommandArgument::Values::One,
- CommandArgument::RequiresSeparator::No, ToolsetLambda },
- CommandArgument{ "--toolchain", "No file specified for --toolchain",
- CommandArgument::Values::One, IgnoreAndTrueLambda },
- CommandArgument{ "--install-prefix",
- "No install directory specified for --install-prefix",
- CommandArgument::Values::One, IgnoreAndTrueLambda },
- CommandArgument{ "--check-build-system", CommandArgument::Values::Two,
- [](std::string const& value, cmake* state) -> bool {
- cmList values{ value };
- state->CheckBuildSystemArgument = values[0];
- state->ClearBuildSystem = (atoi(values[1].c_str()) > 0);
- return true;
- } },
- CommandArgument{ "--check-stamp-file", CommandArgument::Values::One,
- [](std::string const& value, cmake* state) -> bool {
- state->CheckStampFile = value;
- return true;
- } },
- CommandArgument{ "--check-stamp-list", CommandArgument::Values::One,
- [](std::string const& value, cmake* state) -> bool {
- state->CheckStampList = value;
- return true;
- } },
- CommandArgument{ "--regenerate-during-build",
- CommandArgument::Values::Zero,
- [](std::string const&, cmake* state) -> bool {
- state->RegenerateDuringBuild = true;
- return true;
- } },
- CommandArgument{ "--find-package", CommandArgument::Values::Zero,
- IgnoreAndTrueLambda },
- CommandArgument{ "--graphviz", "No file specified for --graphviz",
- CommandArgument::Values::One,
- [](std::string const& value, cmake* state) -> bool {
- state->SetGraphVizFile(
- cmSystemTools::ToNormalizedPathOnDisk(value));
- return true;
- } },
- CommandArgument{ "--debug-trycompile", CommandArgument::Values::Zero,
- [](std::string const&, cmake* state) -> bool {
- std::cout << "debug trycompile on\n";
- state->DebugTryCompileOn();
- return true;
- } },
- CommandArgument{ "--debug-output", CommandArgument::Values::Zero,
- [](std::string const&, cmake* state) -> bool {
- std::cout << "Running with debug output on.\n";
- state->SetDebugOutputOn(true);
- return true;
- } },
- CommandArgument{ "--log-level", "Invalid level specified for --log-level",
- CommandArgument::Values::One,
- [](std::string const& value, cmake* state) -> bool {
- auto const logLevel = StringToLogLevel(value);
- if (logLevel == Message::LogLevel::LOG_UNDEFINED) {
- cmSystemTools::Error(
- "Invalid level specified for --log-level");
- return false;
- }
- state->SetLogLevel(logLevel);
- state->LogLevelWasSetViaCLI = true;
- return true;
- } },
- // This is supported for backward compatibility. This option only
- // appeared in the 3.15.x release series and was renamed to
- // --log-level in 3.16.0
- CommandArgument{ "--loglevel", "Invalid level specified for --loglevel",
- CommandArgument::Values::One,
- [](std::string const& value, cmake* state) -> bool {
- auto const logLevel = StringToLogLevel(value);
- if (logLevel == Message::LogLevel::LOG_UNDEFINED) {
- cmSystemTools::Error(
- "Invalid level specified for --loglevel");
- return false;
- }
- state->SetLogLevel(logLevel);
- state->LogLevelWasSetViaCLI = true;
- return true;
- } },
- CommandArgument{ "--log-context", CommandArgument::Values::Zero,
- [](std::string const&, cmake* state) -> bool {
- state->SetShowLogContext(true);
- return true;
- } },
- CommandArgument{ "--project-file",
- "No filename specified for --project-file",
- CommandArgument::Values::One, CMakeListsFileLambda },
- CommandArgument{
- "--debug-find", CommandArgument::Values::Zero,
- [](std::string const&, cmake* state) -> bool {
- std::cout << "Running with debug output on for the `find` commands.\n";
- state->SetDebugFindOutput(true);
- return true;
- } },
- CommandArgument{
- "--debug-find-pkg", "Provide a package argument for --debug-find-pkg",
- CommandArgument::Values::One, CommandArgument::RequiresSeparator::Yes,
- [](std::string const& value, cmake* state) -> bool {
- std::vector<std::string> find_pkgs(cmTokenize(value, ','));
- std::cout << "Running with debug output on for the 'find' commands "
- "for package(s)";
- for (auto const& v : find_pkgs) {
- std::cout << ' ' << v;
- state->SetDebugFindOutputPkgs(v);
- }
- std::cout << ".\n";
- return true;
- } },
- CommandArgument{
- "--debug-find-var", CommandArgument::Values::One,
- CommandArgument::RequiresSeparator::Yes,
- [](std::string const& value, cmake* state) -> bool {
- std::vector<std::string> find_vars(cmTokenize(value, ','));
- std::cout << "Running with debug output on for the variable(s)";
- for (auto const& v : find_vars) {
- std::cout << ' ' << v;
- state->SetDebugFindOutputVars(v);
- }
- std::cout << ".\n";
- return true;
- } },
- CommandArgument{ "--trace", CommandArgument::Values::Zero,
- [](std::string const&, cmake* state) -> bool {
- std::cout << "Put cmake in trace mode.\n";
- state->SetTrace(true);
- state->SetTraceExpand(false);
- return true;
- } },
- CommandArgument{ "--trace-expand", CommandArgument::Values::Zero,
- [](std::string const&, cmake* state) -> bool {
- std::cout << "Put cmake in trace mode, but with "
- "variables expanded.\n";
- state->SetTrace(true);
- state->SetTraceExpand(true);
- return true;
- } },
- CommandArgument{
- "--trace-format", "Invalid format specified for --trace-format",
- CommandArgument::Values::One,
- [](std::string const& value, cmake* state) -> bool {
- std::cout << "Put cmake in trace mode and sets the "
- "trace output format.\n";
- state->SetTrace(true);
- auto const traceFormat = StringToTraceFormat(value);
- if (traceFormat == TraceFormat::Undefined) {
- cmSystemTools::Error("Invalid format specified for --trace-format. "
- "Valid formats are human, json-v1.");
- return false;
- }
- state->SetTraceFormat(traceFormat);
- return true;
- } },
- CommandArgument{ "--trace-source", "No file specified for --trace-source",
- CommandArgument::Values::OneOrMore,
- [](std::string const& values, cmake* state) -> bool {
- std::cout << "Put cmake in trace mode, but output only "
- "lines of a specified file. Multiple "
- "options are allowed.\n";
- for (auto file :
- cmSystemTools::SplitString(values, ';')) {
- cmSystemTools::ConvertToUnixSlashes(file);
- state->AddTraceSource(file);
- }
- state->SetTrace(true);
- return true;
- } },
- CommandArgument{ "--trace-redirect",
- "No file specified for --trace-redirect",
- CommandArgument::Values::One,
- [](std::string const& value, cmake* state) -> bool {
- std::cout
- << "Put cmake in trace mode and redirect trace "
- "output to a file instead of stderr.\n";
- std::string file(value);
- cmSystemTools::ConvertToUnixSlashes(file);
- state->SetTraceFile(file);
- state->SetTrace(true);
- return true;
- } },
- CommandArgument{ "--warn-uninitialized", CommandArgument::Values::Zero,
- [](std::string const&, cmake* state) -> bool {
- std::cout << "Warn about uninitialized values.\n";
- state->SetWarnUninitialized(true);
- return true;
- } },
- CommandArgument{ "--warn-unused-vars", CommandArgument::Values::Zero,
- IgnoreAndTrueLambda }, // Option was removed.
- CommandArgument{ "--no-warn-unused-cli", CommandArgument::Values::Zero,
- [](std::string const&, cmake* state) -> bool {
- std::cout
- << "Not searching for unused variables given on the "
- "command line.\n";
- state->SetWarnUnusedCli(false);
- return true;
- } },
- CommandArgument{
- "--check-system-vars", CommandArgument::Values::Zero,
- [](std::string const&, cmake* state) -> bool {
- std::cout << "Also check system files when warning about unused and "
- "uninitialized variables.\n";
- state->SetCheckSystemVars(true);
- return true;
- } },
- CommandArgument{
- "--compile-no-warning-as-error", CommandArgument::Values::Zero,
- [](std::string const&, cmake* state) -> bool {
- std::cout << "Ignoring COMPILE_WARNING_AS_ERROR target property and "
- "CMAKE_COMPILE_WARNING_AS_ERROR variable.\n";
- state->SetIgnoreCompileWarningAsError(true);
- return true;
- } },
- CommandArgument{
- "--link-no-warning-as-error", CommandArgument::Values::Zero,
- [](std::string const&, cmake* state) -> bool {
- std::cout << "Ignoring LINK_WARNING_AS_ERROR target property and "
- "CMAKE_LINK_WARNING_AS_ERROR variable.\n";
- state->SetIgnoreLinkWarningAsError(true);
- return true;
- } },
- #ifndef CMAKE_BOOTSTRAP
- CommandArgument{ "--sarif-output", "No file specified for --sarif-output",
- CommandArgument::Values::One,
- [](std::string const& value, cmake* state) -> bool {
- state->SarifFilePath =
- cmSystemTools::ToNormalizedPathOnDisk(value);
- state->SarifFileOutput = true;
- return true;
- } },
- #endif
- CommandArgument{ "--debugger", CommandArgument::Values::Zero,
- [](std::string const&, cmake* state) -> bool {
- #ifdef CMake_ENABLE_DEBUGGER
- std::cout << "Running with debugger on.\n";
- state->SetDebuggerOn(true);
- return true;
- #else
- static_cast<void>(state);
- cmSystemTools::Error(
- "CMake was not built with support for --debugger");
- return false;
- #endif
- } },
- CommandArgument{ "--debugger-pipe",
- "No path specified for --debugger-pipe",
- CommandArgument::Values::One,
- [](std::string const& value, cmake* state) -> bool {
- #ifdef CMake_ENABLE_DEBUGGER
- state->DebuggerPipe = value;
- return true;
- #else
- static_cast<void>(value);
- static_cast<void>(state);
- cmSystemTools::Error("CMake was not built with support "
- "for --debugger-pipe");
- return false;
- #endif
- } },
- CommandArgument{ "--debugger-dap-log",
- "No file specified for --debugger-dap-log",
- CommandArgument::Values::One,
- [](std::string const& value, cmake* state) -> bool {
- #ifdef CMake_ENABLE_DEBUGGER
- state->DebuggerDapLogFile =
- cmSystemTools::ToNormalizedPathOnDisk(value);
- return true;
- #else
- static_cast<void>(value);
- static_cast<void>(state);
- cmSystemTools::Error("CMake was not built with support "
- "for --debugger-dap-log");
- return false;
- #endif
- } },
- };
- #if defined(CMAKE_HAVE_VS_GENERATORS)
- arguments.emplace_back("--vs-solution-file", CommandArgument::Values::One,
- [](std::string const& value, cmake* state) -> bool {
- state->VSSolutionFile = value;
- return true;
- });
- #endif
- #if !defined(CMAKE_BOOTSTRAP)
- arguments.emplace_back("--profiling-format",
- "No format specified for --profiling-format",
- CommandArgument::Values::One,
- [&](std::string const& value, cmake*) -> bool {
- profilingFormat = value;
- return true;
- });
- arguments.emplace_back(
- "--profiling-output", "No path specified for --profiling-output",
- CommandArgument::Values::One,
- [&profilingOutput](std::string const& value, cmake*) -> bool {
- profilingOutput = cmSystemTools::ToNormalizedPathOnDisk(value);
- return true;
- });
- arguments.emplace_back("--preset", "No preset specified for --preset",
- CommandArgument::Values::One,
- [&](std::string const& value, cmake*) -> bool {
- presetName = value;
- return true;
- });
- arguments.emplace_back(
- "--list-presets", CommandArgument::Values::ZeroOrOne,
- [&](std::string const& value, cmake*) -> bool {
- if (value.empty() || value == "configure") {
- listPresets = ListPresets::Configure;
- } else if (value == "build") {
- listPresets = ListPresets::Build;
- } else if (value == "test") {
- listPresets = ListPresets::Test;
- } else if (value == "package") {
- listPresets = ListPresets::Package;
- } else if (value == "workflow") {
- listPresets = ListPresets::Workflow;
- } else if (value == "all") {
- listPresets = ListPresets::All;
- } else {
- cmSystemTools::Error(
- "Invalid value specified for --list-presets.\n"
- "Valid values are configure, build, test, package, or all. "
- "When no value is passed the default is configure.");
- return false;
- }
- return true;
- });
- #endif
- bool badGeneratorName = false;
- CommandArgument generatorCommand(
- "-G", "No generator specified for -G", CommandArgument::Values::One,
- CommandArgument::RequiresSeparator::No,
- [&](std::string const& value, cmake* state) -> bool {
- bool valid = state->CreateAndSetGlobalGenerator(value);
- badGeneratorName = !valid;
- return valid;
- });
- for (decltype(args.size()) i = 1; i < args.size(); ++i) {
- // iterate each argument
- std::string const& arg = args[i];
- if (this->GetWorkingMode() == SCRIPT_MODE && arg == "--") {
- // Stop processing CMake args and avoid possible errors
- // when arbitrary args are given to CMake script.
- break;
- }
- // Generator flag has special handling for when to print help
- // so it becomes the exception
- if (generatorCommand.matches(arg)) {
- bool parsed = generatorCommand.parse(arg, i, args, this);
- if (!parsed && !badGeneratorName) {
- this->PrintGeneratorList();
- return;
- }
- continue;
- }
- bool matched = false;
- bool parsedCorrectly = true; // needs to be true so we can ignore
- // arguments so as -E
- for (auto const& m : arguments) {
- if (m.matches(arg)) {
- matched = true;
- parsedCorrectly = m.parse(arg, i, args, this);
- break;
- }
- }
- // We have an issue where arguments to a "-P" script mode
- // can be provided before the "-P" argument. This means
- // that we need to lazily check this argument after checking
- // all args.
- // Additionally it can't be the source/binary tree location
- if (!parsedCorrectly) {
- cmSystemTools::Error("Run 'cmake --help' for all supported options.");
- exit(1);
- } else if (!matched && cmHasLiteralPrefix(arg, "-")) {
- possibleUnknownArg = arg;
- } else if (!matched) {
- bool parsedDirectory = this->SetDirectoriesFromFile(arg);
- if (!parsedDirectory) {
- extraProvidedPath = arg;
- }
- }
- }
- if (!extraProvidedPath.empty() && this->GetWorkingMode() == NORMAL_MODE) {
- this->IssueMessage(MessageType::WARNING,
- cmStrCat("Ignoring extra path from command line:\n \"",
- extraProvidedPath, '"'));
- }
- if (!possibleUnknownArg.empty() && this->GetWorkingMode() != SCRIPT_MODE) {
- cmSystemTools::Error(cmStrCat("Unknown argument ", possibleUnknownArg));
- cmSystemTools::Error("Run 'cmake --help' for all supported options.");
- exit(1);
- }
- // Empty instance, platform and toolset if only a generator is specified
- if (this->GlobalGenerator) {
- this->GeneratorInstance = "";
- if (!this->GeneratorPlatformSet) {
- this->GeneratorPlatform = "";
- }
- if (!this->GeneratorToolsetSet) {
- this->GeneratorToolset = "";
- }
- }
- #if !defined(CMAKE_BOOTSTRAP)
- if (!profilingOutput.empty() || !profilingFormat.empty()) {
- if (profilingOutput.empty()) {
- cmSystemTools::Error(
- "--profiling-format specified but no --profiling-output!");
- return;
- }
- if (profilingFormat == "google-trace"_s) {
- try {
- this->ProfilingOutput =
- cm::make_unique<cmMakefileProfilingData>(profilingOutput);
- } catch (std::runtime_error& e) {
- cmSystemTools::Error(
- cmStrCat("Could not start profiling: ", e.what()));
- return;
- }
- } else {
- cmSystemTools::Error("Invalid format specified for --profiling-format");
- return;
- }
- }
- #endif
- bool const haveSourceDir = !this->GetHomeDirectory().empty();
- bool const haveBinaryDir = !this->GetHomeOutputDirectory().empty();
- bool const havePreset =
- #ifdef CMAKE_BOOTSTRAP
- false;
- #else
- !presetName.empty();
- #endif
- if (this->CurrentWorkingMode == cmake::NORMAL_MODE && !haveSourceDir &&
- !haveBinaryDir && !havePreset) {
- this->IssueMessage(
- MessageType::WARNING,
- "No source or binary directory provided. Both will be assumed to be "
- "the same as the current working directory, but note that this "
- "warning will become a fatal error in future CMake releases.");
- }
- if (!haveSourceDir) {
- this->SetHomeDirectory(cmSystemTools::GetLogicalWorkingDirectory());
- }
- if (!haveBinaryDir) {
- this->SetHomeOutputDirectory(cmSystemTools::GetLogicalWorkingDirectory());
- }
- #if !defined(CMAKE_BOOTSTRAP)
- if (listPresets != ListPresets::None || !presetName.empty()) {
- cmCMakePresetsGraph presetsGraph;
- auto result = presetsGraph.ReadProjectPresets(this->GetHomeDirectory());
- if (result != true) {
- std::string errorMsg =
- cmStrCat("Could not read presets from ", this->GetHomeDirectory(),
- ":\n", presetsGraph.parseState.GetErrorMessage());
- cmSystemTools::Error(errorMsg);
- return;
- }
- if (listPresets != ListPresets::None) {
- if (listPresets == ListPresets::Configure) {
- this->PrintPresetList(presetsGraph);
- } else if (listPresets == ListPresets::Build) {
- presetsGraph.PrintBuildPresetList();
- } else if (listPresets == ListPresets::Test) {
- presetsGraph.PrintTestPresetList();
- } else if (listPresets == ListPresets::Package) {
- presetsGraph.PrintPackagePresetList();
- } else if (listPresets == ListPresets::Workflow) {
- presetsGraph.PrintWorkflowPresetList();
- } else if (listPresets == ListPresets::All) {
- presetsGraph.PrintAllPresets();
- }
- this->SetWorkingMode(WorkingMode::HELP_MODE,
- cmake::CommandFailureAction::FATAL_ERROR);
- return;
- }
- auto preset = presetsGraph.ConfigurePresets.find(presetName);
- if (preset == presetsGraph.ConfigurePresets.end()) {
- cmSystemTools::Error(cmStrCat("No such preset in ",
- this->GetHomeDirectory(), ": \"",
- presetName, '"'));
- this->PrintPresetList(presetsGraph);
- return;
- }
- if (preset->second.Unexpanded.Hidden) {
- cmSystemTools::Error(cmStrCat("Cannot use hidden preset in ",
- this->GetHomeDirectory(), ": \"",
- presetName, '"'));
- this->PrintPresetList(presetsGraph);
- return;
- }
- auto const& expandedPreset = preset->second.Expanded;
- if (!expandedPreset) {
- cmSystemTools::Error(cmStrCat("Could not evaluate preset \"",
- preset->second.Unexpanded.Name,
- "\": Invalid macro expansion"));
- return;
- }
- if (!expandedPreset->ConditionResult) {
- cmSystemTools::Error(cmStrCat("Could not use disabled preset \"",
- preset->second.Unexpanded.Name, '"'));
- return;
- }
- if (!this->State->IsCacheLoaded() && !haveBArg &&
- !expandedPreset->BinaryDir.empty()) {
- this->SetHomeOutputDirectory(expandedPreset->BinaryDir);
- }
- if (!this->GlobalGenerator && !expandedPreset->Generator.empty()) {
- if (!this->CreateAndSetGlobalGenerator(expandedPreset->Generator)) {
- return;
- }
- }
- this->UnprocessedPresetVariables = expandedPreset->CacheVariables;
- this->UnprocessedPresetEnvironment = expandedPreset->Environment;
- if (!expandedPreset->InstallDir.empty() &&
- !this->State->GetInitializedCacheValue("CMAKE_INSTALL_PREFIX")) {
- this->UnprocessedPresetVariables["CMAKE_INSTALL_PREFIX"] = {
- "PATH", expandedPreset->InstallDir
- };
- }
- if (!expandedPreset->ToolchainFile.empty() &&
- !this->State->GetInitializedCacheValue("CMAKE_TOOLCHAIN_FILE")) {
- this->UnprocessedPresetVariables["CMAKE_TOOLCHAIN_FILE"] = {
- "FILEPATH", expandedPreset->ToolchainFile
- };
- }
- if (!expandedPreset->ArchitectureStrategy ||
- expandedPreset->ArchitectureStrategy ==
- cmCMakePresetsGraph::ArchToolsetStrategy::Set) {
- if (!this->GeneratorPlatformSet &&
- !expandedPreset->Architecture.empty()) {
- this->SetGeneratorPlatform(expandedPreset->Architecture);
- }
- }
- if (!expandedPreset->ToolsetStrategy ||
- expandedPreset->ToolsetStrategy ==
- cmCMakePresetsGraph::ArchToolsetStrategy::Set) {
- if (!this->GeneratorToolsetSet && !expandedPreset->Toolset.empty()) {
- this->SetGeneratorToolset(expandedPreset->Toolset);
- }
- }
- if (!expandedPreset->GraphVizFile.empty()) {
- if (this->GraphVizFile.empty()) {
- this->SetGraphVizFile(
- cmSystemTools::CollapseFullPath(expandedPreset->GraphVizFile));
- }
- }
- this->SetWarningFromPreset("dev", expandedPreset->WarnDev,
- expandedPreset->ErrorDev);
- this->SetWarningFromPreset("deprecated", expandedPreset->WarnDeprecated,
- expandedPreset->ErrorDeprecated);
- if (expandedPreset->WarnUninitialized == true) {
- this->SetWarnUninitialized(true);
- }
- if (expandedPreset->WarnUnusedCli == false) {
- this->SetWarnUnusedCli(false);
- }
- if (expandedPreset->WarnSystemVars == true) {
- this->SetCheckSystemVars(true);
- }
- if (expandedPreset->DebugOutput == true) {
- this->SetDebugOutputOn(true);
- }
- if (expandedPreset->DebugTryCompile == true) {
- this->DebugTryCompileOn();
- }
- if (expandedPreset->DebugFind == true) {
- this->SetDebugFindOutput(true);
- }
- if (expandedPreset->TraceMode &&
- expandedPreset->TraceMode !=
- cmCMakePresetsGraph::TraceEnableMode::Disable) {
- this->SetTrace(true);
- if (expandedPreset->TraceMode ==
- cmCMakePresetsGraph::TraceEnableMode::Expand) {
- this->SetTraceExpand(true);
- }
- }
- if (expandedPreset->TraceFormat) {
- this->SetTrace(true);
- this->SetTraceFormat(*expandedPreset->TraceFormat);
- }
- if (!expandedPreset->TraceSource.empty()) {
- this->SetTrace(true);
- for (std::string const& filePaths : expandedPreset->TraceSource) {
- this->AddTraceSource(filePaths);
- }
- }
- if (!expandedPreset->TraceRedirect.empty()) {
- this->SetTrace(true);
- this->SetTraceFile(expandedPreset->TraceRedirect);
- }
- }
- #endif
- }
- namespace {
- using LevelsPair = std::pair<cm::string_view, Message::LogLevel>;
- using LevelsPairArray = std::array<LevelsPair, 7>;
- LevelsPairArray const& getStringToLogLevelPairs()
- {
- static LevelsPairArray const levels = {
- { { "error", Message::LogLevel::LOG_ERROR },
- { "warning", Message::LogLevel::LOG_WARNING },
- { "notice", Message::LogLevel::LOG_NOTICE },
- { "status", Message::LogLevel::LOG_STATUS },
- { "verbose", Message::LogLevel::LOG_VERBOSE },
- { "debug", Message::LogLevel::LOG_DEBUG },
- { "trace", Message::LogLevel::LOG_TRACE } }
- };
- return levels;
- }
- } // namespace
- Message::LogLevel cmake::StringToLogLevel(cm::string_view levelStr)
- {
- LevelsPairArray const& levels = getStringToLogLevelPairs();
- auto const levelStrLowCase =
- cmSystemTools::LowerCase(std::string{ levelStr });
- // NOLINTNEXTLINE(readability-qualified-auto)
- auto const it = std::find_if(levels.cbegin(), levels.cend(),
- [&levelStrLowCase](LevelsPair const& p) {
- return p.first == levelStrLowCase;
- });
- return (it != levels.cend()) ? it->second : Message::LogLevel::LOG_UNDEFINED;
- }
- std::string cmake::LogLevelToString(Message::LogLevel level)
- {
- LevelsPairArray const& levels = getStringToLogLevelPairs();
- // NOLINTNEXTLINE(readability-qualified-auto)
- auto const it =
- std::find_if(levels.cbegin(), levels.cend(),
- [&level](LevelsPair const& p) { return p.second == level; });
- cm::string_view const levelStrLowerCase =
- (it != levels.cend()) ? it->first : "undefined";
- std::string levelStrUpperCase =
- cmSystemTools::UpperCase(std::string{ levelStrLowerCase });
- return levelStrUpperCase;
- }
- cmake::TraceFormat cmake::StringToTraceFormat(std::string const& traceStr)
- {
- using TracePair = std::pair<std::string, TraceFormat>;
- static std::vector<TracePair> const levels = {
- { "human", TraceFormat::Human },
- { "json-v1", TraceFormat::JSONv1 },
- };
- auto const traceStrLowCase = cmSystemTools::LowerCase(traceStr);
- auto const it = std::find_if(levels.cbegin(), levels.cend(),
- [&traceStrLowCase](TracePair const& p) {
- return p.first == traceStrLowCase;
- });
- return (it != levels.cend()) ? it->second : TraceFormat::Undefined;
- }
- void cmake::SetTraceFile(std::string const& file)
- {
- this->TraceFile.close();
- this->TraceFile.open(file.c_str());
- if (!this->TraceFile) {
- cmSystemTools::Error(cmStrCat("Error opening trace file ", file, ": ",
- cmSystemTools::GetLastSystemError()));
- return;
- }
- std::cout << "Trace will be written to " << file << '\n';
- }
- void cmake::PrintTraceFormatVersion()
- {
- if (!this->GetTrace()) {
- return;
- }
- std::string msg;
- switch (this->GetTraceFormat()) {
- case TraceFormat::JSONv1: {
- #ifndef CMAKE_BOOTSTRAP
- Json::Value val;
- Json::Value version;
- Json::StreamWriterBuilder builder;
- builder["indentation"] = "";
- version["major"] = 1;
- version["minor"] = 2;
- val["version"] = version;
- msg = Json::writeString(builder, val);
- #endif
- break;
- }
- case TraceFormat::Human:
- msg = "";
- break;
- case TraceFormat::Undefined:
- msg = "INTERNAL ERROR: Trace format is Undefined";
- break;
- }
- if (msg.empty()) {
- return;
- }
- auto& f = this->GetTraceFile();
- if (f) {
- f << msg << '\n';
- } else {
- cmSystemTools::Message(msg);
- }
- }
- void cmake::SetTraceRedirect(cmake* other)
- {
- this->Trace = other->Trace;
- this->TraceExpand = other->TraceExpand;
- this->TraceFormatVar = other->TraceFormatVar;
- this->TraceOnlyThisSources = other->TraceOnlyThisSources;
- this->TraceRedirect = other;
- }
- bool cmake::SetDirectoriesFromFile(std::string const& arg)
- {
- // Check if the argument refers to a CMakeCache.txt or CMakeLists.txt file.
- // Do not check for the custom project filename CMAKE_LIST_FILE_NAME, as it
- // cannot be determined until after reading the CMakeCache.txt
- std::string listPath;
- std::string cachePath;
- bool is_source_dir = false;
- bool is_empty_directory = false;
- if (cmSystemTools::FileIsDirectory(arg)) {
- std::string path = cmSystemTools::ToNormalizedPathOnDisk(arg);
- std::string cacheFile = cmStrCat(path, "/CMakeCache.txt");
- std::string listFile = this->GetCMakeListFile(path);
- is_empty_directory = true;
- if (cmSystemTools::FileExists(cacheFile)) {
- cachePath = path;
- is_empty_directory = false;
- }
- if (cmSystemTools::FileExists(listFile)) {
- listPath = path;
- is_empty_directory = false;
- is_source_dir = true;
- }
- } else if (cmSystemTools::FileExists(arg)) {
- std::string fullPath = cmSystemTools::ToNormalizedPathOnDisk(arg);
- std::string name = cmSystemTools::GetFilenameName(fullPath);
- name = cmSystemTools::LowerCase(name);
- if (name == "cmakecache.txt"_s) {
- cachePath = cmSystemTools::GetFilenamePath(fullPath);
- } else if (name == "cmakelists.txt"_s) {
- listPath = cmSystemTools::GetFilenamePath(fullPath);
- }
- } else {
- // Specified file or directory does not exist. Try to set things
- // up to produce a meaningful error message.
- std::string fullPath = cmSystemTools::CollapseFullPath(arg);
- std::string name = cmSystemTools::GetFilenameName(fullPath);
- name = cmSystemTools::LowerCase(name);
- if (name == "cmakecache.txt"_s || name == "cmakelists.txt"_s) {
- listPath = cmSystemTools::GetFilenamePath(fullPath);
- } else {
- listPath = fullPath;
- }
- }
- // If there is a CMakeCache.txt file, use its settings.
- if (!cachePath.empty()) {
- if (this->LoadCache(cachePath)) {
- cmValue existingValue =
- this->State->GetCacheEntryValue("CMAKE_HOME_DIRECTORY");
- if (existingValue) {
- this->SetHomeOutputDirectory(cachePath);
- this->SetHomeDirectory(*existingValue);
- return true;
- }
- }
- }
- bool no_source_tree = this->GetHomeDirectory().empty();
- bool no_build_tree = this->GetHomeOutputDirectory().empty();
- // When invoked with a path that points to an existing CMakeCache
- // This function is called multiple times with the same path
- bool const passed_same_path = (listPath == this->GetHomeDirectory()) ||
- (listPath == this->GetHomeOutputDirectory());
- bool used_provided_path =
- (passed_same_path || is_source_dir || no_build_tree);
- // If there is a CMakeLists.txt file, use it as the source tree.
- if (!listPath.empty()) {
- // When invoked with a path that points to an existing CMakeCache
- // This function is called multiple times with the same path
- if (is_source_dir) {
- this->SetHomeDirectoryViaCommandLine(listPath);
- if (no_build_tree) {
- this->SetHomeOutputDirectory(
- cmSystemTools::GetLogicalWorkingDirectory());
- }
- } else if (no_source_tree && no_build_tree) {
- this->SetHomeDirectory(listPath);
- this->SetHomeOutputDirectory(
- cmSystemTools::GetLogicalWorkingDirectory());
- } else if (no_build_tree) {
- this->SetHomeOutputDirectory(listPath);
- }
- } else {
- if (no_source_tree) {
- // We didn't find a CMakeLists.txt and it wasn't specified
- // with -S. Assume it is the path to the source tree
- this->SetHomeDirectory(cmSystemTools::ToNormalizedPathOnDisk(arg));
- }
- if (no_build_tree && !no_source_tree && is_empty_directory) {
- // passed `-S <path> <build_dir> when build_dir is an empty directory
- this->SetHomeOutputDirectory(cmSystemTools::ToNormalizedPathOnDisk(arg));
- } else if (no_build_tree) {
- // We didn't find a CMakeCache.txt and it wasn't specified
- // with -B. Assume the current working directory as the build tree.
- this->SetHomeOutputDirectory(
- cmSystemTools::GetLogicalWorkingDirectory());
- used_provided_path = false;
- }
- }
- return used_provided_path;
- }
- // at the end of this CMAKE_ROOT and CMAKE_COMMAND should be added to the
- // cache
- int cmake::AddCMakePaths()
- {
- // Save the value in the cache
- this->AddCacheEntry("CMAKE_COMMAND", cmSystemTools::GetCMakeCommand(),
- "Path to CMake executable.", cmStateEnums::INTERNAL);
- #ifndef CMAKE_BOOTSTRAP
- this->AddCacheEntry("CMAKE_CTEST_COMMAND", cmSystemTools::GetCTestCommand(),
- "Path to ctest program executable.",
- cmStateEnums::INTERNAL);
- this->AddCacheEntry("CMAKE_CPACK_COMMAND", cmSystemTools::GetCPackCommand(),
- "Path to cpack program executable.",
- cmStateEnums::INTERNAL);
- #endif
- if (!cmSystemTools::FileExists(
- (cmSystemTools::GetCMakeRoot() + "/Modules/CMake.cmake"))) {
- // couldn't find modules
- cmSystemTools::Error(
- "Could not find CMAKE_ROOT !!!\n"
- "CMake has most likely not been installed correctly.\n"
- "Modules directory not found in\n" +
- cmSystemTools::GetCMakeRoot());
- return 0;
- }
- this->AddCacheEntry("CMAKE_ROOT", cmSystemTools::GetCMakeRoot(),
- "Path to CMake installation.", cmStateEnums::INTERNAL);
- return 1;
- }
- void cmake::AddDefaultExtraGenerators()
- {
- #if !defined(CMAKE_BOOTSTRAP)
- this->ExtraGenerators.push_back(cmExtraCodeBlocksGenerator::GetFactory());
- this->ExtraGenerators.push_back(cmExtraCodeLiteGenerator::GetFactory());
- this->ExtraGenerators.push_back(cmExtraEclipseCDT4Generator::GetFactory());
- this->ExtraGenerators.push_back(cmExtraKateGenerator::GetFactory());
- this->ExtraGenerators.push_back(cmExtraSublimeTextGenerator::GetFactory());
- #endif
- }
- void cmake::GetRegisteredGenerators(
- std::vector<GeneratorInfo>& generators) const
- {
- for (auto const& gen : this->Generators) {
- std::vector<std::string> names = gen->GetGeneratorNames();
- for (std::string const& name : names) {
- GeneratorInfo info;
- info.supportsToolset = gen->SupportsToolset();
- info.supportsPlatform = gen->SupportsPlatform();
- info.supportedPlatforms = gen->GetKnownPlatforms();
- info.defaultPlatform = gen->GetDefaultPlatformName();
- info.name = name;
- info.baseName = name;
- info.isAlias = false;
- generators.push_back(std::move(info));
- }
- }
- for (cmExternalMakefileProjectGeneratorFactory* eg : this->ExtraGenerators) {
- std::vector<std::string> const genList =
- eg->GetSupportedGlobalGenerators();
- for (std::string const& gen : genList) {
- GeneratorInfo info;
- info.name = cmExternalMakefileProjectGenerator::CreateFullGeneratorName(
- gen, eg->GetName());
- info.baseName = gen;
- info.extraName = eg->GetName();
- info.supportsPlatform = false;
- info.supportsToolset = false;
- info.isAlias = false;
- generators.push_back(std::move(info));
- }
- for (std::string const& a : eg->Aliases) {
- GeneratorInfo info;
- info.name = a;
- if (!genList.empty()) {
- info.baseName = genList.at(0);
- }
- info.extraName = eg->GetName();
- info.supportsPlatform = false;
- info.supportsToolset = false;
- info.isAlias = true;
- generators.push_back(std::move(info));
- }
- }
- }
- static std::pair<std::unique_ptr<cmExternalMakefileProjectGenerator>,
- std::string>
- createExtraGenerator(
- std::vector<cmExternalMakefileProjectGeneratorFactory*> const& in,
- std::string const& name)
- {
- for (cmExternalMakefileProjectGeneratorFactory* i : in) {
- std::vector<std::string> const generators =
- i->GetSupportedGlobalGenerators();
- if (i->GetName() == name) { // Match aliases
- return { i->CreateExternalMakefileProjectGenerator(), generators.at(0) };
- }
- for (std::string const& g : generators) {
- std::string const fullName =
- cmExternalMakefileProjectGenerator::CreateFullGeneratorName(
- g, i->GetName());
- if (fullName == name) {
- return { i->CreateExternalMakefileProjectGenerator(), g };
- }
- }
- }
- return { nullptr, name };
- }
- std::unique_ptr<cmGlobalGenerator> cmake::CreateGlobalGenerator(
- std::string const& gname)
- {
- std::pair<std::unique_ptr<cmExternalMakefileProjectGenerator>, std::string>
- extra = createExtraGenerator(this->ExtraGenerators, gname);
- std::unique_ptr<cmExternalMakefileProjectGenerator>& extraGenerator =
- extra.first;
- std::string const& name = extra.second;
- std::unique_ptr<cmGlobalGenerator> generator;
- for (auto const& g : this->Generators) {
- generator = g->CreateGlobalGenerator(name, this);
- if (generator) {
- break;
- }
- }
- if (generator) {
- generator->SetExternalMakefileProjectGenerator(std::move(extraGenerator));
- }
- return generator;
- }
- bool cmake::CreateAndSetGlobalGenerator(std::string const& name)
- {
- auto gen = this->CreateGlobalGenerator(name);
- if (!gen) {
- std::string kdevError;
- std::string vsError;
- if (name.find("KDevelop3", 0) != std::string::npos) {
- kdevError = "\nThe KDevelop3 generator is not supported anymore.";
- }
- if (cmHasLiteralPrefix(name, "Visual Studio ") &&
- name.length() >= cmStrLen("Visual Studio xx xxxx ")) {
- vsError = "\nUsing platforms in Visual Studio generator names is not "
- "supported in CMakePresets.json.";
- }
- cmSystemTools::Error(
- cmStrCat("Could not create named generator ", name, kdevError, vsError));
- this->PrintGeneratorList();
- return false;
- }
- this->SetGlobalGenerator(std::move(gen));
- return true;
- }
- #ifndef CMAKE_BOOTSTRAP
- void cmake::PrintPresetList(cmCMakePresetsGraph const& graph) const
- {
- std::vector<GeneratorInfo> generators;
- this->GetRegisteredGenerators(generators);
- auto filter =
- [&generators](cmCMakePresetsGraph::ConfigurePreset const& preset) -> bool {
- if (preset.Generator.empty()) {
- return true;
- }
- auto condition = [&preset](GeneratorInfo const& info) -> bool {
- return info.name == preset.Generator;
- };
- auto it = std::find_if(generators.begin(), generators.end(), condition);
- return it != generators.end();
- };
- graph.PrintConfigurePresetList(filter);
- }
- #endif
- void cmake::SetHomeDirectoryViaCommandLine(std::string const& path)
- {
- if (path.empty()) {
- return;
- }
- auto prev_path = this->GetHomeDirectory();
- if (prev_path != path && !prev_path.empty() &&
- this->GetWorkingMode() == NORMAL_MODE) {
- this->IssueMessage(
- MessageType::WARNING,
- cmStrCat("Ignoring extra path from command line:\n \"", prev_path, '"'));
- }
- this->SetHomeDirectory(path);
- }
- void cmake::SetHomeDirectory(std::string const& dir)
- {
- this->State->SetSourceDirectory(dir);
- if (this->CurrentSnapshot.IsValid()) {
- this->CurrentSnapshot.SetDefinition("CMAKE_SOURCE_DIR", dir);
- }
- if (this->State->GetProjectKind() == cmState::ProjectKind::Normal) {
- this->Messenger->SetTopSource(this->GetHomeDirectory());
- } else {
- this->Messenger->SetTopSource(cm::nullopt);
- }
- }
- std::string const& cmake::GetHomeDirectory() const
- {
- return this->State->GetSourceDirectory();
- }
- void cmake::SetHomeOutputDirectory(std::string const& dir)
- {
- this->State->SetBinaryDirectory(dir);
- if (this->CurrentSnapshot.IsValid()) {
- this->CurrentSnapshot.SetDefinition("CMAKE_BINARY_DIR", dir);
- }
- }
- std::string const& cmake::GetHomeOutputDirectory() const
- {
- return this->State->GetBinaryDirectory();
- }
- std::string cmake::FindCacheFile(std::string const& binaryDir)
- {
- std::string cachePath = binaryDir;
- cmSystemTools::ConvertToUnixSlashes(cachePath);
- std::string cacheFile = cmStrCat(cachePath, "/CMakeCache.txt");
- if (!cmSystemTools::FileExists(cacheFile)) {
- // search in parent directories for cache
- std::string cmakeFiles = cmStrCat(cachePath, "/CMakeFiles");
- if (cmSystemTools::FileExists(cmakeFiles)) {
- std::string cachePathFound =
- cmSystemTools::FileExistsInParentDirectories("CMakeCache.txt",
- cachePath, "/");
- if (!cachePathFound.empty()) {
- cachePath = cmSystemTools::GetFilenamePath(cachePathFound);
- }
- }
- }
- return cachePath;
- }
- void cmake::SetGlobalGenerator(std::unique_ptr<cmGlobalGenerator> gg)
- {
- if (!gg) {
- cmSystemTools::Error("Error SetGlobalGenerator called with null");
- return;
- }
- if (this->GlobalGenerator) {
- // restore the original environment variables CXX and CC
- std::string env = "CC=";
- if (!this->CCEnvironment.empty()) {
- env += this->CCEnvironment;
- cmSystemTools::PutEnv(env);
- } else {
- cmSystemTools::UnPutEnv(env);
- }
- env = "CXX=";
- if (!this->CXXEnvironment.empty()) {
- env += this->CXXEnvironment;
- cmSystemTools::PutEnv(env);
- } else {
- cmSystemTools::UnPutEnv(env);
- }
- }
- // set the new
- this->GlobalGenerator = std::move(gg);
- // set the global flag for unix style paths on cmSystemTools as soon as
- // the generator is set. This allows gmake to be used on windows.
- cmSystemTools::SetForceUnixPaths(this->GlobalGenerator->GetForceUnixPaths());
- // Save the environment variables CXX and CC
- if (!cmSystemTools::GetEnv("CXX", this->CXXEnvironment)) {
- this->CXXEnvironment.clear();
- }
- if (!cmSystemTools::GetEnv("CC", this->CCEnvironment)) {
- this->CCEnvironment.clear();
- }
- }
- int cmake::DoPreConfigureChecks()
- {
- // Make sure the Source directory contains a CMakeLists.txt file.
- std::string srcList =
- cmStrCat(this->GetHomeDirectory(), '/', this->CMakeListName);
- if (!cmSystemTools::FileExists(srcList)) {
- std::ostringstream err;
- if (cmSystemTools::FileIsDirectory(this->GetHomeDirectory())) {
- err << "The source directory \"" << this->GetHomeDirectory()
- << "\" does not appear to contain " << this->CMakeListName << ".\n";
- } else if (cmSystemTools::FileExists(this->GetHomeDirectory())) {
- err << "The source directory \"" << this->GetHomeDirectory()
- << "\" is a file, not a directory.\n";
- } else {
- err << "The source directory \"" << this->GetHomeDirectory()
- << "\" does not exist.\n";
- }
- err << "Specify --help for usage, or press the help button on the CMake "
- "GUI.";
- cmSystemTools::Error(err.str());
- return -2;
- }
- // do a sanity check on some values
- if (cmValue dir =
- this->State->GetInitializedCacheValue("CMAKE_HOME_DIRECTORY")) {
- std::string cacheStart = cmStrCat(*dir, '/', this->CMakeListName);
- if (!cmSystemTools::SameFile(cacheStart, srcList)) {
- std::string message =
- cmStrCat("The source \"", srcList, "\" does not match the source \"",
- cacheStart,
- "\" used to generate cache. Re-run cmake with a different "
- "source directory.");
- cmSystemTools::Error(message);
- return -2;
- }
- } else {
- return 0;
- }
- return 1;
- }
- struct SaveCacheEntry
- {
- std::string key;
- std::string value;
- std::string help;
- cmStateEnums::CacheEntryType type;
- };
- int cmake::HandleDeleteCacheVariables(std::string const& var)
- {
- cmList argsSplit{ var, cmList::EmptyElements::Yes };
- // erase the property to avoid infinite recursion
- this->State->SetGlobalProperty("__CMAKE_DELETE_CACHE_CHANGE_VARS_", "");
- if (this->GetIsInTryCompile()) {
- return 0;
- }
- std::vector<SaveCacheEntry> saved;
- std::ostringstream warning;
- warning
- << "You have changed variables that require your cache to be deleted.\n"
- "Configure will be re-run and you may have to reset some variables.\n"
- "The following variables have changed:\n";
- for (auto i = argsSplit.begin(); i != argsSplit.end(); ++i) {
- SaveCacheEntry save;
- save.key = *i;
- warning << *i << "= ";
- i++;
- if (i != argsSplit.end()) {
- save.value = *i;
- warning << *i << '\n';
- } else {
- warning << '\n';
- i -= 1;
- }
- cmValue existingValue = this->State->GetCacheEntryValue(save.key);
- if (existingValue) {
- save.type = this->State->GetCacheEntryType(save.key);
- if (cmValue help =
- this->State->GetCacheEntryProperty(save.key, "HELPSTRING")) {
- save.help = *help;
- }
- } else {
- save.type = cmStateEnums::CacheEntryType::UNINITIALIZED;
- }
- saved.push_back(std::move(save));
- }
- // remove the cache
- this->DeleteCache(this->GetHomeOutputDirectory());
- // load the empty cache
- this->LoadCache();
- // restore the changed compilers
- for (SaveCacheEntry const& i : saved) {
- this->AddCacheEntry(i.key, i.value, i.help, i.type);
- }
- cmSystemTools::Message(warning.str());
- // avoid reconfigure if there were errors
- if (!cmSystemTools::GetErrorOccurredFlag()) {
- // re-run configure
- return this->Configure();
- }
- return 0;
- }
- int cmake::Configure()
- {
- #if !defined(CMAKE_BOOTSTRAP)
- auto profilingRAII = this->CreateProfilingEntry("project", "configure");
- #endif
- DiagLevel diagLevel;
- if (this->DiagLevels.count("deprecated") == 1) {
- diagLevel = this->DiagLevels["deprecated"];
- if (diagLevel == DIAG_IGNORE) {
- this->SetSuppressDeprecatedWarnings(true);
- this->SetDeprecatedWarningsAsErrors(false);
- } else if (diagLevel == DIAG_WARN) {
- this->SetSuppressDeprecatedWarnings(false);
- this->SetDeprecatedWarningsAsErrors(false);
- } else if (diagLevel == DIAG_ERROR) {
- this->SetSuppressDeprecatedWarnings(false);
- this->SetDeprecatedWarningsAsErrors(true);
- }
- }
- if (this->DiagLevels.count("dev") == 1) {
- bool setDeprecatedVariables = false;
- cmValue cachedWarnDeprecated =
- this->State->GetCacheEntryValue("CMAKE_WARN_DEPRECATED");
- cmValue cachedErrorDeprecated =
- this->State->GetCacheEntryValue("CMAKE_ERROR_DEPRECATED");
- // don't overwrite deprecated warning setting from a previous invocation
- if (!cachedWarnDeprecated && !cachedErrorDeprecated) {
- setDeprecatedVariables = true;
- }
- diagLevel = this->DiagLevels["dev"];
- if (diagLevel == DIAG_IGNORE) {
- this->SetSuppressDevWarnings(true);
- this->SetDevWarningsAsErrors(false);
- if (setDeprecatedVariables) {
- this->SetSuppressDeprecatedWarnings(true);
- this->SetDeprecatedWarningsAsErrors(false);
- }
- } else if (diagLevel == DIAG_WARN) {
- this->SetSuppressDevWarnings(false);
- this->SetDevWarningsAsErrors(false);
- if (setDeprecatedVariables) {
- this->SetSuppressDeprecatedWarnings(false);
- this->SetDeprecatedWarningsAsErrors(false);
- }
- } else if (diagLevel == DIAG_ERROR) {
- this->SetSuppressDevWarnings(false);
- this->SetDevWarningsAsErrors(true);
- if (setDeprecatedVariables) {
- this->SetSuppressDeprecatedWarnings(false);
- this->SetDeprecatedWarningsAsErrors(true);
- }
- }
- }
- // Cache variables may have already been set by a previous invocation,
- // so we cannot rely on command line options alone. Always ensure our
- // messenger is in sync with the cache.
- cmValue value = this->State->GetCacheEntryValue("CMAKE_WARN_DEPRECATED");
- this->Messenger->SetSuppressDeprecatedWarnings(value && value.IsOff());
- value = this->State->GetCacheEntryValue("CMAKE_ERROR_DEPRECATED");
- this->Messenger->SetDeprecatedWarningsAsErrors(value.IsOn());
- value = this->State->GetCacheEntryValue("CMAKE_SUPPRESS_DEVELOPER_WARNINGS");
- this->Messenger->SetSuppressDevWarnings(value.IsOn());
- value = this->State->GetCacheEntryValue("CMAKE_SUPPRESS_DEVELOPER_ERRORS");
- this->Messenger->SetDevWarningsAsErrors(value && value.IsOff());
- int ret = this->ActualConfigure();
- cmValue delCacheVars =
- this->State->GetGlobalProperty("__CMAKE_DELETE_CACHE_CHANGE_VARS_");
- if (delCacheVars && !delCacheVars->empty()) {
- return this->HandleDeleteCacheVariables(*delCacheVars);
- }
- return ret;
- }
- int cmake::ActualConfigure()
- {
- // Construct right now our path conversion table before it's too late:
- this->CleanupCommandsAndMacros();
- cmSystemTools::RemoveADirectory(this->GetHomeOutputDirectory() +
- "/CMakeFiles/CMakeScratch");
- std::string cmlNameCache =
- this->State->GetInitializedCacheValue("CMAKE_LIST_FILE_NAME");
- if (!cmlNameCache.empty() && !this->CMakeListName.empty() &&
- cmlNameCache != this->CMakeListName) {
- std::string message =
- cmStrCat("CMakeLists filename : \"", this->CMakeListName,
- "\"\nDoes not match the previous: \"", cmlNameCache,
- "\"\nEither remove the CMakeCache.txt file and CMakeFiles "
- "directory or choose a different binary directory.");
- cmSystemTools::Error(message);
- return -2;
- }
- if (this->CMakeListName.empty()) {
- this->CMakeListName =
- cmlNameCache.empty() ? "CMakeLists.txt" : cmlNameCache;
- }
- if (this->CMakeListName != "CMakeLists.txt") {
- this->IssueMessage(
- MessageType::WARNING,
- "This project has been configured with a project file other than "
- "CMakeLists.txt. This feature is intended for temporary use during "
- "development and not for publication of a final product.");
- }
- this->AddCacheEntry("CMAKE_LIST_FILE_NAME", this->CMakeListName,
- "Name of CMakeLists files to read",
- cmStateEnums::INTERNAL);
- int res = this->DoPreConfigureChecks();
- if (res < 0) {
- return -2;
- }
- if (!res) {
- this->AddCacheEntry(
- "CMAKE_HOME_DIRECTORY", this->GetHomeDirectory(),
- "Source directory with the top level CMakeLists.txt file for this "
- "project",
- cmStateEnums::INTERNAL);
- }
- // We want to create the package redirects directory as early as possible,
- // but not before pre-configure checks have passed. This ensures we get
- // errors about inappropriate source/binary directories first.
- auto const redirectsDir =
- cmStrCat(this->GetHomeOutputDirectory(), "/CMakeFiles/pkgRedirects");
- cmSystemTools::RemoveADirectory(redirectsDir);
- if (!cmSystemTools::MakeDirectory(redirectsDir)) {
- cmSystemTools::Error(
- cmStrCat("Unable to (re)create the private pkgRedirects directory:\n ",
- redirectsDir,
- "\n"
- "This may be caused by not having read/write access to "
- "the build directory.\n"
- "Try specifying a location with read/write access like:\n"
- " cmake -B build\n"
- "If using a CMake presets file, ensure that preset parameter\n"
- "'binaryDir' expands to a writable directory.\n"));
- return -1;
- }
- this->AddCacheEntry("CMAKE_FIND_PACKAGE_REDIRECTS_DIR", redirectsDir,
- "Value Computed by CMake.", cmStateEnums::STATIC);
- // no generator specified on the command line
- if (!this->GlobalGenerator) {
- cmValue genName = this->State->GetInitializedCacheValue("CMAKE_GENERATOR");
- cmValue extraGenName =
- this->State->GetInitializedCacheValue("CMAKE_EXTRA_GENERATOR");
- if (genName) {
- std::string fullName =
- cmExternalMakefileProjectGenerator::CreateFullGeneratorName(
- *genName, extraGenName ? *extraGenName : "");
- this->GlobalGenerator = this->CreateGlobalGenerator(fullName);
- }
- if (this->GlobalGenerator) {
- // set the global flag for unix style paths on cmSystemTools as
- // soon as the generator is set. This allows gmake to be used
- // on windows.
- cmSystemTools::SetForceUnixPaths(
- this->GlobalGenerator->GetForceUnixPaths());
- } else {
- this->CreateDefaultGlobalGenerator();
- }
- if (!this->GlobalGenerator) {
- cmSystemTools::Error("Could not create generator");
- return -1;
- }
- }
- cmValue genName = this->State->GetInitializedCacheValue("CMAKE_GENERATOR");
- if (genName) {
- if (!this->GlobalGenerator->MatchesGeneratorName(*genName)) {
- std::string message =
- cmStrCat("Error: generator : ", this->GlobalGenerator->GetName(),
- "\n"
- "Does not match the generator used previously: ",
- *genName,
- "\n"
- "Either remove the CMakeCache.txt file and CMakeFiles "
- "directory or choose a different binary directory.");
- cmSystemTools::Error(message);
- return -2;
- }
- }
- if (!genName) {
- this->AddCacheEntry("CMAKE_GENERATOR", this->GlobalGenerator->GetName(),
- "Name of generator.", cmStateEnums::INTERNAL);
- this->AddCacheEntry(
- "CMAKE_EXTRA_GENERATOR", this->GlobalGenerator->GetExtraGeneratorName(),
- "Name of external makefile project generator.", cmStateEnums::INTERNAL);
- if (!this->State->GetInitializedCacheValue("CMAKE_TOOLCHAIN_FILE")) {
- std::string envToolchain;
- if (cmSystemTools::GetEnv("CMAKE_TOOLCHAIN_FILE", envToolchain) &&
- !envToolchain.empty()) {
- this->AddCacheEntry("CMAKE_TOOLCHAIN_FILE", envToolchain,
- "The CMake toolchain file",
- cmStateEnums::FILEPATH);
- }
- }
- }
- if (cmValue instance =
- this->State->GetInitializedCacheValue("CMAKE_GENERATOR_INSTANCE")) {
- if (this->GeneratorInstanceSet && this->GeneratorInstance != *instance) {
- std::string message =
- cmStrCat("Error: generator instance: ", this->GeneratorInstance,
- "\n"
- "Does not match the instance used previously: ",
- *instance,
- "\n"
- "Either remove the CMakeCache.txt file and CMakeFiles "
- "directory or choose a different binary directory.");
- cmSystemTools::Error(message);
- return -2;
- }
- } else {
- this->AddCacheEntry("CMAKE_GENERATOR_INSTANCE", this->GeneratorInstance,
- "Generator instance identifier.",
- cmStateEnums::INTERNAL);
- }
- if (cmValue platformName =
- this->State->GetInitializedCacheValue("CMAKE_GENERATOR_PLATFORM")) {
- if (this->GeneratorPlatformSet &&
- this->GeneratorPlatform != *platformName) {
- std::string message =
- cmStrCat("Error: generator platform: ", this->GeneratorPlatform,
- "\n"
- "Does not match the platform used previously: ",
- *platformName,
- "\n"
- "Either remove the CMakeCache.txt file and CMakeFiles "
- "directory or choose a different binary directory.");
- cmSystemTools::Error(message);
- return -2;
- }
- } else {
- this->AddCacheEntry("CMAKE_GENERATOR_PLATFORM", this->GeneratorPlatform,
- "Name of generator platform.", cmStateEnums::INTERNAL);
- }
- if (cmValue tsName =
- this->State->GetInitializedCacheValue("CMAKE_GENERATOR_TOOLSET")) {
- if (this->GeneratorToolsetSet && this->GeneratorToolset != *tsName) {
- std::string message =
- cmStrCat("Error: generator toolset: ", this->GeneratorToolset,
- "\n"
- "Does not match the toolset used previously: ",
- *tsName,
- "\n"
- "Either remove the CMakeCache.txt file and CMakeFiles "
- "directory or choose a different binary directory.");
- cmSystemTools::Error(message);
- return -2;
- }
- } else {
- this->AddCacheEntry("CMAKE_GENERATOR_TOOLSET", this->GeneratorToolset,
- "Name of generator toolset.", cmStateEnums::INTERNAL);
- }
- if (!this->State->GetInitializedCacheValue("CMAKE_TEST_LAUNCHER")) {
- cm::optional<std::string> testLauncher =
- cmSystemTools::GetEnvVar("CMAKE_TEST_LAUNCHER");
- if (testLauncher && !testLauncher->empty()) {
- std::string message = "Test launcher to run tests executable.";
- this->AddCacheEntry("CMAKE_TEST_LAUNCHER", *testLauncher, message,
- cmStateEnums::STRING);
- }
- }
- if (!this->State->GetInitializedCacheValue(
- "CMAKE_CROSSCOMPILING_EMULATOR")) {
- cm::optional<std::string> emulator =
- cmSystemTools::GetEnvVar("CMAKE_CROSSCOMPILING_EMULATOR");
- if (emulator && !emulator->empty()) {
- std::string message =
- "Emulator to run executables and tests when cross compiling.";
- this->AddCacheEntry("CMAKE_CROSSCOMPILING_EMULATOR", *emulator, message,
- cmStateEnums::STRING);
- }
- }
- // reset any system configuration information, except for when we are
- // InTryCompile. With TryCompile the system info is taken from the parent's
- // info to save time
- if (!this->GetIsInTryCompile()) {
- this->GlobalGenerator->ClearEnabledLanguages();
- }
- #if !defined(CMAKE_BOOTSTRAP)
- this->FileAPI = cm::make_unique<cmFileAPI>(this);
- this->FileAPI->ReadQueries();
- this->Instrumentation = cm::make_unique<cmInstrumentation>(
- this->State->GetBinaryDirectory(),
- cmInstrumentation::LoadQueriesAfter::No);
- this->Instrumentation->ClearGeneratedQueries();
- if (!this->GetIsInTryCompile()) {
- this->TruncateOutputLog("CMakeConfigureLog.yaml");
- this->ConfigureLog = cm::make_unique<cmConfigureLog>(
- cmStrCat(this->GetHomeOutputDirectory(), "/CMakeFiles"_s),
- this->FileAPI->GetConfigureLogVersions());
- this->Instrumentation->LoadQueries();
- this->Instrumentation->CheckCDashVariable();
- }
- #endif
- // actually do the configure
- auto startTime = std::chrono::steady_clock::now();
- #if !defined(CMAKE_BOOTSTRAP)
- if (this->Instrumentation->HasErrors()) {
- return 1;
- }
- auto doConfigure = [this]() -> int {
- this->GlobalGenerator->Configure();
- return 0;
- };
- int ret = this->Instrumentation->InstrumentCommand(
- "configure", this->cmdArgs, [doConfigure]() { return doConfigure(); },
- cm::nullopt, cm::nullopt,
- this->GetIsInTryCompile() ? cmInstrumentation::LoadQueriesAfter::No
- : cmInstrumentation::LoadQueriesAfter::Yes);
- if (ret != 0) {
- return ret;
- }
- #else
- this->GlobalGenerator->Configure();
- #endif
- auto endTime = std::chrono::steady_clock::now();
- // configure result
- if (this->GetWorkingMode() == cmake::NORMAL_MODE) {
- std::ostringstream msg;
- if (cmSystemTools::GetErrorOccurredFlag()) {
- msg << "Configuring incomplete, errors occurred!";
- } else {
- auto ms = std::chrono::duration_cast<std::chrono::milliseconds>(
- endTime - startTime);
- msg << "Configuring done (" << std::fixed << std::setprecision(1)
- << ms.count() / 1000.0L << "s)";
- }
- this->UpdateProgress(msg.str(), -1);
- }
- #if !defined(CMAKE_BOOTSTRAP)
- this->ConfigureLog.reset();
- #endif
- // Before saving the cache
- // if the project did not define one of the entries below, add them now
- // so users can edit the values in the cache:
- auto const& mf = this->GlobalGenerator->GetMakefiles()[0];
- if (mf->IsOn("CTEST_USE_LAUNCHERS") &&
- !this->State->GetGlobalProperty("RULE_LAUNCH_COMPILE")) {
- this->IssueMessage(MessageType::FATAL_ERROR,
- "CTEST_USE_LAUNCHERS is enabled, but the "
- "RULE_LAUNCH_COMPILE global property is not defined.\n"
- "Did you forget to include(CTest) in the toplevel "
- "CMakeLists.txt ?");
- }
- // Setup launchers for instrumentation
- #if !defined(CMAKE_BOOTSTRAP)
- if (this->Instrumentation->HasQuery()) {
- std::string launcher;
- if (mf->IsOn("CTEST_USE_LAUNCHERS")) {
- launcher = cmStrCat('"', cmSystemTools::GetCTestCommand(),
- "\" --launch "
- "--current-build-dir <CMAKE_CURRENT_BINARY_DIR> ");
- } else {
- launcher =
- cmStrCat('"', cmSystemTools::GetCTestCommand(), "\" --instrument ");
- }
- std::string common_args =
- cmStrCat(" --target-name <TARGET_NAME> --build-dir \"",
- this->State->GetBinaryDirectory(), "\" ");
- this->State->SetGlobalProperty(
- "RULE_LAUNCH_COMPILE",
- cmStrCat(
- launcher, "--command-type compile", common_args,
- "--config <CONFIG> "
- "--output <OBJECT> --source <SOURCE> --language <LANGUAGE> -- "));
- this->State->SetGlobalProperty(
- "RULE_LAUNCH_LINK",
- cmStrCat(
- launcher, "--command-type link", common_args,
- "--output <TARGET> --target-type <TARGET_TYPE> --config <CONFIG> "
- "--language <LANGUAGE> --target-labels \"<TARGET_LABELS>\" -- "));
- this->State->SetGlobalProperty(
- "RULE_LAUNCH_CUSTOM",
- cmStrCat(launcher, "--command-type custom", common_args,
- "--output \"<OUTPUT>\" --role <ROLE> -- "));
- }
- #endif
- this->State->SaveVerificationScript(this->GetHomeOutputDirectory(),
- this->Messenger.get());
- this->SaveCache(this->GetHomeOutputDirectory());
- if (cmSystemTools::GetErrorOccurredFlag()) {
- #if !defined(CMAKE_BOOTSTRAP)
- this->FileAPI->WriteReplies(cmFileAPI::IndexFor::FailedConfigure);
- #endif
- return -1;
- }
- return 0;
- }
- std::unique_ptr<cmGlobalGenerator> cmake::EvaluateDefaultGlobalGenerator()
- {
- if (!this->EnvironmentGenerator.empty()) {
- auto gen = this->CreateGlobalGenerator(this->EnvironmentGenerator);
- if (!gen) {
- cmSystemTools::Error("CMAKE_GENERATOR was set but the specified "
- "generator doesn't exist. Using CMake default.");
- } else {
- return gen;
- }
- }
- #if defined(_WIN32) && !defined(__CYGWIN__) && !defined(CMAKE_BOOT_MINGW)
- std::string found;
- // Try to find the newest VS installed on the computer and
- // use that as a default if -G is not specified
- std::string const vsregBase = "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\";
- static char const* const vsVariants[] = {
- /* clang-format needs this comment to break after the opening brace */
- "VisualStudio\\", "VCExpress\\", "WDExpress\\"
- };
- struct VSVersionedGenerator
- {
- char const* MSVersion;
- char const* GeneratorName;
- };
- static VSVersionedGenerator const vsGenerators[] = {
- { "14.0", "Visual Studio 14 2015" }, //
- };
- static char const* const vsEntries[] = {
- "\\Setup\\VC;ProductDir", //
- ";InstallDir" //
- };
- if (cmVSSetupAPIHelper(17).IsVSInstalled()) {
- found = "Visual Studio 17 2022";
- } else if (cmVSSetupAPIHelper(16).IsVSInstalled()) {
- found = "Visual Studio 16 2019";
- } else if (cmVSSetupAPIHelper(15).IsVSInstalled()) {
- found = "Visual Studio 15 2017";
- } else {
- for (VSVersionedGenerator const* g = cm::cbegin(vsGenerators);
- found.empty() && g != cm::cend(vsGenerators); ++g) {
- for (char const* const* v = cm::cbegin(vsVariants);
- found.empty() && v != cm::cend(vsVariants); ++v) {
- for (char const* const* e = cm::cbegin(vsEntries);
- found.empty() && e != cm::cend(vsEntries); ++e) {
- std::string const reg = vsregBase + *v + g->MSVersion + *e;
- std::string dir;
- if (cmSystemTools::ReadRegistryValue(reg, dir,
- cmSystemTools::KeyWOW64_32) &&
- cmSystemTools::PathExists(dir)) {
- found = g->GeneratorName;
- }
- }
- }
- }
- }
- auto gen = this->CreateGlobalGenerator(found);
- if (!gen) {
- gen = cm::make_unique<cmGlobalNMakeMakefileGenerator>(this);
- }
- return std::unique_ptr<cmGlobalGenerator>(std::move(gen));
- #elif defined(CMAKE_BOOTSTRAP_NINJA)
- return std::unique_ptr<cmGlobalGenerator>(
- cm::make_unique<cmGlobalNinjaGenerator>(this));
- #else
- return std::unique_ptr<cmGlobalGenerator>(
- cm::make_unique<cmGlobalUnixMakefileGenerator3>(this));
- #endif
- }
- void cmake::CreateDefaultGlobalGenerator()
- {
- auto gen = this->EvaluateDefaultGlobalGenerator();
- #if defined(_WIN32) && !defined(__CYGWIN__) && !defined(CMAKE_BOOT_MINGW)
- // This print could be unified for all platforms
- std::cout << "-- Building for: " << gen->GetName() << '\n';
- #endif
- this->SetGlobalGenerator(std::move(gen));
- }
- void cmake::PreLoadCMakeFiles()
- {
- std::vector<std::string> args;
- std::string pre_load = this->GetHomeDirectory();
- if (!pre_load.empty()) {
- pre_load += "/PreLoad.cmake";
- if (cmSystemTools::FileExists(pre_load)) {
- this->ReadListFile(args, pre_load);
- }
- }
- pre_load = this->GetHomeOutputDirectory();
- if (!pre_load.empty()) {
- pre_load += "/PreLoad.cmake";
- if (cmSystemTools::FileExists(pre_load)) {
- this->ReadListFile(args, pre_load);
- }
- }
- }
- #ifdef CMake_ENABLE_DEBUGGER
- bool cmake::StartDebuggerIfEnabled()
- {
- if (!this->GetDebuggerOn()) {
- return true;
- }
- if (!DebugAdapter) {
- if (this->GetDebuggerPipe().empty()) {
- std::cerr
- << "Error: --debugger-pipe must be set when debugging is enabled.\n";
- return false;
- }
- try {
- DebugAdapter = std::make_shared<cmDebugger::cmDebuggerAdapter>(
- std::make_shared<cmDebugger::cmDebuggerPipeConnection>(
- this->GetDebuggerPipe()),
- this->GetDebuggerDapLogFile());
- } catch (std::runtime_error const& error) {
- std::cerr << "Error: Failed to create debugger adapter.\n";
- std::cerr << error.what() << "\n";
- return false;
- }
- Messenger->SetDebuggerAdapter(DebugAdapter);
- }
- return true;
- }
- void cmake::StopDebuggerIfNeeded(int exitCode)
- {
- if (!this->GetDebuggerOn()) {
- return;
- }
- // The debug adapter may have failed to start (e.g. invalid pipe path).
- if (DebugAdapter) {
- DebugAdapter->ReportExitCode(exitCode);
- DebugAdapter.reset();
- }
- }
- #endif
- // handle a command line invocation
- int cmake::Run(std::vector<std::string> const& args, bool noconfigure)
- {
- // Process the arguments
- this->SetArgs(args);
- if (cmSystemTools::GetErrorOccurredFlag()) {
- return -1;
- }
- if (this->GetWorkingMode() == HELP_MODE) {
- return 0;
- }
- #ifndef CMAKE_BOOTSTRAP
- // Configure the SARIF log for the current run
- cmSarif::LogFileWriter sarifLogFileWriter(
- this->GetMessenger()->GetSarifResultsLog());
- if (!sarifLogFileWriter.ConfigureForCMakeRun(*this)) {
- return -1;
- }
- #endif
- // Log the trace format version to the desired output
- if (this->GetTrace()) {
- this->PrintTraceFormatVersion();
- }
- // If we are given a stamp list file check if it is really out of date.
- if (!this->CheckStampList.empty() &&
- cmakeCheckStampList(this->CheckStampList)) {
- return 0;
- }
- // If we are given a stamp file check if it is really out of date.
- if (!this->CheckStampFile.empty() &&
- cmakeCheckStampFile(this->CheckStampFile)) {
- return 0;
- }
- if (this->GetWorkingMode() == NORMAL_MODE) {
- if (this->FreshCache) {
- this->DeleteCache(this->GetHomeOutputDirectory());
- }
- // load the cache
- if (this->LoadCache() < 0) {
- cmSystemTools::Error("Error executing cmake::LoadCache(). Aborting.\n");
- return -1;
- }
- #ifndef CMAKE_BOOTSTRAP
- // If no SARIF file has been explicitly specified, use the default path
- if (!this->SarifFileOutput) {
- // If no output file is specified, use the default path
- // Enable parent directory creation for the default path
- sarifLogFileWriter.SetPath(
- cm::filesystem::path(this->GetHomeOutputDirectory()) /
- std::string(cmSarif::PROJECT_DEFAULT_SARIF_FILE),
- true);
- }
- #endif
- } else {
- if (this->FreshCache) {
- cmSystemTools::Error("--fresh allowed only when configuring a project");
- return -1;
- }
- this->AddCMakePaths();
- }
- #ifndef CMAKE_BOOTSTRAP
- this->ProcessPresetVariables();
- this->ProcessPresetEnvironment();
- #endif
- // Add any cache args
- if (!this->SetCacheArgs(args)) {
- cmSystemTools::Error("Run 'cmake --help' for all supported options.");
- return -1;
- }
- #ifndef CMAKE_BOOTSTRAP
- if (this->GetLogLevel() == Message::LogLevel::LOG_VERBOSE ||
- this->GetLogLevel() == Message::LogLevel::LOG_DEBUG ||
- this->GetLogLevel() == Message::LogLevel::LOG_TRACE) {
- this->PrintPresetVariables();
- this->PrintPresetEnvironment();
- }
- #endif
- // In script mode we terminate after running the script.
- if (this->GetWorkingMode() != NORMAL_MODE) {
- if (cmSystemTools::GetErrorOccurredFlag()) {
- return -1;
- }
- return this->HasScriptModeExitCode() ? this->GetScriptModeExitCode() : 0;
- }
- #ifndef CMAKE_BOOTSTRAP
- // CMake only responds to the SARIF variable in normal mode
- this->MarkCliAsUsed(cmSarif::PROJECT_SARIF_FILE_VARIABLE);
- #endif
- // If MAKEFLAGS are given in the environment, remove the environment
- // variable. This will prevent try-compile from succeeding when it
- // should fail (if "-i" is an option). We cannot simply test
- // whether "-i" is given and remove it because some make programs
- // encode the MAKEFLAGS variable in a strange way.
- if (cmSystemTools::HasEnv("MAKEFLAGS")) {
- cmSystemTools::PutEnv("MAKEFLAGS=");
- }
- this->PreLoadCMakeFiles();
- if (noconfigure) {
- return 0;
- }
- // now run the global generate
- // Check the state of the build system to see if we need to regenerate.
- if (!this->CheckBuildSystem()) {
- return 0;
- }
- #ifdef CMake_ENABLE_DEBUGGER
- if (!this->StartDebuggerIfEnabled()) {
- return -1;
- }
- #endif
- int ret = this->Configure();
- if (ret) {
- #if defined(CMAKE_HAVE_VS_GENERATORS)
- if (!this->VSSolutionFile.empty() && this->GlobalGenerator) {
- // CMake is running to regenerate a Visual Studio build tree
- // during a build from the VS IDE. The build files cannot be
- // regenerated, so we should stop the build.
- cmSystemTools::Message("CMake Configure step failed. "
- "Build files cannot be regenerated correctly. "
- "Attempting to stop IDE build.");
- cmGlobalVisualStudioGenerator& gg =
- cm::static_reference_cast<cmGlobalVisualStudioGenerator>(
- this->GlobalGenerator);
- gg.CallVisualStudioMacro(cmGlobalVisualStudioGenerator::MacroStop,
- this->VSSolutionFile);
- }
- #endif
- return ret;
- }
- ret = this->Generate();
- if (ret) {
- cmSystemTools::Message("CMake Generate step failed. "
- "Build files cannot be regenerated correctly.");
- return ret;
- }
- std::string message = cmStrCat("Build files have been written to: ",
- this->GetHomeOutputDirectory());
- this->UpdateProgress(message, -1);
- return ret;
- }
- int cmake::Generate()
- {
- if (!this->GlobalGenerator) {
- return -1;
- }
- auto startTime = std::chrono::steady_clock::now();
- #if !defined(CMAKE_BOOTSTRAP)
- auto profilingRAII = this->CreateProfilingEntry("project", "generate");
- auto doGenerate = [this]() -> int {
- if (!this->GlobalGenerator->Compute()) {
- this->FileAPI->WriteReplies(cmFileAPI::IndexFor::FailedCompute);
- return -1;
- }
- this->GlobalGenerator->Generate();
- return 0;
- };
- int ret = this->Instrumentation->InstrumentCommand(
- "generate", this->cmdArgs, [doGenerate]() { return doGenerate(); });
- if (ret != 0) {
- return ret;
- }
- #else
- if (!this->GlobalGenerator->Compute()) {
- return -1;
- }
- this->GlobalGenerator->Generate();
- #endif
- auto endTime = std::chrono::steady_clock::now();
- {
- auto ms = std::chrono::duration_cast<std::chrono::milliseconds>(endTime -
- startTime);
- std::ostringstream msg;
- msg << "Generating done (" << std::fixed << std::setprecision(1)
- << ms.count() / 1000.0L << "s)";
- this->UpdateProgress(msg.str(), -1);
- }
- #if !defined(CMAKE_BOOTSTRAP)
- this->Instrumentation->CollectTimingData(
- cmInstrumentationQuery::Hook::PostGenerate);
- #endif
- if (!this->GraphVizFile.empty()) {
- std::cout << "Generate graphviz: " << this->GraphVizFile << '\n';
- this->GenerateGraphViz(this->GraphVizFile);
- }
- if (this->WarnUnusedCli) {
- this->RunCheckForUnusedVariables();
- }
- if (cmSystemTools::GetErrorOccurredFlag()) {
- #if !defined(CMAKE_BOOTSTRAP)
- this->FileAPI->WriteReplies(cmFileAPI::IndexFor::FailedGenerate);
- #endif
- return -1;
- }
- // Save the cache again after a successful Generate so that any internal
- // variables created during Generate are saved. (Specifically target GUIDs
- // for the Visual Studio and Xcode generators.)
- this->SaveCache(this->GetHomeOutputDirectory());
- #if !defined(CMAKE_BOOTSTRAP)
- this->GlobalGenerator->WriteInstallJson();
- this->FileAPI->WriteReplies(cmFileAPI::IndexFor::Success);
- #endif
- return 0;
- }
- void cmake::AddCacheEntry(std::string const& key, cmValue value,
- cmValue helpString, int type)
- {
- this->State->AddCacheEntry(key, value, helpString,
- static_cast<cmStateEnums::CacheEntryType>(type));
- this->UnwatchUnusedCli(key);
- if (key == "CMAKE_WARN_DEPRECATED"_s) {
- this->Messenger->SetSuppressDeprecatedWarnings(value && value.IsOff());
- } else if (key == "CMAKE_ERROR_DEPRECATED"_s) {
- this->Messenger->SetDeprecatedWarningsAsErrors(value.IsOn());
- } else if (key == "CMAKE_SUPPRESS_DEVELOPER_WARNINGS"_s) {
- this->Messenger->SetSuppressDevWarnings(value.IsOn());
- } else if (key == "CMAKE_SUPPRESS_DEVELOPER_ERRORS"_s) {
- this->Messenger->SetDevWarningsAsErrors(value && value.IsOff());
- }
- }
- bool cmake::DoWriteGlobVerifyTarget() const
- {
- return this->State->DoWriteGlobVerifyTarget();
- }
- std::string const& cmake::GetGlobVerifyScript() const
- {
- return this->State->GetGlobVerifyScript();
- }
- std::string const& cmake::GetGlobVerifyStamp() const
- {
- return this->State->GetGlobVerifyStamp();
- }
- void cmake::AddGlobCacheEntry(cmGlobCacheEntry const& entry,
- std::string const& variable,
- cmListFileBacktrace const& backtrace)
- {
- this->State->AddGlobCacheEntry(entry, variable, backtrace,
- this->Messenger.get());
- }
- std::vector<cmGlobCacheEntry> cmake::GetGlobCacheEntries() const
- {
- return this->State->GetGlobCacheEntries();
- }
- std::vector<std::string> cmake::GetAllExtensions() const
- {
- std::vector<std::string> allExt = this->CLikeSourceFileExtensions.ordered;
- allExt.insert(allExt.end(), this->HeaderFileExtensions.ordered.begin(),
- this->HeaderFileExtensions.ordered.end());
- // cuda extensions are also in SourceFileExtensions so we ignore it here
- allExt.insert(allExt.end(), this->FortranFileExtensions.ordered.begin(),
- this->FortranFileExtensions.ordered.end());
- allExt.insert(allExt.end(), this->HipFileExtensions.ordered.begin(),
- this->HipFileExtensions.ordered.end());
- allExt.insert(allExt.end(), this->ISPCFileExtensions.ordered.begin(),
- this->ISPCFileExtensions.ordered.end());
- return allExt;
- }
- std::string cmake::StripExtension(std::string const& file) const
- {
- auto dotpos = file.rfind('.');
- if (dotpos != std::string::npos) {
- #if defined(_WIN32) || defined(__APPLE__)
- auto ext = cmSystemTools::LowerCase(file.substr(dotpos + 1));
- #else
- auto ext = cm::string_view(file).substr(dotpos + 1);
- #endif
- if (this->IsAKnownExtension(ext)) {
- return file.substr(0, dotpos);
- }
- }
- return file;
- }
- cmValue cmake::GetCacheDefinition(std::string const& name) const
- {
- return this->State->GetInitializedCacheValue(name);
- }
- void cmake::AddScriptingCommands() const
- {
- GetScriptingCommands(this->GetState());
- }
- void cmake::AddProjectCommands() const
- {
- GetProjectCommands(this->GetState());
- }
- void cmake::AddDefaultGenerators()
- {
- #if defined(_WIN32) && !defined(__CYGWIN__)
- # if !defined(CMAKE_BOOT_MINGW)
- this->Generators.push_back(
- cmGlobalVisualStudioVersionedGenerator::NewFactory17());
- this->Generators.push_back(
- cmGlobalVisualStudioVersionedGenerator::NewFactory16());
- this->Generators.push_back(
- cmGlobalVisualStudioVersionedGenerator::NewFactory15());
- this->Generators.push_back(cmGlobalVisualStudio14Generator::NewFactory());
- this->Generators.push_back(cmGlobalBorlandMakefileGenerator::NewFactory());
- this->Generators.push_back(cmGlobalNMakeMakefileGenerator::NewFactory());
- this->Generators.push_back(cmGlobalJOMMakefileGenerator::NewFactory());
- # endif
- this->Generators.push_back(cmGlobalMSYSMakefileGenerator::NewFactory());
- this->Generators.push_back(cmGlobalMinGWMakefileGenerator::NewFactory());
- #endif
- #if !defined(CMAKE_BOOTSTRAP)
- # if (defined(__linux__) && !defined(__ANDROID__)) || defined(_WIN32)
- this->Generators.push_back(cmGlobalGhsMultiGenerator::NewFactory());
- # endif
- this->Generators.push_back(cmGlobalUnixMakefileGenerator3::NewFactory());
- this->Generators.push_back(cmGlobalNinjaGenerator::NewFactory());
- this->Generators.push_back(cmGlobalNinjaMultiGenerator::NewFactory());
- #elif defined(CMAKE_BOOTSTRAP_NINJA)
- this->Generators.push_back(cmGlobalNinjaGenerator::NewFactory());
- #elif defined(CMAKE_BOOTSTRAP_MAKEFILES)
- this->Generators.push_back(cmGlobalUnixMakefileGenerator3::NewFactory());
- #endif
- #if defined(CMAKE_USE_WMAKE)
- this->Generators.push_back(cmGlobalWatcomWMakeGenerator::NewFactory());
- #endif
- #ifdef CMAKE_USE_XCODE
- this->Generators.push_back(cmGlobalXCodeGenerator::NewFactory());
- #endif
- }
- bool cmake::ParseCacheEntry(std::string const& entry, std::string& var,
- std::string& value,
- cmStateEnums::CacheEntryType& type)
- {
- return cmState::ParseCacheEntry(entry, var, value, type);
- }
- int cmake::LoadCache()
- {
- // could we not read the cache
- if (!this->LoadCache(this->GetHomeOutputDirectory())) {
- // if it does exist, but isn't readable then warn the user
- std::string cacheFile =
- cmStrCat(this->GetHomeOutputDirectory(), "/CMakeCache.txt");
- if (cmSystemTools::FileExists(cacheFile)) {
- cmSystemTools::Error(
- "There is a CMakeCache.txt file for the current binary tree but "
- "cmake does not have permission to read it. Please check the "
- "permissions of the directory you are trying to run CMake on.");
- return -1;
- }
- }
- // setup CMAKE_ROOT and CMAKE_COMMAND
- if (!this->AddCMakePaths()) {
- return -3;
- }
- return 0;
- }
- bool cmake::LoadCache(std::string const& path)
- {
- std::set<std::string> emptySet;
- return this->LoadCache(path, true, emptySet, emptySet);
- }
- bool cmake::LoadCache(std::string const& path, bool internal,
- std::set<std::string>& excludes,
- std::set<std::string>& includes)
- {
- bool result = this->State->LoadCache(path, internal, excludes, includes);
- static auto const entries = { "CMAKE_CACHE_MAJOR_VERSION",
- "CMAKE_CACHE_MINOR_VERSION" };
- for (auto const& entry : entries) {
- this->UnwatchUnusedCli(entry);
- }
- return result;
- }
- bool cmake::SaveCache(std::string const& path)
- {
- bool result = this->State->SaveCache(path, this->GetMessenger());
- static auto const entries = { "CMAKE_CACHE_MAJOR_VERSION",
- "CMAKE_CACHE_MINOR_VERSION",
- "CMAKE_CACHE_PATCH_VERSION",
- "CMAKE_CACHEFILE_DIR" };
- for (auto const& entry : entries) {
- this->UnwatchUnusedCli(entry);
- }
- return result;
- }
- bool cmake::DeleteCache(std::string const& path)
- {
- return this->State->DeleteCache(path);
- }
- void cmake::SetProgressCallback(ProgressCallbackType f)
- {
- this->ProgressCallback = std::move(f);
- }
- void cmake::UpdateProgress(std::string const& msg, float prog)
- {
- if (this->ProgressCallback && !this->GetIsInTryCompile()) {
- this->ProgressCallback(msg, prog);
- }
- }
- bool cmake::GetIsInTryCompile() const
- {
- return this->State->GetProjectKind() == cmState::ProjectKind::TryCompile;
- }
- void cmake::AppendGlobalGeneratorsDocumentation(
- std::vector<cmDocumentationEntry>& v)
- {
- auto const defaultGenerator = this->EvaluateDefaultGlobalGenerator();
- auto const defaultName = defaultGenerator->GetName();
- auto foundDefaultOne = false;
- for (auto const& g : this->Generators) {
- v.emplace_back(g->GetDocumentation());
- if (!foundDefaultOne && cmHasPrefix(v.back().Name, defaultName)) {
- v.back().CustomNamePrefix = '*';
- foundDefaultOne = true;
- }
- }
- }
- void cmake::AppendExtraGeneratorsDocumentation(
- std::vector<cmDocumentationEntry>& v)
- {
- for (cmExternalMakefileProjectGeneratorFactory* eg : this->ExtraGenerators) {
- std::string const doc = eg->GetDocumentation();
- std::string const name = eg->GetName();
- // Aliases:
- for (std::string const& a : eg->Aliases) {
- v.emplace_back(cmDocumentationEntry{ a, doc });
- }
- // Full names:
- for (std::string const& g : eg->GetSupportedGlobalGenerators()) {
- v.emplace_back(cmDocumentationEntry{
- cmExternalMakefileProjectGenerator::CreateFullGeneratorName(g, name),
- doc });
- }
- }
- }
- std::vector<cmDocumentationEntry> cmake::GetGeneratorsDocumentation()
- {
- std::vector<cmDocumentationEntry> v;
- this->AppendGlobalGeneratorsDocumentation(v);
- this->AppendExtraGeneratorsDocumentation(v);
- return v;
- }
- void cmake::PrintGeneratorList()
- {
- #ifndef CMAKE_BOOTSTRAP
- cmDocumentation doc;
- auto generators = this->GetGeneratorsDocumentation();
- doc.AppendSection("Generators", generators);
- std::cerr << '\n';
- doc.PrintDocumentation(cmDocumentation::ListGenerators, std::cerr);
- #endif
- }
- int cmake::CheckBuildSystem()
- {
- // We do not need to rerun CMake. Check dependency integrity.
- bool const verbose = isCMakeVerbose();
- // This method will check the integrity of the build system if the
- // option was given on the command line. It reads the given file to
- // determine whether CMake should rerun.
- // If no file is provided for the check, we have to rerun.
- if (this->CheckBuildSystemArgument.empty()) {
- if (verbose) {
- cmSystemTools::Stdout("Re-run cmake no build system arguments\n");
- }
- return 1;
- }
- // If the file provided does not exist, we have to rerun.
- if (!cmSystemTools::FileExists(this->CheckBuildSystemArgument)) {
- if (verbose) {
- std::ostringstream msg;
- msg << "Re-run cmake missing file: " << this->CheckBuildSystemArgument
- << '\n';
- cmSystemTools::Stdout(msg.str());
- }
- return 1;
- }
- // Read the rerun check file and use it to decide whether to do the
- // global generate.
- // Actually, all we need is the `set` command.
- cmake cm(RoleScript, cmState::Unknown);
- cm.SetHomeDirectory("");
- cm.SetHomeOutputDirectory("");
- cm.GetCurrentSnapshot().SetDefaultDefinitions();
- cmGlobalGenerator gg(&cm);
- cmMakefile mf(&gg, cm.GetCurrentSnapshot());
- if (!mf.ReadListFile(this->CheckBuildSystemArgument) ||
- cmSystemTools::GetErrorOccurredFlag()) {
- if (verbose) {
- std::ostringstream msg;
- msg << "Re-run cmake error reading : " << this->CheckBuildSystemArgument
- << '\n';
- cmSystemTools::Stdout(msg.str());
- }
- // There was an error reading the file. Just rerun.
- return 1;
- }
- if (this->ClearBuildSystem) {
- // Get the generator used for this build system.
- std::string genName = mf.GetSafeDefinition("CMAKE_DEPENDS_GENERATOR");
- if (!cmNonempty(genName)) {
- genName = "Unix Makefiles";
- }
- // Create the generator and use it to clear the dependencies.
- std::unique_ptr<cmGlobalGenerator> ggd =
- this->CreateGlobalGenerator(genName);
- if (ggd) {
- cm.GetCurrentSnapshot().SetDefaultDefinitions();
- cmMakefile mfd(ggd.get(), cm.GetCurrentSnapshot());
- auto lgd = ggd->CreateLocalGenerator(&mfd);
- lgd->ClearDependencies(&mfd, verbose);
- }
- }
- // If any byproduct of makefile generation is missing we must re-run.
- cmList products{ mf.GetDefinition("CMAKE_MAKEFILE_PRODUCTS") };
- for (auto const& p : products) {
- if (!cmSystemTools::PathExists(p)) {
- if (verbose) {
- cmSystemTools::Stdout(
- cmStrCat("Re-run cmake, missing byproduct: ", p, '\n'));
- }
- return 1;
- }
- }
- // Get the set of dependencies and outputs.
- cmList depends{ mf.GetDefinition("CMAKE_MAKEFILE_DEPENDS") };
- cmList outputs;
- if (!depends.empty()) {
- outputs.assign(mf.GetDefinition("CMAKE_MAKEFILE_OUTPUTS"));
- }
- if (depends.empty() || outputs.empty()) {
- // Not enough information was provided to do the test. Just rerun.
- if (verbose) {
- cmSystemTools::Stdout("Re-run cmake no CMAKE_MAKEFILE_DEPENDS "
- "or CMAKE_MAKEFILE_OUTPUTS :\n");
- }
- return 1;
- }
- // Find the newest dependency.
- auto dep = depends.begin();
- std::string dep_newest = *dep++;
- for (; dep != depends.end(); ++dep) {
- int result = 0;
- if (this->FileTimeCache->Compare(dep_newest, *dep, &result)) {
- if (result < 0) {
- dep_newest = *dep;
- }
- } else {
- if (verbose) {
- cmSystemTools::Stdout(
- "Re-run cmake: build system dependency is missing\n");
- }
- return 1;
- }
- }
- // Find the oldest output.
- auto out = outputs.begin();
- std::string out_oldest = *out++;
- for (; out != outputs.end(); ++out) {
- int result = 0;
- if (this->FileTimeCache->Compare(out_oldest, *out, &result)) {
- if (result > 0) {
- out_oldest = *out;
- }
- } else {
- if (verbose) {
- cmSystemTools::Stdout(
- "Re-run cmake: build system output is missing\n");
- }
- return 1;
- }
- }
- // If any output is older than any dependency then rerun.
- {
- int result = 0;
- if (!this->FileTimeCache->Compare(out_oldest, dep_newest, &result) ||
- result < 0) {
- if (verbose) {
- std::ostringstream msg;
- msg << "Re-run cmake file: " << out_oldest
- << " older than: " << dep_newest << '\n';
- cmSystemTools::Stdout(msg.str());
- }
- return 1;
- }
- }
- // No need to rerun.
- return 0;
- }
- void cmake::TruncateOutputLog(char const* fname)
- {
- std::string fullPath = cmStrCat(this->GetHomeOutputDirectory(), '/', fname);
- struct stat st;
- if (::stat(fullPath.c_str(), &st)) {
- return;
- }
- if (!this->State->GetInitializedCacheValue("CMAKE_CACHEFILE_DIR")) {
- cmSystemTools::RemoveFile(fullPath);
- return;
- }
- off_t fsize = st.st_size;
- off_t const maxFileSize = 50 * 1024;
- if (fsize < maxFileSize) {
- // TODO: truncate file
- return;
- }
- }
- void cmake::MarkCliAsUsed(std::string const& variable)
- {
- this->UsedCliVariables[variable] = true;
- }
- void cmake::GenerateGraphViz(std::string const& fileName) const
- {
- #ifndef CMAKE_BOOTSTRAP
- cmGraphVizWriter gvWriter(fileName, this->GetGlobalGenerator());
- std::string settingsFile =
- cmStrCat(this->GetHomeOutputDirectory(), "/CMakeGraphVizOptions.cmake");
- std::string fallbackSettingsFile =
- cmStrCat(this->GetHomeDirectory(), "/CMakeGraphVizOptions.cmake");
- gvWriter.ReadSettings(settingsFile, fallbackSettingsFile);
- gvWriter.Write();
- #endif
- }
- void cmake::SetProperty(std::string const& prop, cmValue value)
- {
- this->State->SetGlobalProperty(prop, value);
- }
- void cmake::AppendProperty(std::string const& prop, std::string const& value,
- bool asString)
- {
- this->State->AppendGlobalProperty(prop, value, asString);
- }
- cmValue cmake::GetProperty(std::string const& prop)
- {
- return this->State->GetGlobalProperty(prop);
- }
- bool cmake::GetPropertyAsBool(std::string const& prop)
- {
- return this->State->GetGlobalPropertyAsBool(prop);
- }
- cmInstalledFile* cmake::GetOrCreateInstalledFile(cmMakefile* mf,
- std::string const& name)
- {
- auto i = this->InstalledFiles.find(name);
- if (i != this->InstalledFiles.end()) {
- cmInstalledFile& file = i->second;
- return &file;
- }
- cmInstalledFile& file = this->InstalledFiles[name];
- file.SetName(mf, name);
- return &file;
- }
- cmInstalledFile const* cmake::GetInstalledFile(std::string const& name) const
- {
- auto i = this->InstalledFiles.find(name);
- if (i != this->InstalledFiles.end()) {
- cmInstalledFile const& file = i->second;
- return &file;
- }
- return nullptr;
- }
- int cmake::GetSystemInformation(std::vector<std::string>& args)
- {
- // so create the directory
- std::string resultFile;
- std::string cwd = cmSystemTools::GetLogicalWorkingDirectory();
- std::string destPath = cwd + "/__cmake_systeminformation";
- cmSystemTools::RemoveADirectory(destPath);
- if (!cmSystemTools::MakeDirectory(destPath)) {
- std::cerr << "Error: --system-information must be run from a "
- "writable directory!\n";
- return 1;
- }
- // process the arguments
- bool writeToStdout = true;
- for (unsigned int i = 1; i < args.size(); ++i) {
- std::string const& arg = args[i];
- if (cmHasLiteralPrefix(arg, "-G")) {
- std::string value = arg.substr(2);
- if (value.empty()) {
- ++i;
- if (i >= args.size()) {
- cmSystemTools::Error("No generator specified for -G");
- this->PrintGeneratorList();
- return -1;
- }
- value = args[i];
- }
- auto gen = this->CreateGlobalGenerator(value);
- if (!gen) {
- cmSystemTools::Error("Could not create named generator " + value);
- this->PrintGeneratorList();
- } else {
- this->SetGlobalGenerator(std::move(gen));
- }
- }
- // no option assume it is the output file
- else {
- if (!cmSystemTools::FileIsFullPath(arg)) {
- resultFile = cmStrCat(cwd, '/');
- }
- resultFile += arg;
- writeToStdout = false;
- }
- }
- // we have to find the module directory, so we can copy the files
- this->AddCMakePaths();
- std::string modulesPath =
- cmStrCat(cmSystemTools::GetCMakeRoot(), "/Modules");
- std::string inFile = cmStrCat(modulesPath, "/SystemInformation.cmake");
- std::string outFile = cmStrCat(destPath, "/CMakeLists.txt");
- // Copy file
- if (!cmsys::SystemTools::CopyFileAlways(inFile, outFile)) {
- std::cerr << "Error copying file \"" << inFile << "\" to \"" << outFile
- << "\".\n";
- return 1;
- }
- // do we write to a file or to stdout?
- if (resultFile.empty()) {
- resultFile = cmStrCat(cwd, "/__cmake_systeminformation/results.txt");
- }
- {
- // now run cmake on the CMakeLists file
- cmWorkingDirectory workdir(destPath);
- if (workdir.Failed()) {
- // We created the directory and we were able to copy the CMakeLists.txt
- // file to it, so we wouldn't expect to get here unless the default
- // permissions are questionable or some other process has deleted the
- // directory
- std::cerr << workdir.GetError() << '\n';
- return 1;
- }
- std::vector<std::string> args2;
- args2.push_back(args[0]);
- args2.push_back(destPath);
- args2.push_back("-DRESULT_FILE=" + resultFile);
- int res = this->Run(args2, false);
- if (res != 0) {
- std::cerr << "Error: --system-information failed on internal CMake!\n";
- return res;
- }
- }
- // echo results to stdout if needed
- if (writeToStdout) {
- FILE* fin = cmsys::SystemTools::Fopen(resultFile, "r");
- if (fin) {
- int const bufferSize = 4096;
- char buffer[bufferSize];
- size_t n;
- while ((n = fread(buffer, 1, bufferSize, fin)) > 0) {
- for (char* c = buffer; c < buffer + n; ++c) {
- putc(*c, stdout);
- }
- fflush(stdout);
- }
- fclose(fin);
- }
- }
- // clean up the directory
- cmSystemTools::RemoveADirectory(destPath);
- return 0;
- }
- void cmake::IssueMessage(MessageType t, std::string const& text,
- cmListFileBacktrace const& backtrace) const
- {
- this->Messenger->IssueMessage(t, text, backtrace);
- }
- std::vector<std::string> cmake::GetDebugConfigs()
- {
- cmList configs;
- if (cmValue config_list =
- this->State->GetGlobalProperty("DEBUG_CONFIGURATIONS")) {
- // Expand the specified list and convert to upper-case.
- configs.assign(*config_list);
- configs.transform(cmList::TransformAction::TOUPPER);
- }
- // If no configurations were specified, use a default list.
- if (configs.empty()) {
- configs.emplace_back("DEBUG");
- }
- return std::move(configs.data());
- }
- int cmake::Build(int jobs, std::string dir, std::vector<std::string> targets,
- std::string config, std::vector<std::string> nativeOptions,
- cmBuildOptions& buildOptions, bool verbose,
- std::string const& presetName, bool listPresets,
- std::vector<std::string> const& args)
- {
- this->SetHomeDirectory("");
- this->SetHomeOutputDirectory("");
- #if !defined(CMAKE_BOOTSTRAP)
- if (!presetName.empty() || listPresets) {
- this->SetHomeDirectory(cmSystemTools::GetLogicalWorkingDirectory());
- this->SetHomeOutputDirectory(cmSystemTools::GetLogicalWorkingDirectory());
- cmCMakePresetsGraph settingsFile;
- auto result = settingsFile.ReadProjectPresets(this->GetHomeDirectory());
- if (result != true) {
- cmSystemTools::Error(
- cmStrCat("Could not read presets from ", this->GetHomeDirectory(),
- ":\n", settingsFile.parseState.GetErrorMessage()));
- return 1;
- }
- if (listPresets) {
- settingsFile.PrintBuildPresetList();
- return 0;
- }
- auto presetPair = settingsFile.BuildPresets.find(presetName);
- if (presetPair == settingsFile.BuildPresets.end()) {
- cmSystemTools::Error(cmStrCat("No such build preset in ",
- this->GetHomeDirectory(), ": \"",
- presetName, '"'));
- settingsFile.PrintBuildPresetList();
- return 1;
- }
- if (presetPair->second.Unexpanded.Hidden) {
- cmSystemTools::Error(cmStrCat("Cannot use hidden build preset in ",
- this->GetHomeDirectory(), ": \"",
- presetName, '"'));
- settingsFile.PrintBuildPresetList();
- return 1;
- }
- auto const& expandedPreset = presetPair->second.Expanded;
- if (!expandedPreset) {
- cmSystemTools::Error(cmStrCat("Could not evaluate build preset \"",
- presetName,
- "\": Invalid macro expansion"));
- settingsFile.PrintBuildPresetList();
- return 1;
- }
- if (!expandedPreset->ConditionResult) {
- cmSystemTools::Error(cmStrCat("Cannot use disabled build preset in ",
- this->GetHomeDirectory(), ": \"",
- presetName, '"'));
- settingsFile.PrintBuildPresetList();
- return 1;
- }
- auto configurePresetPair =
- settingsFile.ConfigurePresets.find(expandedPreset->ConfigurePreset);
- if (configurePresetPair == settingsFile.ConfigurePresets.end()) {
- cmSystemTools::Error(cmStrCat("No such configure preset in ",
- this->GetHomeDirectory(), ": \"",
- expandedPreset->ConfigurePreset, '"'));
- this->PrintPresetList(settingsFile);
- return 1;
- }
- if (configurePresetPair->second.Unexpanded.Hidden) {
- cmSystemTools::Error(cmStrCat("Cannot use hidden configure preset in ",
- this->GetHomeDirectory(), ": \"",
- expandedPreset->ConfigurePreset, '"'));
- this->PrintPresetList(settingsFile);
- return 1;
- }
- auto const& expandedConfigurePreset = configurePresetPair->second.Expanded;
- if (!expandedConfigurePreset) {
- cmSystemTools::Error(cmStrCat("Could not evaluate configure preset \"",
- expandedPreset->ConfigurePreset,
- "\": Invalid macro expansion"));
- return 1;
- }
- if (!expandedConfigurePreset->BinaryDir.empty()) {
- dir = expandedConfigurePreset->BinaryDir;
- }
- this->UnprocessedPresetEnvironment = expandedPreset->Environment;
- this->ProcessPresetEnvironment();
- if ((jobs == cmake::DEFAULT_BUILD_PARALLEL_LEVEL ||
- jobs == cmake::NO_BUILD_PARALLEL_LEVEL) &&
- expandedPreset->Jobs) {
- jobs = *expandedPreset->Jobs;
- }
- if (targets.empty()) {
- targets.insert(targets.begin(), expandedPreset->Targets.begin(),
- expandedPreset->Targets.end());
- }
- if (config.empty()) {
- config = expandedPreset->Configuration;
- }
- if (!buildOptions.Clean && expandedPreset->CleanFirst) {
- buildOptions.Clean = *expandedPreset->CleanFirst;
- }
- if (buildOptions.ResolveMode == PackageResolveMode::Default &&
- expandedPreset->ResolvePackageReferences) {
- buildOptions.ResolveMode = *expandedPreset->ResolvePackageReferences;
- }
- if (!verbose && expandedPreset->Verbose) {
- verbose = *expandedPreset->Verbose;
- }
- if (nativeOptions.empty()) {
- nativeOptions.insert(nativeOptions.begin(),
- expandedPreset->NativeToolOptions.begin(),
- expandedPreset->NativeToolOptions.end());
- }
- }
- #endif
- if (!cmSystemTools::FileIsDirectory(dir)) {
- std::cerr << "Error: " << dir << " is not a directory\n";
- return 1;
- }
- std::string cachePath = FindCacheFile(dir);
- if (!this->LoadCache(cachePath)) {
- std::cerr
- << "Error: not a CMake build directory (missing CMakeCache.txt)\n";
- return 1;
- }
- cmValue cachedGenerator = this->State->GetCacheEntryValue("CMAKE_GENERATOR");
- if (!cachedGenerator) {
- std::cerr << "Error: could not find CMAKE_GENERATOR in Cache\n";
- return 1;
- }
- auto gen = this->CreateGlobalGenerator(*cachedGenerator);
- if (!gen) {
- std::cerr << "Error: could not create CMAKE_GENERATOR \""
- << *cachedGenerator << "\"\n";
- return 1;
- }
- this->SetGlobalGenerator(std::move(gen));
- cmValue cachedGeneratorInstance =
- this->State->GetCacheEntryValue("CMAKE_GENERATOR_INSTANCE");
- if (cachedGeneratorInstance) {
- cmMakefile mf(this->GetGlobalGenerator(), this->GetCurrentSnapshot());
- if (!this->GlobalGenerator->SetGeneratorInstance(*cachedGeneratorInstance,
- &mf)) {
- return 1;
- }
- }
- cmValue cachedGeneratorPlatform =
- this->State->GetCacheEntryValue("CMAKE_GENERATOR_PLATFORM");
- if (cachedGeneratorPlatform) {
- cmMakefile mf(this->GetGlobalGenerator(), this->GetCurrentSnapshot());
- if (!this->GlobalGenerator->SetGeneratorPlatform(*cachedGeneratorPlatform,
- &mf)) {
- return 1;
- }
- }
- cmValue cachedGeneratorToolset =
- this->State->GetCacheEntryValue("CMAKE_GENERATOR_TOOLSET");
- if (cachedGeneratorToolset) {
- cmMakefile mf(this->GetGlobalGenerator(), this->GetCurrentSnapshot());
- if (!this->GlobalGenerator->SetGeneratorToolset(*cachedGeneratorToolset,
- true, &mf)) {
- return 1;
- }
- }
- std::string projName;
- cmValue cachedProjectName =
- this->State->GetCacheEntryValue("CMAKE_PROJECT_NAME");
- if (!cachedProjectName) {
- std::cerr << "Error: could not find CMAKE_PROJECT_NAME in Cache\n";
- return 1;
- }
- projName = *cachedProjectName;
- if (this->State->GetCacheEntryValue("CMAKE_VERBOSE_MAKEFILE").IsOn()) {
- verbose = true;
- }
- #ifdef CMAKE_HAVE_VS_GENERATORS
- // For VS generators, explicitly check if regeneration is necessary before
- // actually starting the build. If not done separately from the build
- // itself, there is the risk of building an out-of-date solution file due
- // to limitations of the underlying build system.
- std::string const stampList = cachePath + "/" + "CMakeFiles/" +
- cmGlobalVisualStudio14Generator::GetGenerateStampList();
- // Note that the stampList file only exists for VS generators.
- if (cmSystemTools::FileExists(stampList)) {
- this->AddScriptingCommands();
- if (!cmakeCheckStampList(stampList)) {
- // Correctly initialize the home (=source) and home output (=binary)
- // directories, which is required for running the generation step.
- std::string homeOrig = this->GetHomeDirectory();
- std::string homeOutputOrig = this->GetHomeOutputDirectory();
- this->SetDirectoriesFromFile(cachePath);
- this->AddProjectCommands();
- int ret = this->Configure();
- if (ret) {
- cmSystemTools::Message("CMake Configure step failed. "
- "Build files cannot be regenerated correctly.");
- return ret;
- }
- ret = this->Generate();
- if (ret) {
- cmSystemTools::Message("CMake Generate step failed. "
- "Build files cannot be regenerated correctly.");
- return ret;
- }
- std::string message = cmStrCat("Build files have been written to: ",
- this->GetHomeOutputDirectory());
- this->UpdateProgress(message, -1);
- // Restore the previously set directories to their original value.
- this->SetHomeDirectory(homeOrig);
- this->SetHomeOutputDirectory(homeOutputOrig);
- }
- }
- #endif
- if (!this->GlobalGenerator->ReadCacheEntriesForBuild(*this->State)) {
- return 1;
- }
- #if !defined(CMAKE_BOOTSTRAP)
- cmInstrumentation instrumentation(dir);
- if (instrumentation.HasErrors()) {
- return 1;
- }
- instrumentation.CollectTimingData(
- cmInstrumentationQuery::Hook::PreCMakeBuild);
- #endif
- this->GlobalGenerator->PrintBuildCommandAdvice(std::cerr, jobs);
- std::stringstream ostr;
- // `cmGlobalGenerator::Build` logs metadata about what directory and commands
- // are being executed to the `output` parameter. If CMake is verbose, print
- // this out.
- std::ostream& verbose_ostr = verbose ? std::cout : ostr;
- auto doBuild = [this, jobs, dir, projName, targets, &verbose_ostr, config,
- buildOptions, verbose, nativeOptions]() -> int {
- return this->GlobalGenerator->Build(
- jobs, "", dir, projName, targets, verbose_ostr, "", config, buildOptions,
- verbose, cmDuration::zero(), cmSystemTools::OUTPUT_PASSTHROUGH,
- nativeOptions);
- };
- #if !defined(CMAKE_BOOTSTRAP)
- int buildresult =
- instrumentation.InstrumentCommand("cmakeBuild", args, doBuild);
- instrumentation.CollectTimingData(
- cmInstrumentationQuery::Hook::PostCMakeBuild);
- #else
- int buildresult = doBuild();
- #endif
- return buildresult;
- }
- bool cmake::Open(std::string const& dir, DryRun dryRun)
- {
- this->SetHomeDirectory("");
- this->SetHomeOutputDirectory("");
- if (!cmSystemTools::FileIsDirectory(dir)) {
- if (dryRun == DryRun::No) {
- std::cerr << "Error: " << dir << " is not a directory\n";
- }
- return false;
- }
- std::string cachePath = FindCacheFile(dir);
- if (!this->LoadCache(cachePath)) {
- std::cerr
- << "Error: not a CMake build directory (missing CMakeCache.txt)\n";
- return false;
- }
- cmValue genName = this->State->GetCacheEntryValue("CMAKE_GENERATOR");
- if (!genName) {
- std::cerr << "Error: could not find CMAKE_GENERATOR in Cache\n";
- return false;
- }
- cmValue extraGenName =
- this->State->GetInitializedCacheValue("CMAKE_EXTRA_GENERATOR");
- std::string fullName =
- cmExternalMakefileProjectGenerator::CreateFullGeneratorName(
- *genName, extraGenName ? *extraGenName : "");
- std::unique_ptr<cmGlobalGenerator> gen =
- this->CreateGlobalGenerator(fullName);
- if (!gen) {
- std::cerr << "Error: could not create CMAKE_GENERATOR \"" << fullName
- << "\"\n";
- return false;
- }
- cmValue cachedProjectName =
- this->State->GetCacheEntryValue("CMAKE_PROJECT_NAME");
- if (!cachedProjectName) {
- std::cerr << "Error: could not find CMAKE_PROJECT_NAME in Cache\n";
- return false;
- }
- return gen->Open(dir, *cachedProjectName, dryRun == DryRun::Yes);
- }
- #if !defined(CMAKE_BOOTSTRAP)
- template <typename T>
- T const* cmake::FindPresetForWorkflow(
- cm::static_string_view type,
- std::map<std::string, cmCMakePresetsGraph::PresetPair<T>> const& presets,
- cmCMakePresetsGraph::WorkflowPreset::WorkflowStep const& step)
- {
- auto it = presets.find(step.PresetName);
- if (it == presets.end()) {
- cmSystemTools::Error(cmStrCat("No such ", type, " preset in ",
- this->GetHomeDirectory(), ": \"",
- step.PresetName, '"'));
- return nullptr;
- }
- if (it->second.Unexpanded.Hidden) {
- cmSystemTools::Error(cmStrCat("Cannot use hidden ", type, " preset in ",
- this->GetHomeDirectory(), ": \"",
- step.PresetName, '"'));
- return nullptr;
- }
- if (!it->second.Expanded) {
- cmSystemTools::Error(cmStrCat("Could not evaluate ", type, " preset \"",
- step.PresetName,
- "\": Invalid macro expansion"));
- return nullptr;
- }
- if (!it->second.Expanded->ConditionResult) {
- cmSystemTools::Error(cmStrCat("Cannot use disabled ", type, " preset in ",
- this->GetHomeDirectory(), ": \"",
- step.PresetName, '"'));
- return nullptr;
- }
- return &*it->second.Expanded;
- }
- std::function<int()> cmake::BuildWorkflowStep(
- std::vector<std::string> const& args)
- {
- cmUVProcessChainBuilder builder;
- builder.AddCommand(args)
- .SetExternalStream(cmUVProcessChainBuilder::Stream_OUTPUT, stdout)
- .SetExternalStream(cmUVProcessChainBuilder::Stream_ERROR, stderr);
- return [builder]() -> int {
- auto chain = builder.Start();
- chain.Wait();
- return static_cast<int>(chain.GetStatus(0).ExitStatus);
- };
- }
- #endif
- int cmake::Workflow(std::string const& presetName,
- WorkflowListPresets listPresets, WorkflowFresh fresh)
- {
- #ifndef CMAKE_BOOTSTRAP
- this->SetHomeDirectory(cmSystemTools::GetLogicalWorkingDirectory());
- this->SetHomeOutputDirectory(cmSystemTools::GetLogicalWorkingDirectory());
- cmCMakePresetsGraph settingsFile;
- auto result = settingsFile.ReadProjectPresets(this->GetHomeDirectory());
- if (result != true) {
- cmSystemTools::Error(cmStrCat("Could not read presets from ",
- this->GetHomeDirectory(), ":\n",
- settingsFile.parseState.GetErrorMessage()));
- return 1;
- }
- if (listPresets == WorkflowListPresets::Yes) {
- settingsFile.PrintWorkflowPresetList();
- return 0;
- }
- auto presetPair = settingsFile.WorkflowPresets.find(presetName);
- if (presetPair == settingsFile.WorkflowPresets.end()) {
- cmSystemTools::Error(cmStrCat("No such workflow preset in ",
- this->GetHomeDirectory(), ": \"", presetName,
- '"'));
- settingsFile.PrintWorkflowPresetList();
- return 1;
- }
- if (presetPair->second.Unexpanded.Hidden) {
- cmSystemTools::Error(cmStrCat("Cannot use hidden workflow preset in ",
- this->GetHomeDirectory(), ": \"", presetName,
- '"'));
- settingsFile.PrintWorkflowPresetList();
- return 1;
- }
- auto const& expandedPreset = presetPair->second.Expanded;
- if (!expandedPreset) {
- cmSystemTools::Error(cmStrCat("Could not evaluate workflow preset \"",
- presetName, "\": Invalid macro expansion"));
- settingsFile.PrintWorkflowPresetList();
- return 1;
- }
- if (!expandedPreset->ConditionResult) {
- cmSystemTools::Error(cmStrCat("Cannot use disabled workflow preset in ",
- this->GetHomeDirectory(), ": \"", presetName,
- '"'));
- settingsFile.PrintWorkflowPresetList();
- return 1;
- }
- struct CalculatedStep
- {
- int StepNumber;
- cm::static_string_view Type;
- std::string Name;
- std::function<int()> Action;
- CalculatedStep(int stepNumber, cm::static_string_view type,
- std::string name, std::function<int()> action)
- : StepNumber(stepNumber)
- , Type(type)
- , Name(std::move(name))
- , Action(std::move(action))
- {
- }
- };
- std::vector<CalculatedStep> steps;
- steps.reserve(expandedPreset->Steps.size());
- int stepNumber = 1;
- for (auto const& step : expandedPreset->Steps) {
- switch (step.PresetType) {
- case cmCMakePresetsGraph::WorkflowPreset::WorkflowStep::Type::
- Configure: {
- auto const* configurePreset = this->FindPresetForWorkflow(
- "configure"_s, settingsFile.ConfigurePresets, step);
- if (!configurePreset) {
- return 1;
- }
- std::vector<std::string> args{ cmSystemTools::GetCMakeCommand(),
- "--preset", step.PresetName };
- if (fresh == WorkflowFresh::Yes) {
- args.emplace_back("--fresh");
- }
- steps.emplace_back(stepNumber, "configure"_s, step.PresetName,
- this->BuildWorkflowStep(args));
- } break;
- case cmCMakePresetsGraph::WorkflowPreset::WorkflowStep::Type::Build: {
- auto const* buildPreset = this->FindPresetForWorkflow(
- "build"_s, settingsFile.BuildPresets, step);
- if (!buildPreset) {
- return 1;
- }
- steps.emplace_back(
- stepNumber, "build"_s, step.PresetName,
- this->BuildWorkflowStep({ cmSystemTools::GetCMakeCommand(),
- "--build", "--preset", step.PresetName }));
- } break;
- case cmCMakePresetsGraph::WorkflowPreset::WorkflowStep::Type::Test: {
- auto const* testPreset = this->FindPresetForWorkflow(
- "test"_s, settingsFile.TestPresets, step);
- if (!testPreset) {
- return 1;
- }
- steps.emplace_back(
- stepNumber, "test"_s, step.PresetName,
- this->BuildWorkflowStep({ cmSystemTools::GetCTestCommand(),
- "--preset", step.PresetName }));
- } break;
- case cmCMakePresetsGraph::WorkflowPreset::WorkflowStep::Type::Package: {
- auto const* packagePreset = this->FindPresetForWorkflow(
- "package"_s, settingsFile.PackagePresets, step);
- if (!packagePreset) {
- return 1;
- }
- steps.emplace_back(
- stepNumber, "package"_s, step.PresetName,
- this->BuildWorkflowStep({ cmSystemTools::GetCPackCommand(),
- "--preset", step.PresetName }));
- } break;
- }
- stepNumber++;
- }
- int stepResult;
- bool first = true;
- for (auto const& step : steps) {
- if (!first) {
- std::cout << "\n";
- }
- std::cout << "Executing workflow step " << step.StepNumber << " of "
- << steps.size() << ": " << step.Type << " preset \"" << step.Name
- << "\"\n\n"
- << std::flush;
- if ((stepResult = step.Action()) != 0) {
- return stepResult;
- }
- first = false;
- }
- #endif
- return 0;
- }
- void cmake::WatchUnusedCli(std::string const& var)
- {
- #ifndef CMAKE_BOOTSTRAP
- this->VariableWatch->AddWatch(var, cmWarnUnusedCliWarning, this);
- if (!cm::contains(this->UsedCliVariables, var)) {
- this->UsedCliVariables[var] = false;
- }
- #endif
- }
- void cmake::UnwatchUnusedCli(std::string const& var)
- {
- #ifndef CMAKE_BOOTSTRAP
- this->VariableWatch->RemoveWatch(var, cmWarnUnusedCliWarning);
- this->UsedCliVariables.erase(var);
- #endif
- }
- void cmake::RunCheckForUnusedVariables()
- {
- #ifndef CMAKE_BOOTSTRAP
- bool haveUnused = false;
- std::ostringstream msg;
- msg << "Manually-specified variables were not used by the project:";
- for (auto const& it : this->UsedCliVariables) {
- if (!it.second) {
- haveUnused = true;
- msg << "\n " << it.first;
- }
- }
- if (haveUnused) {
- this->IssueMessage(MessageType::WARNING, msg.str());
- }
- #endif
- }
- bool cmake::GetSuppressDevWarnings() const
- {
- return this->Messenger->GetSuppressDevWarnings();
- }
- void cmake::SetSuppressDevWarnings(bool b)
- {
- std::string value;
- // equivalent to -Wno-dev
- if (b) {
- value = "TRUE";
- }
- // equivalent to -Wdev
- else {
- value = "FALSE";
- }
- this->AddCacheEntry("CMAKE_SUPPRESS_DEVELOPER_WARNINGS", value,
- "Suppress Warnings that are meant for"
- " the author of the CMakeLists.txt files.",
- cmStateEnums::INTERNAL);
- }
- bool cmake::GetSuppressDeprecatedWarnings() const
- {
- return this->Messenger->GetSuppressDeprecatedWarnings();
- }
- void cmake::SetSuppressDeprecatedWarnings(bool b)
- {
- std::string value;
- // equivalent to -Wno-deprecated
- if (b) {
- value = "FALSE";
- }
- // equivalent to -Wdeprecated
- else {
- value = "TRUE";
- }
- this->AddCacheEntry("CMAKE_WARN_DEPRECATED", value,
- "Whether to issue warnings for deprecated "
- "functionality.",
- cmStateEnums::INTERNAL);
- }
- bool cmake::GetDevWarningsAsErrors() const
- {
- return this->Messenger->GetDevWarningsAsErrors();
- }
- void cmake::SetDevWarningsAsErrors(bool b)
- {
- std::string value;
- // equivalent to -Werror=dev
- if (b) {
- value = "FALSE";
- }
- // equivalent to -Wno-error=dev
- else {
- value = "TRUE";
- }
- this->AddCacheEntry("CMAKE_SUPPRESS_DEVELOPER_ERRORS", value,
- "Suppress errors that are meant for"
- " the author of the CMakeLists.txt files.",
- cmStateEnums::INTERNAL);
- }
- bool cmake::GetDeprecatedWarningsAsErrors() const
- {
- return this->Messenger->GetDeprecatedWarningsAsErrors();
- }
- void cmake::SetDeprecatedWarningsAsErrors(bool b)
- {
- std::string value;
- // equivalent to -Werror=deprecated
- if (b) {
- value = "TRUE";
- }
- // equivalent to -Wno-error=deprecated
- else {
- value = "FALSE";
- }
- this->AddCacheEntry("CMAKE_ERROR_DEPRECATED", value,
- "Whether to issue deprecation errors for macros"
- " and functions.",
- cmStateEnums::INTERNAL);
- }
- void cmake::SetDebugFindOutputPkgs(std::string const& args)
- {
- this->DebugFindPkgs.emplace(args);
- }
- void cmake::SetDebugFindOutputVars(std::string const& args)
- {
- this->DebugFindVars.emplace(args);
- }
- bool cmake::GetDebugFindOutput(std::string const& var) const
- {
- return this->DebugFindVars.count(var);
- }
- bool cmake::GetDebugFindPkgOutput(std::string const& pkg) const
- {
- return this->DebugFindPkgs.count(pkg);
- }
- void cmake::SetCMakeListName(std::string const& name)
- {
- this->CMakeListName = name;
- }
- std::string cmake::GetCMakeListFile(std::string const& dir) const
- {
- std::string listFile = cmStrCat(dir, '/', this->CMakeListName);
- if (this->CMakeListName.empty() ||
- !cmSystemTools::FileExists(listFile, true)) {
- return cmStrCat(dir, "/CMakeLists.txt");
- }
- return listFile;
- }
- #if !defined(CMAKE_BOOTSTRAP)
- cmMakefileProfilingData& cmake::GetProfilingOutput()
- {
- return *(this->ProfilingOutput);
- }
- bool cmake::IsProfilingEnabled() const
- {
- return static_cast<bool>(this->ProfilingOutput);
- }
- #endif
|