clang 19.0.0git
MinGW.cpp
Go to the documentation of this file.
1//===--- MinGW.cpp - MinGWToolChain Implementation ------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "MinGW.h"
10#include "CommonArgs.h"
11#include "clang/Config/config.h"
13#include "clang/Driver/Driver.h"
18#include "llvm/Option/ArgList.h"
19#include "llvm/Support/FileSystem.h"
20#include "llvm/Support/Path.h"
21#include "llvm/Support/VirtualFileSystem.h"
22#include <system_error>
23
24using namespace clang::diag;
25using namespace clang::driver;
26using namespace clang;
27using namespace llvm::opt;
28
29/// MinGW Tools
31 const InputInfo &Output,
32 const InputInfoList &Inputs,
33 const ArgList &Args,
34 const char *LinkingOutput) const {
35 claimNoWarnArgs(Args);
36 ArgStringList CmdArgs;
37
38 if (getToolChain().getArch() == llvm::Triple::x86) {
39 CmdArgs.push_back("--32");
40 } else if (getToolChain().getArch() == llvm::Triple::x86_64) {
41 CmdArgs.push_back("--64");
42 }
43
44 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA, options::OPT_Xassembler);
45
46 CmdArgs.push_back("-o");
47 CmdArgs.push_back(Output.getFilename());
48
49 for (const auto &II : Inputs)
50 CmdArgs.push_back(II.getFilename());
51
52 const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("as"));
53 C.addCommand(std::make_unique<Command>(JA, *this, ResponseFileSupport::None(),
54 Exec, CmdArgs, Inputs, Output));
55
56 if (Args.hasArg(options::OPT_gsplit_dwarf))
57 SplitDebugInfo(getToolChain(), C, *this, JA, Args, Output,
58 SplitDebugName(JA, Args, Inputs[0], Output));
59}
60
61void tools::MinGW::Linker::AddLibGCC(const ArgList &Args,
62 ArgStringList &CmdArgs) const {
63 if (Args.hasArg(options::OPT_mthreads))
64 CmdArgs.push_back("-lmingwthrd");
65 CmdArgs.push_back("-lmingw32");
66
67 // Make use of compiler-rt if --rtlib option is used
68 ToolChain::RuntimeLibType RLT = getToolChain().GetRuntimeLibType(Args);
69 if (RLT == ToolChain::RLT_Libgcc) {
70 bool Static = Args.hasArg(options::OPT_static_libgcc) ||
71 Args.hasArg(options::OPT_static);
72 bool Shared = Args.hasArg(options::OPT_shared);
73 bool CXX = getToolChain().getDriver().CCCIsCXX();
74
75 if (Static || (!CXX && !Shared)) {
76 CmdArgs.push_back("-lgcc");
77 CmdArgs.push_back("-lgcc_eh");
78 } else {
79 CmdArgs.push_back("-lgcc_s");
80 CmdArgs.push_back("-lgcc");
81 }
82 } else {
83 AddRunTimeLibs(getToolChain(), getToolChain().getDriver(), CmdArgs, Args);
84 }
85
86 CmdArgs.push_back("-lmoldname");
87 CmdArgs.push_back("-lmingwex");
88 for (auto Lib : Args.getAllArgValues(options::OPT_l))
89 if (StringRef(Lib).starts_with("msvcr") ||
90 StringRef(Lib).starts_with("ucrt") ||
91 StringRef(Lib).starts_with("crtdll"))
92 return;
93 CmdArgs.push_back("-lmsvcrt");
94}
95
97 const InputInfo &Output,
98 const InputInfoList &Inputs,
99 const ArgList &Args,
100 const char *LinkingOutput) const {
101 const ToolChain &TC = getToolChain();
102 const Driver &D = TC.getDriver();
103 const SanitizerArgs &Sanitize = TC.getSanitizerArgs(Args);
104
105 ArgStringList CmdArgs;
106
107 // Silence warning for "clang -g foo.o -o foo"
108 Args.ClaimAllArgs(options::OPT_g_Group);
109 // and "clang -emit-llvm foo.o -o foo"
110 Args.ClaimAllArgs(options::OPT_emit_llvm);
111 // and for "clang -w foo.o -o foo". Other warning options are already
112 // handled somewhere else.
113 Args.ClaimAllArgs(options::OPT_w);
114
115 if (!D.SysRoot.empty())
116 CmdArgs.push_back(Args.MakeArgString("--sysroot=" + D.SysRoot));
117
118 if (Args.hasArg(options::OPT_s))
119 CmdArgs.push_back("-s");
120
121 CmdArgs.push_back("-m");
122 switch (TC.getArch()) {
123 case llvm::Triple::x86:
124 CmdArgs.push_back("i386pe");
125 break;
126 case llvm::Triple::x86_64:
127 CmdArgs.push_back("i386pep");
128 break;
129 case llvm::Triple::arm:
130 case llvm::Triple::thumb:
131 // FIXME: this is incorrect for WinCE
132 CmdArgs.push_back("thumb2pe");
133 break;
134 case llvm::Triple::aarch64:
135 if (TC.getEffectiveTriple().isWindowsArm64EC())
136 CmdArgs.push_back("arm64ecpe");
137 else
138 CmdArgs.push_back("arm64pe");
139 break;
140 default:
141 D.Diag(diag::err_target_unknown_triple) << TC.getEffectiveTriple().str();
142 }
143
144 Arg *SubsysArg =
145 Args.getLastArg(options::OPT_mwindows, options::OPT_mconsole);
146 if (SubsysArg && SubsysArg->getOption().matches(options::OPT_mwindows)) {
147 CmdArgs.push_back("--subsystem");
148 CmdArgs.push_back("windows");
149 } else if (SubsysArg &&
150 SubsysArg->getOption().matches(options::OPT_mconsole)) {
151 CmdArgs.push_back("--subsystem");
152 CmdArgs.push_back("console");
153 }
154
155 if (Args.hasArg(options::OPT_mdll))
156 CmdArgs.push_back("--dll");
157 else if (Args.hasArg(options::OPT_shared))
158 CmdArgs.push_back("--shared");
159 if (Args.hasArg(options::OPT_static))
160 CmdArgs.push_back("-Bstatic");
161 else
162 CmdArgs.push_back("-Bdynamic");
163 if (Args.hasArg(options::OPT_mdll) || Args.hasArg(options::OPT_shared)) {
164 CmdArgs.push_back("-e");
165 if (TC.getArch() == llvm::Triple::x86)
166 CmdArgs.push_back("_DllMainCRTStartup@12");
167 else
168 CmdArgs.push_back("DllMainCRTStartup");
169 CmdArgs.push_back("--enable-auto-image-base");
170 }
171
172 if (Args.hasArg(options::OPT_Z_Xlinker__no_demangle))
173 CmdArgs.push_back("--no-demangle");
174
175 if (!Args.hasFlag(options::OPT_fauto_import, options::OPT_fno_auto_import,
176 true))
177 CmdArgs.push_back("--disable-auto-import");
178
179 if (Arg *A = Args.getLastArg(options::OPT_mguard_EQ)) {
180 StringRef GuardArgs = A->getValue();
181 if (GuardArgs == "none")
182 CmdArgs.push_back("--no-guard-cf");
183 else if (GuardArgs == "cf" || GuardArgs == "cf-nochecks")
184 CmdArgs.push_back("--guard-cf");
185 else
186 D.Diag(diag::err_drv_unsupported_option_argument)
187 << A->getSpelling() << GuardArgs;
188 }
189
190 CmdArgs.push_back("-o");
191 const char *OutputFile = Output.getFilename();
192 // GCC implicitly adds an .exe extension if it is given an output file name
193 // that lacks an extension.
194 // GCC used to do this only when the compiler itself runs on windows, but
195 // since GCC 8 it does the same when cross compiling as well.
196 if (!llvm::sys::path::has_extension(OutputFile)) {
197 CmdArgs.push_back(Args.MakeArgString(Twine(OutputFile) + ".exe"));
198 OutputFile = CmdArgs.back();
199 } else
200 CmdArgs.push_back(OutputFile);
201
202 // FIXME: add -N, -n flags
203 Args.AddLastArg(CmdArgs, options::OPT_r);
204 Args.AddLastArg(CmdArgs, options::OPT_s);
205 Args.AddLastArg(CmdArgs, options::OPT_t);
206 Args.AddAllArgs(CmdArgs, options::OPT_u_Group);
207
208 // Add asan_dynamic as the first import lib before other libs. This allows
209 // asan to be initialized as early as possible to increase its instrumentation
210 // coverage to include other user DLLs which has not been built with asan.
211 if (Sanitize.needsAsanRt() && !Args.hasArg(options::OPT_nostdlib) &&
212 !Args.hasArg(options::OPT_nodefaultlibs)) {
213 // MinGW always links against a shared MSVCRT.
214 CmdArgs.push_back(
215 TC.getCompilerRTArgString(Args, "asan_dynamic", ToolChain::FT_Shared));
216 }
217
218 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nostartfiles)) {
219 if (Args.hasArg(options::OPT_shared) || Args.hasArg(options::OPT_mdll)) {
220 CmdArgs.push_back(Args.MakeArgString(TC.GetFilePath("dllcrt2.o")));
221 } else {
222 if (Args.hasArg(options::OPT_municode))
223 CmdArgs.push_back(Args.MakeArgString(TC.GetFilePath("crt2u.o")));
224 else
225 CmdArgs.push_back(Args.MakeArgString(TC.GetFilePath("crt2.o")));
226 }
227 if (Args.hasArg(options::OPT_pg))
228 CmdArgs.push_back(Args.MakeArgString(TC.GetFilePath("gcrt2.o")));
229 CmdArgs.push_back(Args.MakeArgString(TC.GetFilePath("crtbegin.o")));
230 }
231
232 Args.AddAllArgs(CmdArgs, options::OPT_L);
233 TC.AddFilePathLibArgs(Args, CmdArgs);
234
235 // Add the compiler-rt library directories if they exist to help
236 // the linker find the various sanitizer, builtin, and profiling runtimes.
237 for (const auto &LibPath : TC.getLibraryPaths()) {
238 if (TC.getVFS().exists(LibPath))
239 CmdArgs.push_back(Args.MakeArgString("-L" + LibPath));
240 }
241 auto CRTPath = TC.getCompilerRTPath();
242 if (TC.getVFS().exists(CRTPath))
243 CmdArgs.push_back(Args.MakeArgString("-L" + CRTPath));
244
245 AddLinkerInputs(TC, Inputs, Args, CmdArgs, JA);
246
247 if (D.isUsingLTO()) {
248 assert(!Inputs.empty() && "Must have at least one input.");
249 addLTOOptions(TC, Args, CmdArgs, Output, Inputs[0],
250 D.getLTOMode() == LTOK_Thin);
251 }
252
253 if (C.getDriver().IsFlangMode()) {
254 addFortranRuntimeLibraryPath(TC, Args, CmdArgs);
255 addFortranRuntimeLibs(TC, Args, CmdArgs);
256 }
257
258 // TODO: Add profile stuff here
259
260 if (TC.ShouldLinkCXXStdlib(Args)) {
261 bool OnlyLibstdcxxStatic = Args.hasArg(options::OPT_static_libstdcxx) &&
262 !Args.hasArg(options::OPT_static);
263 if (OnlyLibstdcxxStatic)
264 CmdArgs.push_back("-Bstatic");
265 TC.AddCXXStdlibLibArgs(Args, CmdArgs);
266 if (OnlyLibstdcxxStatic)
267 CmdArgs.push_back("-Bdynamic");
268 }
269
270 bool HasWindowsApp = false;
271 for (auto Lib : Args.getAllArgValues(options::OPT_l)) {
272 if (Lib == "windowsapp") {
273 HasWindowsApp = true;
274 break;
275 }
276 }
277
278 if (!Args.hasArg(options::OPT_nostdlib)) {
279 if (!Args.hasArg(options::OPT_nodefaultlibs)) {
280 if (Args.hasArg(options::OPT_static))
281 CmdArgs.push_back("--start-group");
282
283 if (Args.hasArg(options::OPT_fstack_protector) ||
284 Args.hasArg(options::OPT_fstack_protector_strong) ||
285 Args.hasArg(options::OPT_fstack_protector_all)) {
286 CmdArgs.push_back("-lssp_nonshared");
287 CmdArgs.push_back("-lssp");
288 }
289
290 if (Args.hasFlag(options::OPT_fopenmp, options::OPT_fopenmp_EQ,
291 options::OPT_fno_openmp, false)) {
292 switch (TC.getDriver().getOpenMPRuntime(Args)) {
294 CmdArgs.push_back("-lomp");
295 break;
297 CmdArgs.push_back("-liomp5md");
298 break;
300 CmdArgs.push_back("-lgomp");
301 break;
303 // Already diagnosed.
304 break;
305 }
306 }
307
308 AddLibGCC(Args, CmdArgs);
309
310 if (Args.hasArg(options::OPT_pg))
311 CmdArgs.push_back("-lgmon");
312
313 if (Args.hasArg(options::OPT_pthread))
314 CmdArgs.push_back("-lpthread");
315
316 if (Sanitize.needsAsanRt()) {
317 // MinGW always links against a shared MSVCRT.
318 CmdArgs.push_back(TC.getCompilerRTArgString(Args, "asan_dynamic",
320 CmdArgs.push_back(
321 TC.getCompilerRTArgString(Args, "asan_dynamic_runtime_thunk"));
322 CmdArgs.push_back("--require-defined");
323 CmdArgs.push_back(TC.getArch() == llvm::Triple::x86
324 ? "___asan_seh_interceptor"
325 : "__asan_seh_interceptor");
326 // Make sure the linker consider all object files from the dynamic
327 // runtime thunk.
328 CmdArgs.push_back("--whole-archive");
329 CmdArgs.push_back(
330 TC.getCompilerRTArgString(Args, "asan_dynamic_runtime_thunk"));
331 CmdArgs.push_back("--no-whole-archive");
332 }
333
334 TC.addProfileRTLibs(Args, CmdArgs);
335
336 if (!HasWindowsApp) {
337 // Add system libraries. If linking to libwindowsapp.a, that import
338 // library replaces all these and we shouldn't accidentally try to
339 // link to the normal desktop mode dlls.
340 if (Args.hasArg(options::OPT_mwindows)) {
341 CmdArgs.push_back("-lgdi32");
342 CmdArgs.push_back("-lcomdlg32");
343 }
344 CmdArgs.push_back("-ladvapi32");
345 CmdArgs.push_back("-lshell32");
346 CmdArgs.push_back("-luser32");
347 CmdArgs.push_back("-lkernel32");
348 }
349
350 if (Args.hasArg(options::OPT_static)) {
351 CmdArgs.push_back("--end-group");
352 } else {
353 AddLibGCC(Args, CmdArgs);
354 if (!HasWindowsApp)
355 CmdArgs.push_back("-lkernel32");
356 }
357 }
358
359 if (!Args.hasArg(options::OPT_nostartfiles)) {
360 // Add crtfastmath.o if available and fast math is enabled.
361 TC.addFastMathRuntimeIfAvailable(Args, CmdArgs);
362
363 CmdArgs.push_back(Args.MakeArgString(TC.GetFilePath("crtend.o")));
364 }
365 }
366 const char *Exec = Args.MakeArgString(TC.GetLinkerPath());
367 C.addCommand(std::make_unique<Command>(JA, *this,
369 Exec, CmdArgs, Inputs, Output));
370}
371
372static bool isCrossCompiling(const llvm::Triple &T, bool RequireArchMatch) {
373 llvm::Triple HostTriple(llvm::Triple::normalize(LLVM_HOST_TRIPLE));
374 if (HostTriple.getOS() != llvm::Triple::Win32)
375 return true;
376 if (RequireArchMatch && HostTriple.getArch() != T.getArch())
377 return true;
378 return false;
379}
380
381// Simplified from Generic_GCC::GCCInstallationDetector::ScanLibDirForGCCTriple.
382static bool findGccVersion(StringRef LibDir, std::string &GccLibDir,
383 std::string &Ver,
386 std::error_code EC;
387 for (llvm::sys::fs::directory_iterator LI(LibDir, EC), LE; !EC && LI != LE;
388 LI = LI.increment(EC)) {
389 StringRef VersionText = llvm::sys::path::filename(LI->path());
390 auto CandidateVersion =
392 if (CandidateVersion.Major == -1)
393 continue;
394 if (CandidateVersion <= Version)
395 continue;
396 Version = CandidateVersion;
397 Ver = std::string(VersionText);
398 GccLibDir = LI->path();
399 }
400 return Ver.size();
401}
402
403static llvm::Triple getLiteralTriple(const Driver &D, const llvm::Triple &T) {
404 llvm::Triple LiteralTriple(D.getTargetTriple());
405 // The arch portion of the triple may be overridden by -m32/-m64.
406 LiteralTriple.setArchName(T.getArchName());
407 return LiteralTriple;
408}
409
410void toolchains::MinGW::findGccLibDir(const llvm::Triple &LiteralTriple) {
412 SubdirNames.emplace_back(LiteralTriple.str());
413 SubdirNames.emplace_back(getTriple().str());
414 SubdirNames.emplace_back(getTriple().getArchName());
415 SubdirNames.back() += "-w64-mingw32";
416 SubdirNames.emplace_back(getTriple().getArchName());
417 SubdirNames.back() += "-w64-mingw32ucrt";
418 SubdirNames.emplace_back("mingw32");
419 if (SubdirName.empty()) {
420 SubdirName = getTriple().getArchName();
421 SubdirName += "-w64-mingw32";
422 }
423 // lib: Arch Linux, Ubuntu, Windows
424 // lib64: openSUSE Linux
425 for (StringRef CandidateLib : {"lib", "lib64"}) {
426 for (StringRef CandidateSysroot : SubdirNames) {
428 llvm::sys::path::append(LibDir, CandidateLib, "gcc", CandidateSysroot);
429 if (findGccVersion(LibDir, GccLibDir, Ver, GccVer)) {
430 SubdirName = std::string(CandidateSysroot);
431 return;
432 }
433 }
434 }
435}
436
437static llvm::ErrorOr<std::string> findGcc(const llvm::Triple &LiteralTriple,
438 const llvm::Triple &T) {
440 Gccs.emplace_back(LiteralTriple.str());
441 Gccs.back() += "-gcc";
442 Gccs.emplace_back(T.str());
443 Gccs.back() += "-gcc";
444 Gccs.emplace_back(T.getArchName());
445 Gccs.back() += "-w64-mingw32-gcc";
446 Gccs.emplace_back(T.getArchName());
447 Gccs.back() += "-w64-mingw32ucrt-gcc";
448 Gccs.emplace_back("mingw32-gcc");
449 // Please do not add "gcc" here
450 for (StringRef CandidateGcc : Gccs)
451 if (llvm::ErrorOr<std::string> GPPName = llvm::sys::findProgramByName(CandidateGcc))
452 return GPPName;
453 return make_error_code(std::errc::no_such_file_or_directory);
454}
455
456static llvm::ErrorOr<std::string>
457findClangRelativeSysroot(const Driver &D, const llvm::Triple &LiteralTriple,
458 const llvm::Triple &T, std::string &SubdirName) {
460 Subdirs.emplace_back(LiteralTriple.str());
461 Subdirs.emplace_back(T.str());
462 Subdirs.emplace_back(T.getArchName());
463 Subdirs.back() += "-w64-mingw32";
464 Subdirs.emplace_back(T.getArchName());
465 Subdirs.back() += "-w64-mingw32ucrt";
466 StringRef ClangRoot = llvm::sys::path::parent_path(D.Dir);
467 StringRef Sep = llvm::sys::path::get_separator();
468 for (StringRef CandidateSubdir : Subdirs) {
469 if (llvm::sys::fs::is_directory(ClangRoot + Sep + CandidateSubdir)) {
470 SubdirName = std::string(CandidateSubdir);
471 return (ClangRoot + Sep + CandidateSubdir).str();
472 }
473 }
474 return make_error_code(std::errc::no_such_file_or_directory);
475}
476
477static bool looksLikeMinGWSysroot(const std::string &Directory) {
478 StringRef Sep = llvm::sys::path::get_separator();
479 if (!llvm::sys::fs::exists(Directory + Sep + "include" + Sep + "_mingw.h"))
480 return false;
481 if (!llvm::sys::fs::exists(Directory + Sep + "lib" + Sep + "libkernel32.a"))
482 return false;
483 return true;
484}
485
486toolchains::MinGW::MinGW(const Driver &D, const llvm::Triple &Triple,
487 const ArgList &Args)
488 : ToolChain(D, Triple, Args), CudaInstallation(D, Triple, Args),
489 RocmInstallation(D, Triple, Args) {
490 getProgramPaths().push_back(getDriver().Dir);
491
492 std::string InstallBase =
493 std::string(llvm::sys::path::parent_path(getDriver().Dir));
494 // The sequence for detecting a sysroot here should be kept in sync with
495 // the testTriple function below.
496 llvm::Triple LiteralTriple = getLiteralTriple(D, getTriple());
497 if (getDriver().SysRoot.size())
499 // Look for <clang-bin>/../<triplet>; if found, use <clang-bin>/.. as the
500 // base as it could still be a base for a gcc setup with libgcc.
501 else if (llvm::ErrorOr<std::string> TargetSubdir = findClangRelativeSysroot(
502 getDriver(), LiteralTriple, getTriple(), SubdirName))
503 Base = std::string(llvm::sys::path::parent_path(TargetSubdir.get()));
504 // If the install base of Clang seems to have mingw sysroot files directly
505 // in the toplevel include and lib directories, use this as base instead of
506 // looking for a triple prefixed GCC in the path.
507 else if (looksLikeMinGWSysroot(InstallBase))
508 Base = InstallBase;
509 else if (llvm::ErrorOr<std::string> GPPName =
510 findGcc(LiteralTriple, getTriple()))
511 Base = std::string(llvm::sys::path::parent_path(
512 llvm::sys::path::parent_path(GPPName.get())));
513 else
514 Base = InstallBase;
515
516 Base += llvm::sys::path::get_separator();
517 findGccLibDir(LiteralTriple);
518 TripleDirName = SubdirName;
519 // GccLibDir must precede Base/lib so that the
520 // correct crtbegin.o ,cetend.o would be found.
521 getFilePaths().push_back(GccLibDir);
522
523 // openSUSE/Fedora
524 std::string CandidateSubdir = SubdirName + "/sys-root/mingw";
525 if (getDriver().getVFS().exists(Base + CandidateSubdir))
526 SubdirName = CandidateSubdir;
527
528 getFilePaths().push_back(
529 (Base + SubdirName + llvm::sys::path::get_separator() + "lib").str());
530
531 // Gentoo
532 getFilePaths().push_back(
533 (Base + SubdirName + llvm::sys::path::get_separator() + "mingw/lib").str());
534
535 // Only include <base>/lib if we're not cross compiling (not even for
536 // windows->windows to a different arch), or if the sysroot has been set
537 // (where we presume the user has pointed it at an arch specific
538 // subdirectory).
539 if (!::isCrossCompiling(getTriple(), /*RequireArchMatch=*/true) ||
540 getDriver().SysRoot.size())
541 getFilePaths().push_back(Base + "lib");
542
543 NativeLLVMSupport =
544 Args.getLastArgValue(options::OPT_fuse_ld_EQ, CLANG_DEFAULT_LINKER)
545 .equals_insensitive("lld");
546}
547
549 switch (AC) {
551 if (!Preprocessor)
552 Preprocessor.reset(new tools::gcc::Preprocessor(*this));
553 return Preprocessor.get();
555 if (!Compiler)
556 Compiler.reset(new tools::gcc::Compiler(*this));
557 return Compiler.get();
558 default:
559 return ToolChain::getTool(AC);
560 }
561}
562
564 return new tools::MinGW::Assembler(*this);
565}
566
568 return new tools::MinGW::Linker(*this);
569}
570
572 return NativeLLVMSupport;
573}
574
577 Arg *ExceptionArg = Args.getLastArg(options::OPT_fsjlj_exceptions,
578 options::OPT_fseh_exceptions,
579 options::OPT_fdwarf_exceptions);
580 if (ExceptionArg &&
581 ExceptionArg->getOption().matches(options::OPT_fseh_exceptions))
582 return UnwindTableLevel::Asynchronous;
583
584 if (getArch() == llvm::Triple::x86_64 || getArch() == llvm::Triple::arm ||
585 getArch() == llvm::Triple::thumb || getArch() == llvm::Triple::aarch64)
586 return UnwindTableLevel::Asynchronous;
587 return UnwindTableLevel::None;
588}
589
591 return getArch() == llvm::Triple::x86_64 ||
592 getArch() == llvm::Triple::aarch64;
593}
594
595bool toolchains::MinGW::isPIEDefault(const llvm::opt::ArgList &Args) const {
596 return false;
597}
598
599bool toolchains::MinGW::isPICDefaultForced() const { return true; }
600
601llvm::ExceptionHandling
602toolchains::MinGW::GetExceptionModel(const ArgList &Args) const {
603 if (getArch() == llvm::Triple::x86_64 || getArch() == llvm::Triple::aarch64 ||
604 getArch() == llvm::Triple::arm || getArch() == llvm::Triple::thumb)
605 return llvm::ExceptionHandling::WinEH;
606 return llvm::ExceptionHandling::DwarfCFI;
607}
608
611 Res |= SanitizerKind::Address;
612 Res |= SanitizerKind::PointerCompare;
613 Res |= SanitizerKind::PointerSubtract;
614 Res |= SanitizerKind::Vptr;
615 return Res;
616}
617
618void toolchains::MinGW::AddCudaIncludeArgs(const ArgList &DriverArgs,
619 ArgStringList &CC1Args) const {
620 CudaInstallation->AddCudaIncludeArgs(DriverArgs, CC1Args);
621}
622
623void toolchains::MinGW::AddHIPIncludeArgs(const ArgList &DriverArgs,
624 ArgStringList &CC1Args) const {
625 RocmInstallation->AddHIPIncludeArgs(DriverArgs, CC1Args);
626}
627
628void toolchains::MinGW::printVerboseInfo(raw_ostream &OS) const {
629 CudaInstallation->print(OS);
630 RocmInstallation->print(OS);
631}
632
633// Include directories for various hosts:
634
635// Windows, mingw.org
636// c:\mingw\lib\gcc\mingw32\4.8.1\include\c++
637// c:\mingw\lib\gcc\mingw32\4.8.1\include\c++\mingw32
638// c:\mingw\lib\gcc\mingw32\4.8.1\include\c++\backward
639// c:\mingw\include
640// c:\mingw\mingw32\include
641
642// Windows, mingw-w64 mingw-builds
643// c:\mingw32\i686-w64-mingw32\include
644// c:\mingw32\i686-w64-mingw32\include\c++
645// c:\mingw32\i686-w64-mingw32\include\c++\i686-w64-mingw32
646// c:\mingw32\i686-w64-mingw32\include\c++\backward
647
648// Windows, mingw-w64 msys2
649// c:\msys64\mingw32\include
650// c:\msys64\mingw32\i686-w64-mingw32\include
651// c:\msys64\mingw32\include\c++\4.9.2
652// c:\msys64\mingw32\include\c++\4.9.2\i686-w64-mingw32
653// c:\msys64\mingw32\include\c++\4.9.2\backward
654
655// openSUSE
656// /usr/lib64/gcc/x86_64-w64-mingw32/5.1.0/include/c++
657// /usr/lib64/gcc/x86_64-w64-mingw32/5.1.0/include/c++/x86_64-w64-mingw32
658// /usr/lib64/gcc/x86_64-w64-mingw32/5.1.0/include/c++/backward
659// /usr/x86_64-w64-mingw32/sys-root/mingw/include
660
661// Arch Linux
662// /usr/i686-w64-mingw32/include/c++/5.1.0
663// /usr/i686-w64-mingw32/include/c++/5.1.0/i686-w64-mingw32
664// /usr/i686-w64-mingw32/include/c++/5.1.0/backward
665// /usr/i686-w64-mingw32/include
666
667// Ubuntu
668// /usr/include/c++/4.8
669// /usr/include/c++/4.8/x86_64-w64-mingw32
670// /usr/include/c++/4.8/backward
671// /usr/x86_64-w64-mingw32/include
672
673// Fedora
674// /usr/x86_64-w64-mingw32ucrt/sys-root/mingw/include/c++/x86_64-w64-mingw32ucrt
675// /usr/x86_64-w64-mingw32ucrt/sys-root/mingw/include/c++/backward
676// /usr/x86_64-w64-mingw32ucrt/sys-root/mingw/include
677// /usr/lib/gcc/x86_64-w64-mingw32ucrt/12.2.1/include-fixed
678
679void toolchains::MinGW::AddClangSystemIncludeArgs(const ArgList &DriverArgs,
680 ArgStringList &CC1Args) const {
681 if (DriverArgs.hasArg(options::OPT_nostdinc))
682 return;
683
684 if (!DriverArgs.hasArg(options::OPT_nobuiltininc)) {
685 SmallString<1024> P(getDriver().ResourceDir);
686 llvm::sys::path::append(P, "include");
687 addSystemInclude(DriverArgs, CC1Args, P.str());
688 }
689
690 if (DriverArgs.hasArg(options::OPT_nostdlibinc))
691 return;
692
693 addSystemInclude(DriverArgs, CC1Args,
694 Base + SubdirName + llvm::sys::path::get_separator() +
695 "include");
696
697 // Gentoo
698 addSystemInclude(DriverArgs, CC1Args,
699 Base + SubdirName + llvm::sys::path::get_separator() + "usr/include");
700
701 // Only include <base>/include if we're not cross compiling (but do allow it
702 // if we're on Windows and building for Windows on another architecture),
703 // or if the sysroot has been set (where we presume the user has pointed it
704 // at an arch specific subdirectory).
705 if (!::isCrossCompiling(getTriple(), /*RequireArchMatch=*/false) ||
706 getDriver().SysRoot.size())
707 addSystemInclude(DriverArgs, CC1Args, Base + "include");
708}
709
711 const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args,
712 Action::OffloadKind DeviceOffloadKind) const {
713 if (Arg *A = DriverArgs.getLastArg(options::OPT_mguard_EQ)) {
714 StringRef GuardArgs = A->getValue();
715 if (GuardArgs == "none") {
716 // Do nothing.
717 } else if (GuardArgs == "cf") {
718 // Emit CFG instrumentation and the table of address-taken functions.
719 CC1Args.push_back("-cfguard");
720 } else if (GuardArgs == "cf-nochecks") {
721 // Emit only the table of address-taken functions.
722 CC1Args.push_back("-cfguard-no-checks");
723 } else {
724 getDriver().Diag(diag::err_drv_unsupported_option_argument)
725 << A->getSpelling() << GuardArgs;
726 }
727 }
728
729 CC1Args.push_back("-fno-use-init-array");
730
731 for (auto Opt : {options::OPT_mthreads, options::OPT_mwindows,
732 options::OPT_mconsole, options::OPT_mdll}) {
733 if (Arg *A = DriverArgs.getLastArgNoClaim(Opt))
734 A->ignoreTargetSpecific();
735 }
736}
737
739 const ArgList &DriverArgs, ArgStringList &CC1Args) const {
740 if (DriverArgs.hasArg(options::OPT_nostdinc, options::OPT_nostdlibinc,
741 options::OPT_nostdincxx))
742 return;
743
744 StringRef Slash = llvm::sys::path::get_separator();
745
746 switch (GetCXXStdlibType(DriverArgs)) {
748 std::string TargetDir = (Base + "include" + Slash + getTripleString() +
749 Slash + "c++" + Slash + "v1")
750 .str();
751 if (getDriver().getVFS().exists(TargetDir))
752 addSystemInclude(DriverArgs, CC1Args, TargetDir);
753 addSystemInclude(DriverArgs, CC1Args,
754 Base + SubdirName + Slash + "include" + Slash + "c++" +
755 Slash + "v1");
756 addSystemInclude(DriverArgs, CC1Args,
757 Base + "include" + Slash + "c++" + Slash + "v1");
758 break;
759 }
760
763 CppIncludeBases.emplace_back(Base);
764 llvm::sys::path::append(CppIncludeBases[0], SubdirName, "include", "c++");
765 CppIncludeBases.emplace_back(Base);
766 llvm::sys::path::append(CppIncludeBases[1], SubdirName, "include", "c++",
767 Ver);
768 CppIncludeBases.emplace_back(Base);
769 llvm::sys::path::append(CppIncludeBases[2], "include", "c++", Ver);
770 CppIncludeBases.emplace_back(GccLibDir);
771 llvm::sys::path::append(CppIncludeBases[3], "include", "c++");
772 CppIncludeBases.emplace_back(GccLibDir);
773 llvm::sys::path::append(CppIncludeBases[4], "include",
774 "g++-v" + GccVer.Text);
775 CppIncludeBases.emplace_back(GccLibDir);
776 llvm::sys::path::append(CppIncludeBases[5], "include",
777 "g++-v" + GccVer.MajorStr + "." + GccVer.MinorStr);
778 CppIncludeBases.emplace_back(GccLibDir);
779 llvm::sys::path::append(CppIncludeBases[6], "include",
780 "g++-v" + GccVer.MajorStr);
781 for (auto &CppIncludeBase : CppIncludeBases) {
782 addSystemInclude(DriverArgs, CC1Args, CppIncludeBase);
783 CppIncludeBase += Slash;
784 addSystemInclude(DriverArgs, CC1Args, CppIncludeBase + TripleDirName);
785 addSystemInclude(DriverArgs, CC1Args, CppIncludeBase + "backward");
786 }
787 break;
788 }
789}
790
791static bool testTriple(const Driver &D, const llvm::Triple &Triple,
792 const ArgList &Args) {
793 // If an explicit sysroot is set, that will be used and we shouldn't try to
794 // detect anything else.
795 std::string SubdirName;
796 if (D.SysRoot.size())
797 return true;
798 llvm::Triple LiteralTriple = getLiteralTriple(D, Triple);
799 std::string InstallBase = std::string(llvm::sys::path::parent_path(D.Dir));
800 if (llvm::ErrorOr<std::string> TargetSubdir =
801 findClangRelativeSysroot(D, LiteralTriple, Triple, SubdirName))
802 return true;
803 // If the install base itself looks like a mingw sysroot, we'll use that
804 // - don't use any potentially unrelated gcc to influence what triple to use.
805 if (looksLikeMinGWSysroot(InstallBase))
806 return false;
807 if (llvm::ErrorOr<std::string> GPPName = findGcc(LiteralTriple, Triple))
808 return true;
809 // If we neither found a colocated sysroot or a matching gcc executable,
810 // conclude that we can't know if this is the correct spelling of the triple.
811 return false;
812}
813
814static llvm::Triple adjustTriple(const Driver &D, const llvm::Triple &Triple,
815 const ArgList &Args) {
816 // First test if the original triple can find a sysroot with the triple
817 // name.
818 if (testTriple(D, Triple, Args))
819 return Triple;
821 // If not, test a couple other possible arch names that might be what was
822 // intended.
823 if (Triple.getArch() == llvm::Triple::x86) {
824 Archs.emplace_back("i386");
825 Archs.emplace_back("i586");
826 Archs.emplace_back("i686");
827 } else if (Triple.getArch() == llvm::Triple::arm ||
828 Triple.getArch() == llvm::Triple::thumb) {
829 Archs.emplace_back("armv7");
830 }
831 for (auto A : Archs) {
832 llvm::Triple TestTriple(Triple);
833 TestTriple.setArchName(A);
834 if (testTriple(D, TestTriple, Args))
835 return TestTriple;
836 }
837 // If none was found, just proceed with the original value.
838 return Triple;
839}
840
841void toolchains::MinGW::fixTripleArch(const Driver &D, llvm::Triple &Triple,
842 const ArgList &Args) {
843 if (Triple.getArch() == llvm::Triple::x86 ||
844 Triple.getArch() == llvm::Triple::arm ||
845 Triple.getArch() == llvm::Triple::thumb)
846 Triple = adjustTriple(D, Triple, Args);
847}
StringRef P
static llvm::Triple getLiteralTriple(const Driver &D, const llvm::Triple &T)
Definition: MinGW.cpp:403
static bool looksLikeMinGWSysroot(const std::string &Directory)
Definition: MinGW.cpp:477
static bool findGccVersion(StringRef LibDir, std::string &GccLibDir, std::string &Ver, toolchains::Generic_GCC::GCCVersion &Version)
Definition: MinGW.cpp:382
static bool testTriple(const Driver &D, const llvm::Triple &Triple, const ArgList &Args)
Definition: MinGW.cpp:791
static llvm::Triple adjustTriple(const Driver &D, const llvm::Triple &Triple, const ArgList &Args)
Definition: MinGW.cpp:814
static llvm::ErrorOr< std::string > findGcc(const llvm::Triple &LiteralTriple, const llvm::Triple &T)
Definition: MinGW.cpp:437
static llvm::ErrorOr< std::string > findClangRelativeSysroot(const Driver &D, const llvm::Triple &LiteralTriple, const llvm::Triple &T, std::string &SubdirName)
Definition: MinGW.cpp:457
static bool isCrossCompiling(const llvm::Triple &T, bool RequireArchMatch)
Definition: MinGW.cpp:372
Engages in a tight little dance with the lexer to efficiently preprocess tokens.
Definition: Preprocessor.h:128
Compilation - A set of tasks to perform for a single driver invocation.
Definition: Compilation.h:45
Driver - Encapsulate logic for constructing compilation processes from a set of gcc-driver-like comma...
Definition: Driver.h:77
std::string SysRoot
sysroot, if present
Definition: Driver.h:180
OpenMPRuntimeKind getOpenMPRuntime(const llvm::opt::ArgList &Args) const
Compute the desired OpenMP runtime from the flags provided.
Definition: Driver.cpp:735
DiagnosticBuilder Diag(unsigned DiagID) const
Definition: Driver.h:144
LTOKind getLTOMode(bool IsOffload=false) const
Get the specific kind of LTO being performed.
Definition: Driver.h:727
bool isUsingLTO(bool IsOffload=false) const
Returns true if we are performing any kind of LTO.
Definition: Driver.h:722
std::string Dir
The path the driver executable was in, as invoked from the command line.
Definition: Driver.h:155
@ OMPRT_IOMP5
The legacy name for the LLVM OpenMP runtime from when it was the Intel OpenMP runtime.
Definition: Driver.h:140
@ OMPRT_OMP
The LLVM OpenMP runtime.
Definition: Driver.h:130
@ OMPRT_Unknown
An unknown OpenMP runtime.
Definition: Driver.h:126
@ OMPRT_GOMP
The GNU OpenMP runtime.
Definition: Driver.h:135
std::string getTargetTriple() const
Definition: Driver.h:420
InputInfo - Wrapper for information about an input source.
Definition: InputInfo.h:22
const char * getFilename() const
Definition: InputInfo.h:83
ToolChain - Access to tools for a single platform.
Definition: ToolChain.h:92
const char * getCompilerRTArgString(const llvm::opt::ArgList &Args, StringRef Component, FileType Type=ToolChain::FT_Static) const
Definition: ToolChain.cpp:704
bool ShouldLinkCXXStdlib(const llvm::opt::ArgList &Args) const
Returns if the C++ standard library should be linked in.
Definition: ToolChain.cpp:1271
std::string GetFilePath(const char *Name) const
Definition: ToolChain.cpp:860
path_list & getFilePaths()
Definition: ToolChain.h:294
llvm::Triple::ArchType getArch() const
Definition: ToolChain.h:268
const Driver & getDriver() const
Definition: ToolChain.h:252
llvm::vfs::FileSystem & getVFS() const
Definition: ToolChain.cpp:141
bool addFastMathRuntimeIfAvailable(const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CmdArgs) const
AddFastMathRuntimeIfAvailable - If a runtime library exists that sets global flags for unsafe floatin...
Definition: ToolChain.cpp:1328
path_list & getProgramPaths()
Definition: ToolChain.h:297
const llvm::Triple & getEffectiveTriple() const
Get the toolchain's effective clang triple.
Definition: ToolChain.h:282
virtual void AddCXXStdlibLibArgs(const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CmdArgs) const
AddCXXStdlibLibArgs - Add the system specific linker arguments to use for the given C++ standard libr...
Definition: ToolChain.cpp:1277
const llvm::Triple & getTriple() const
Definition: ToolChain.h:254
virtual void addProfileRTLibs(const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CmdArgs) const
addProfileRTLibs - When -fprofile-instr-profile is specified, try to pass a suitable profile runtime ...
Definition: ToolChain.cpp:1073
virtual std::string getCompilerRTPath() const
Definition: ToolChain.cpp:617
std::string GetLinkerPath(bool *LinkerIsLLD=nullptr) const
Returns the linker path, respecting the -fuse-ld= argument to determine the linker suffix or name.
Definition: ToolChain.cpp:868
void AddFilePathLibArgs(const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CmdArgs) const
AddFilePathLibArgs - Add each thing in getFilePaths() as a "-L" option.
Definition: ToolChain.cpp:1296
SanitizerArgs getSanitizerArgs(const llvm::opt::ArgList &JobArgs) const
Definition: ToolChain.cpp:300
path_list & getLibraryPaths()
Definition: ToolChain.h:291
virtual Tool * getTool(Action::ActionClass AC) const
Definition: ToolChain.cpp:528
virtual SanitizerMask getSupportedSanitizers() const
Return sanitizers which are available in this toolchain.
Definition: ToolChain.cpp:1344
virtual bool isCrossCompiling() const
Returns true if the toolchain is targeting a non-native architecture.
Definition: ToolChain.cpp:963
Tool - Information on a specific compilation tool.
Definition: Tool.h:32
const ToolChain & getToolChain() const
Definition: Tool.h:52
Tool * getTool(Action::ActionClass AC) const override
Definition: MinGW.cpp:548
llvm::ExceptionHandling GetExceptionModel(const llvm::opt::ArgList &Args) const override
GetExceptionModel - Return the tool chain exception model.
Definition: MinGW.cpp:602
void addClangTargetOptions(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args, Action::OffloadKind DeviceOffloadKind) const override
Add options that need to be passed to cc1 for this target.
Definition: MinGW.cpp:710
SanitizerMask getSupportedSanitizers() const override
Return sanitizers which are available in this toolchain.
Definition: MinGW.cpp:609
Tool * buildAssembler() const override
Definition: MinGW.cpp:563
void printVerboseInfo(raw_ostream &OS) const override
Dispatch to the specific toolchain for verbose printing.
Definition: MinGW.cpp:628
Tool * buildLinker() const override
Definition: MinGW.cpp:567
void AddHIPIncludeArgs(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const override
Add arguments to use system-specific HIP includes.
Definition: MinGW.cpp:623
bool isPIEDefault(const llvm::opt::ArgList &Args) const override
Test whether this toolchain defaults to PIE.
Definition: MinGW.cpp:595
void AddCudaIncludeArgs(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const override
Add arguments to use system-specific CUDA includes.
Definition: MinGW.cpp:618
bool HasNativeLLVMSupport() const override
HasNativeLTOLinker - Check whether the linker and related tools have native LLVM support.
Definition: MinGW.cpp:571
bool isPICDefault() const override
Test whether this toolchain defaults to PIC.
Definition: MinGW.cpp:590
bool isPICDefaultForced() const override
Tests whether this toolchain forces its default for PIC, PIE or non-PIC.
Definition: MinGW.cpp:599
void AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const override
Add the clang cc1 arguments for system include paths.
Definition: MinGW.cpp:679
void AddClangCXXStdlibIncludeArgs(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const override
AddClangCXXStdlibIncludeArgs - Add the clang -cc1 level arguments to set the include paths to use for...
Definition: MinGW.cpp:738
UnwindTableLevel getDefaultUnwindTableLevel(const llvm::opt::ArgList &Args) const override
How detailed should the unwind tables be by default.
Definition: MinGW.cpp:576
MinGW(const Driver &D, const llvm::Triple &Triple, const llvm::opt::ArgList &Args)
Definition: MinGW.cpp:486
static void fixTripleArch(const Driver &D, llvm::Triple &Triple, const llvm::opt::ArgList &Args)
Definition: MinGW.cpp:841
void ConstructJob(Compilation &C, const JobAction &JA, const InputInfo &Output, const InputInfoList &Inputs, const llvm::opt::ArgList &TCArgs, const char *LinkingOutput) const override
MinGW Tools.
Definition: MinGW.cpp:30
void ConstructJob(Compilation &C, const JobAction &JA, const InputInfo &Output, const InputInfoList &Inputs, const llvm::opt::ArgList &TCArgs, const char *LinkingOutput) const override
ConstructJob - Construct jobs to perform the action JA, writing to Output and with Inputs,...
Definition: MinGW.cpp:96
const char * SplitDebugName(const JobAction &JA, const llvm::opt::ArgList &Args, const InputInfo &Input, const InputInfo &Output)
void AddRunTimeLibs(const ToolChain &TC, const Driver &D, llvm::opt::ArgStringList &CmdArgs, const llvm::opt::ArgList &Args)
void SplitDebugInfo(const ToolChain &TC, Compilation &C, const Tool &T, const JobAction &JA, const llvm::opt::ArgList &Args, const InputInfo &Output, const char *OutFile)
void addFortranRuntimeLibraryPath(const ToolChain &TC, const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CmdArgs)
Adds the path for the Fortran runtime libraries to CmdArgs.
void addLTOOptions(const ToolChain &ToolChain, const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CmdArgs, const InputInfo &Output, const InputInfo &Input, bool IsThinLTO)
void claimNoWarnArgs(const llvm::opt::ArgList &Args)
void AddLinkerInputs(const ToolChain &TC, const InputInfoList &Inputs, const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CmdArgs, const JobAction &JA)
void addFortranRuntimeLibs(const ToolChain &TC, const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CmdArgs)
Adds Fortran runtime libraries to CmdArgs.
The JSON file list parser is used to communicate input to InstallAPI.
std::error_code make_error_code(BuildPreambleError Error)
const FunctionProtoType * T
static constexpr ResponseFileSupport None()
Returns a ResponseFileSupport indicating that response files are not supported.
Definition: Job.h:78
static constexpr ResponseFileSupport AtFileUTF8()
Definition: Job.h:85
Struct to store and manipulate GCC versions.
Definition: Gnu.h:162
static GCCVersion Parse(StringRef VersionText)
Parse a GCCVersion object out of a string of text.
Definition: Gnu.cpp:2122