1 //===--- Linux.h - Linux ToolChain Implementations --------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
11 #include "Arch/LoongArch.h"
12 #include "Arch/Mips.h"
14 #include "Arch/RISCV.h"
15 #include "CommonArgs.h"
16 #include "clang/Config/config.h"
17 #include "clang/Driver/Distro.h"
18 #include "clang/Driver/Driver.h"
19 #include "clang/Driver/Options.h"
20 #include "clang/Driver/SanitizerArgs.h"
21 #include "llvm/Option/ArgList.h"
22 #include "llvm/ProfileData/InstrProf.h"
23 #include "llvm/Support/Path.h"
24 #include "llvm/Support/ScopedPrinter.h"
25 #include "llvm/Support/VirtualFileSystem.h"
26 #include <system_error>
28 using namespace clang::driver
;
29 using namespace clang::driver::toolchains
;
30 using namespace clang
;
31 using namespace llvm::opt
;
33 using tools::addPathIfExists
;
35 /// Get our best guess at the multiarch triple for a target.
37 /// Debian-based systems are starting to use a multiarch setup where they use
38 /// a target-triple directory in the library and header search paths.
39 /// Unfortunately, this triple does not align with the vanilla target triple,
40 /// so we provide a rough mapping here.
41 std::string
Linux::getMultiarchTriple(const Driver
&D
,
42 const llvm::Triple
&TargetTriple
,
43 StringRef SysRoot
) const {
44 llvm::Triple::EnvironmentType TargetEnvironment
=
45 TargetTriple
.getEnvironment();
46 bool IsAndroid
= TargetTriple
.isAndroid();
47 bool IsMipsR6
= TargetTriple
.getSubArch() == llvm::Triple::MipsSubArch_r6
;
48 bool IsMipsN32Abi
= TargetTriple
.getEnvironment() == llvm::Triple::GNUABIN32
;
50 // For most architectures, just use whatever we have rather than trying to be
52 switch (TargetTriple
.getArch()) {
56 // We use the existence of '/lib/<triple>' as a directory to detect some
57 // common linux triples that don't quite match the Clang triple for both
58 // 32-bit and 64-bit targets. Multiarch fixes its install triples to these
59 // regardless of what the actual target triple is.
60 case llvm::Triple::arm
:
61 case llvm::Triple::thumb
:
63 return "arm-linux-androideabi";
64 if (TargetEnvironment
== llvm::Triple::GNUEABIHF
)
65 return "arm-linux-gnueabihf";
66 return "arm-linux-gnueabi";
67 case llvm::Triple::armeb
:
68 case llvm::Triple::thumbeb
:
69 if (TargetEnvironment
== llvm::Triple::GNUEABIHF
)
70 return "armeb-linux-gnueabihf";
71 return "armeb-linux-gnueabi";
72 case llvm::Triple::x86
:
74 return "i686-linux-android";
75 return "i386-linux-gnu";
76 case llvm::Triple::x86_64
:
78 return "x86_64-linux-android";
79 if (TargetEnvironment
== llvm::Triple::GNUX32
)
80 return "x86_64-linux-gnux32";
81 return "x86_64-linux-gnu";
82 case llvm::Triple::aarch64
:
84 return "aarch64-linux-android";
85 return "aarch64-linux-gnu";
86 case llvm::Triple::aarch64_be
:
87 return "aarch64_be-linux-gnu";
89 case llvm::Triple::m68k
:
90 return "m68k-linux-gnu";
92 case llvm::Triple::mips
:
93 return IsMipsR6
? "mipsisa32r6-linux-gnu" : "mips-linux-gnu";
94 case llvm::Triple::mipsel
:
96 return "mipsel-linux-android";
97 return IsMipsR6
? "mipsisa32r6el-linux-gnu" : "mipsel-linux-gnu";
98 case llvm::Triple::mips64
: {
99 std::string MT
= std::string(IsMipsR6
? "mipsisa64r6" : "mips64") +
100 "-linux-" + (IsMipsN32Abi
? "gnuabin32" : "gnuabi64");
101 if (D
.getVFS().exists(concat(SysRoot
, "/lib", MT
)))
103 if (D
.getVFS().exists(concat(SysRoot
, "/lib/mips64-linux-gnu")))
104 return "mips64-linux-gnu";
107 case llvm::Triple::mips64el
: {
109 return "mips64el-linux-android";
110 std::string MT
= std::string(IsMipsR6
? "mipsisa64r6el" : "mips64el") +
111 "-linux-" + (IsMipsN32Abi
? "gnuabin32" : "gnuabi64");
112 if (D
.getVFS().exists(concat(SysRoot
, "/lib", MT
)))
114 if (D
.getVFS().exists(concat(SysRoot
, "/lib/mips64el-linux-gnu")))
115 return "mips64el-linux-gnu";
118 case llvm::Triple::ppc
:
119 if (D
.getVFS().exists(concat(SysRoot
, "/lib/powerpc-linux-gnuspe")))
120 return "powerpc-linux-gnuspe";
121 return "powerpc-linux-gnu";
122 case llvm::Triple::ppcle
:
123 return "powerpcle-linux-gnu";
124 case llvm::Triple::ppc64
:
125 return "powerpc64-linux-gnu";
126 case llvm::Triple::ppc64le
:
127 return "powerpc64le-linux-gnu";
128 case llvm::Triple::riscv64
:
129 return "riscv64-linux-gnu";
130 case llvm::Triple::sparc
:
131 return "sparc-linux-gnu";
132 case llvm::Triple::sparcv9
:
133 return "sparc64-linux-gnu";
134 case llvm::Triple::systemz
:
135 return "s390x-linux-gnu";
137 return TargetTriple
.str();
140 static StringRef
getOSLibDir(const llvm::Triple
&Triple
, const ArgList
&Args
) {
141 if (Triple
.isMIPS()) {
142 if (Triple
.isAndroid()) {
145 tools::mips::getMipsCPUAndABI(Args
, Triple
, CPUName
, ABIName
);
146 if (CPUName
== "mips32r6")
148 if (CPUName
== "mips32r2")
151 // lib32 directory has a special meaning on MIPS targets.
152 // It contains N32 ABI binaries. Use this folder if produce
153 // code for N32 ABI only.
154 if (tools::mips::hasMipsAbiArg(Args
, "n32"))
156 return Triple
.isArch32Bit() ? "lib" : "lib64";
159 // It happens that only x86, PPC and SPARC use the 'lib32' variant of
160 // oslibdir, and using that variant while targeting other architectures causes
161 // problems because the libraries are laid out in shared system roots that
162 // can't cope with a 'lib32' library search path being considered. So we only
163 // enable them when we know we may need it.
165 // FIXME: This is a bit of a hack. We should really unify this code for
166 // reasoning about oslibdir spellings with the lib dir spellings in the
167 // GCCInstallationDetector, but that is a more significant refactoring.
168 if (Triple
.getArch() == llvm::Triple::x86
|| Triple
.isPPC32() ||
169 Triple
.getArch() == llvm::Triple::sparc
)
172 if (Triple
.getArch() == llvm::Triple::x86_64
&& Triple
.isX32())
175 if (Triple
.getArch() == llvm::Triple::riscv32
)
178 return Triple
.isArch32Bit() ? "lib" : "lib64";
181 Linux::Linux(const Driver
&D
, const llvm::Triple
&Triple
, const ArgList
&Args
)
182 : Generic_ELF(D
, Triple
, Args
) {
183 GCCInstallation
.init(Triple
, Args
);
184 Multilibs
= GCCInstallation
.getMultilibs();
185 SelectedMultilib
= GCCInstallation
.getMultilib();
186 llvm::Triple::ArchType Arch
= Triple
.getArch();
187 std::string SysRoot
= computeSysRoot();
188 ToolChain::path_list
&PPaths
= getProgramPaths();
190 Generic_GCC::PushPPaths(PPaths
);
192 Distro
Distro(D
.getVFS(), Triple
);
194 if (Distro
.IsAlpineLinux() || Triple
.isAndroid()) {
195 ExtraOpts
.push_back("-z");
196 ExtraOpts
.push_back("now");
199 if (Distro
.IsOpenSUSE() || Distro
.IsUbuntu() || Distro
.IsAlpineLinux() ||
200 Triple
.isAndroid()) {
201 ExtraOpts
.push_back("-z");
202 ExtraOpts
.push_back("relro");
205 // Android ARM/AArch64 use max-page-size=4096 to reduce VMA usage. Note, lld
206 // from 11 onwards default max-page-size to 65536 for both ARM and AArch64.
207 if ((Triple
.isARM() || Triple
.isAArch64()) && Triple
.isAndroid()) {
208 ExtraOpts
.push_back("-z");
209 ExtraOpts
.push_back("max-page-size=4096");
212 if (GCCInstallation
.getParentLibPath().contains("opt/rh/"))
213 // With devtoolset on RHEL, we want to add a bin directory that is relative
214 // to the detected gcc install, because if we are using devtoolset gcc then
215 // we want to use other tools from devtoolset (e.g. ld) instead of the
216 // standard system tools.
217 PPaths
.push_back(Twine(GCCInstallation
.getParentLibPath() +
220 if (Arch
== llvm::Triple::arm
|| Arch
== llvm::Triple::thumb
)
221 ExtraOpts
.push_back("-X");
223 const bool IsAndroid
= Triple
.isAndroid();
224 const bool IsMips
= Triple
.isMIPS();
225 const bool IsHexagon
= Arch
== llvm::Triple::hexagon
;
226 const bool IsRISCV
= Triple
.isRISCV();
227 const bool IsCSKY
= Triple
.isCSKY();
230 SysRoot
= SysRoot
+ SelectedMultilib
.osSuffix();
232 if ((IsMips
|| IsCSKY
) && !SysRoot
.empty())
233 ExtraOpts
.push_back("--sysroot=" + SysRoot
);
235 // Do not use 'gnu' hash style for Mips targets because .gnu.hash
236 // and the MIPS ABI require .dynsym to be sorted in different ways.
237 // .gnu.hash needs symbols to be grouped by hash code whereas the MIPS
238 // ABI requires a mapping between the GOT and the symbol table.
239 // Android loader does not support .gnu.hash until API 23.
240 // Hexagon linker/loader does not support .gnu.hash
241 if (!IsMips
&& !IsHexagon
) {
242 if (Distro
.IsOpenSUSE() || Distro
== Distro::UbuntuLucid
||
243 Distro
== Distro::UbuntuJaunty
|| Distro
== Distro::UbuntuKarmic
||
244 (IsAndroid
&& Triple
.isAndroidVersionLT(23)))
245 ExtraOpts
.push_back("--hash-style=both");
247 ExtraOpts
.push_back("--hash-style=gnu");
250 #ifdef ENABLE_LINKER_BUILD_ID
251 ExtraOpts
.push_back("--build-id");
254 // The selection of paths to try here is designed to match the patterns which
255 // the GCC driver itself uses, as this is part of the GCC-compatible driver.
256 // This was determined by running GCC in a fake filesystem, creating all
257 // possible permutations of these directories, and seeing which ones it added
258 // to the link paths.
259 path_list
&Paths
= getFilePaths();
261 const std::string OSLibDir
= std::string(getOSLibDir(Triple
, Args
));
262 const std::string MultiarchTriple
= getMultiarchTriple(D
, Triple
, SysRoot
);
264 // mips32: Debian multilib, we use /libo32, while in other case, /lib is
265 // used. We need add both libo32 and /lib.
266 if (Arch
== llvm::Triple::mips
|| Arch
== llvm::Triple::mipsel
) {
267 Generic_GCC::AddMultilibPaths(D
, SysRoot
, "libo32", MultiarchTriple
, Paths
);
268 addPathIfExists(D
, concat(SysRoot
, "/libo32"), Paths
);
269 addPathIfExists(D
, concat(SysRoot
, "/usr/libo32"), Paths
);
271 Generic_GCC::AddMultilibPaths(D
, SysRoot
, OSLibDir
, MultiarchTriple
, Paths
);
273 addPathIfExists(D
, concat(SysRoot
, "/lib", MultiarchTriple
), Paths
);
274 addPathIfExists(D
, concat(SysRoot
, "/lib/..", OSLibDir
), Paths
);
277 // Android sysroots contain a library directory for each supported OS
278 // version as well as some unversioned libraries in the usual multiarch
282 concat(SysRoot
, "/usr/lib", MultiarchTriple
,
283 llvm::to_string(Triple
.getEnvironmentVersion().getMajor())),
287 addPathIfExists(D
, concat(SysRoot
, "/usr/lib", MultiarchTriple
), Paths
);
288 // 64-bit OpenEmbedded sysroots may not have a /usr/lib dir. So they cannot
289 // find /usr/lib64 as it is referenced as /usr/lib/../lib64. So we handle
291 if (Triple
.getVendor() == llvm::Triple::OpenEmbedded
&&
292 Triple
.isArch64Bit())
293 addPathIfExists(D
, concat(SysRoot
, "/usr", OSLibDir
), Paths
);
295 addPathIfExists(D
, concat(SysRoot
, "/usr/lib/..", OSLibDir
), Paths
);
297 StringRef ABIName
= tools::riscv::getRISCVABI(Args
, Triple
);
298 addPathIfExists(D
, concat(SysRoot
, "/", OSLibDir
, ABIName
), Paths
);
299 addPathIfExists(D
, concat(SysRoot
, "/usr", OSLibDir
, ABIName
), Paths
);
302 Generic_GCC::AddMultiarchPaths(D
, SysRoot
, OSLibDir
, Paths
);
304 // The deprecated -DLLVM_ENABLE_PROJECTS=libcxx configuration installs
305 // libc++.so in D.Dir+"/../lib/". Detect this path.
306 // TODO Remove once LLVM_ENABLE_PROJECTS=libcxx is unsupported.
307 if (StringRef(D
.Dir
).startswith(SysRoot
) &&
308 D
.getVFS().exists(D
.Dir
+ "/../lib/libc++.so"))
309 addPathIfExists(D
, D
.Dir
+ "/../lib", Paths
);
311 addPathIfExists(D
, concat(SysRoot
, "/lib"), Paths
);
312 addPathIfExists(D
, concat(SysRoot
, "/usr/lib"), Paths
);
315 ToolChain::RuntimeLibType
Linux::GetDefaultRuntimeLibType() const {
316 if (getTriple().isAndroid())
317 return ToolChain::RLT_CompilerRT
;
318 return Generic_ELF::GetDefaultRuntimeLibType();
321 unsigned Linux::GetDefaultDwarfVersion() const {
322 if (getTriple().isAndroid())
324 return ToolChain::GetDefaultDwarfVersion();
327 ToolChain::CXXStdlibType
Linux::GetDefaultCXXStdlibType() const {
328 if (getTriple().isAndroid())
329 return ToolChain::CST_Libcxx
;
330 return ToolChain::CST_Libstdcxx
;
333 bool Linux::HasNativeLLVMSupport() const { return true; }
335 Tool
*Linux::buildLinker() const { return new tools::gnutools::Linker(*this); }
337 Tool
*Linux::buildStaticLibTool() const {
338 return new tools::gnutools::StaticLibTool(*this);
341 Tool
*Linux::buildAssembler() const {
342 return new tools::gnutools::Assembler(*this);
345 std::string
Linux::computeSysRoot() const {
346 if (!getDriver().SysRoot
.empty())
347 return getDriver().SysRoot
;
349 if (getTriple().isAndroid()) {
350 // Android toolchains typically include a sysroot at ../sysroot relative to
352 const StringRef ClangDir
= getDriver().getInstalledDir();
353 std::string AndroidSysRootPath
= (ClangDir
+ "/../sysroot").str();
354 if (getVFS().exists(AndroidSysRootPath
))
355 return AndroidSysRootPath
;
358 if (getTriple().isCSKY()) {
359 // CSKY toolchains use different names for sysroot folder.
360 if (!GCCInstallation
.isValid())
361 return std::string();
362 // GCCInstallation.getInstallPath() =
363 // $GCCToolchainPath/lib/gcc/csky-linux-gnuabiv2/6.3.0
364 // Path = $GCCToolchainPath/csky-linux-gnuabiv2/libc
365 std::string Path
= (GCCInstallation
.getInstallPath() + "/../../../../" +
366 GCCInstallation
.getTriple().str() + "/libc")
368 if (getVFS().exists(Path
))
370 return std::string();
373 if (!GCCInstallation
.isValid() || !getTriple().isMIPS())
374 return std::string();
376 // Standalone MIPS toolchains use different names for sysroot folder
377 // and put it into different places. Here we try to check some known
380 const StringRef InstallDir
= GCCInstallation
.getInstallPath();
381 const StringRef TripleStr
= GCCInstallation
.getTriple().str();
382 const Multilib
&Multilib
= GCCInstallation
.getMultilib();
385 (InstallDir
+ "/../../../../" + TripleStr
+ "/libc" + Multilib
.osSuffix())
388 if (getVFS().exists(Path
))
391 Path
= (InstallDir
+ "/../../../../sysroot" + Multilib
.osSuffix()).str();
393 if (getVFS().exists(Path
))
396 return std::string();
399 std::string
Linux::getDynamicLinker(const ArgList
&Args
) const {
400 const llvm::Triple::ArchType Arch
= getArch();
401 const llvm::Triple
&Triple
= getTriple();
403 const Distro
Distro(getDriver().getVFS(), Triple
);
405 if (Triple
.isAndroid())
406 return Triple
.isArch64Bit() ? "/system/bin/linker64" : "/system/bin/linker";
408 if (Triple
.isMusl()) {
409 std::string ArchName
;
413 case llvm::Triple::arm
:
414 case llvm::Triple::thumb
:
418 case llvm::Triple::armeb
:
419 case llvm::Triple::thumbeb
:
423 case llvm::Triple::x86
:
426 case llvm::Triple::x86_64
:
427 ArchName
= Triple
.isX32() ? "x32" : Triple
.getArchName().str();
430 ArchName
= Triple
.getArchName().str();
433 (Triple
.getEnvironment() == llvm::Triple::MuslEABIHF
||
434 tools::arm::getARMFloatABI(*this, Args
) == tools::arm::FloatABI::Hard
))
436 if (Arch
== llvm::Triple::ppc
&&
437 Triple
.getSubArch() == llvm::Triple::PPCSubArch_spe
)
438 ArchName
= "powerpc-sf";
440 return "/lib/ld-musl-" + ArchName
+ ".so.1";
448 llvm_unreachable("unsupported architecture");
450 case llvm::Triple::aarch64
:
452 Loader
= "ld-linux-aarch64.so.1";
454 case llvm::Triple::aarch64_be
:
456 Loader
= "ld-linux-aarch64_be.so.1";
458 case llvm::Triple::arm
:
459 case llvm::Triple::thumb
:
460 case llvm::Triple::armeb
:
461 case llvm::Triple::thumbeb
: {
463 Triple
.getEnvironment() == llvm::Triple::GNUEABIHF
||
464 tools::arm::getARMFloatABI(*this, Args
) == tools::arm::FloatABI::Hard
;
467 Loader
= HF
? "ld-linux-armhf.so.3" : "ld-linux.so.3";
470 case llvm::Triple::loongarch32
: {
472 Loader
= ("ld-linux-loongarch-" +
473 tools::loongarch::getLoongArchABI(Args
, Triple
) + ".so.1")
477 case llvm::Triple::loongarch64
: {
479 Loader
= ("ld-linux-loongarch-" +
480 tools::loongarch::getLoongArchABI(Args
, Triple
) + ".so.1")
484 case llvm::Triple::m68k
:
488 case llvm::Triple::mips
:
489 case llvm::Triple::mipsel
:
490 case llvm::Triple::mips64
:
491 case llvm::Triple::mips64el
: {
492 bool IsNaN2008
= tools::mips::isNaN2008(getDriver(), Args
, Triple
);
494 LibDir
= "lib" + tools::mips::getMipsABILibSuffix(Args
, Triple
);
496 if (tools::mips::isUCLibc(Args
))
497 Loader
= IsNaN2008
? "ld-uClibc-mipsn8.so.0" : "ld-uClibc.so.0";
498 else if (!Triple
.hasEnvironment() &&
499 Triple
.getVendor() == llvm::Triple::VendorType::MipsTechnologies
)
501 Triple
.isLittleEndian() ? "ld-musl-mipsel.so.1" : "ld-musl-mips.so.1";
503 Loader
= IsNaN2008
? "ld-linux-mipsn8.so.1" : "ld.so.1";
507 case llvm::Triple::ppc
:
511 case llvm::Triple::ppcle
:
515 case llvm::Triple::ppc64
:
518 (tools::ppc::hasPPCAbiArg(Args
, "elfv2")) ? "ld64.so.2" : "ld64.so.1";
520 case llvm::Triple::ppc64le
:
523 (tools::ppc::hasPPCAbiArg(Args
, "elfv1")) ? "ld64.so.1" : "ld64.so.2";
525 case llvm::Triple::riscv32
: {
526 StringRef ABIName
= tools::riscv::getRISCVABI(Args
, Triple
);
528 Loader
= ("ld-linux-riscv32-" + ABIName
+ ".so.1").str();
531 case llvm::Triple::riscv64
: {
532 StringRef ABIName
= tools::riscv::getRISCVABI(Args
, Triple
);
534 Loader
= ("ld-linux-riscv64-" + ABIName
+ ".so.1").str();
537 case llvm::Triple::sparc
:
538 case llvm::Triple::sparcel
:
540 Loader
= "ld-linux.so.2";
542 case llvm::Triple::sparcv9
:
544 Loader
= "ld-linux.so.2";
546 case llvm::Triple::systemz
:
548 Loader
= "ld64.so.1";
550 case llvm::Triple::x86
:
552 Loader
= "ld-linux.so.2";
554 case llvm::Triple::x86_64
: {
555 bool X32
= Triple
.isX32();
557 LibDir
= X32
? "libx32" : "lib64";
558 Loader
= X32
? "ld-linux-x32.so.2" : "ld-linux-x86-64.so.2";
561 case llvm::Triple::ve
:
562 return "/opt/nec/ve/lib/ld-linux-ve.so.1";
563 case llvm::Triple::csky
: {
570 if (Distro
== Distro::Exherbo
&&
571 (Triple
.getVendor() == llvm::Triple::UnknownVendor
||
572 Triple
.getVendor() == llvm::Triple::PC
))
573 return "/usr/" + Triple
.str() + "/lib/" + Loader
;
574 return "/" + LibDir
+ "/" + Loader
;
577 void Linux::AddClangSystemIncludeArgs(const ArgList
&DriverArgs
,
578 ArgStringList
&CC1Args
) const {
579 const Driver
&D
= getDriver();
580 std::string SysRoot
= computeSysRoot();
582 if (DriverArgs
.hasArg(clang::driver::options::OPT_nostdinc
))
585 // Add 'include' in the resource directory, which is similar to
586 // GCC_INCLUDE_DIR (private headers) in GCC. Note: the include directory
587 // contains some files conflicting with system /usr/include. musl systems
588 // prefer the /usr/include copies which are more relevant.
589 SmallString
<128> ResourceDirInclude(D
.ResourceDir
);
590 llvm::sys::path::append(ResourceDirInclude
, "include");
591 if (!DriverArgs
.hasArg(options::OPT_nobuiltininc
) &&
592 (!getTriple().isMusl() || DriverArgs
.hasArg(options::OPT_nostdlibinc
)))
593 addSystemInclude(DriverArgs
, CC1Args
, ResourceDirInclude
);
595 if (DriverArgs
.hasArg(options::OPT_nostdlibinc
))
599 addSystemInclude(DriverArgs
, CC1Args
, concat(SysRoot
, "/usr/local/include"));
601 AddMultilibIncludeArgs(DriverArgs
, CC1Args
);
603 // Check for configure-time C include directories.
604 StringRef
CIncludeDirs(C_INCLUDE_DIRS
);
605 if (CIncludeDirs
!= "") {
606 SmallVector
<StringRef
, 5> dirs
;
607 CIncludeDirs
.split(dirs
, ":");
608 for (StringRef dir
: dirs
) {
610 llvm::sys::path::is_absolute(dir
) ? "" : StringRef(SysRoot
);
611 addExternCSystemInclude(DriverArgs
, CC1Args
, Prefix
+ dir
);
616 // On systems using multiarch and Android, add /usr/include/$triple before
618 std::string MultiarchIncludeDir
= getMultiarchTriple(D
, getTriple(), SysRoot
);
619 if (!MultiarchIncludeDir
.empty() &&
620 D
.getVFS().exists(concat(SysRoot
, "/usr/include", MultiarchIncludeDir
)))
621 addExternCSystemInclude(
623 concat(SysRoot
, "/usr/include", MultiarchIncludeDir
));
625 if (getTriple().getOS() == llvm::Triple::RTEMS
)
628 // Add an include of '/include' directly. This isn't provided by default by
629 // system GCCs, but is often used with cross-compiling GCCs, and harmless to
630 // add even when Clang is acting as-if it were a system compiler.
631 addExternCSystemInclude(DriverArgs
, CC1Args
, concat(SysRoot
, "/include"));
633 addExternCSystemInclude(DriverArgs
, CC1Args
, concat(SysRoot
, "/usr/include"));
635 if (!DriverArgs
.hasArg(options::OPT_nobuiltininc
) && getTriple().isMusl())
636 addSystemInclude(DriverArgs
, CC1Args
, ResourceDirInclude
);
639 void Linux::addLibStdCxxIncludePaths(const llvm::opt::ArgList
&DriverArgs
,
640 llvm::opt::ArgStringList
&CC1Args
) const {
641 // We need a detected GCC installation on Linux to provide libstdc++'s
642 // headers in odd Linuxish places.
643 if (!GCCInstallation
.isValid())
646 // Detect Debian g++-multiarch-incdir.diff.
647 StringRef TripleStr
= GCCInstallation
.getTriple().str();
648 StringRef DebianMultiarch
=
649 GCCInstallation
.getTriple().getArch() == llvm::Triple::x86
653 // Try generic GCC detection first.
654 if (Generic_GCC::addGCCLibStdCxxIncludePaths(DriverArgs
, CC1Args
,
658 StringRef LibDir
= GCCInstallation
.getParentLibPath();
659 const Multilib
&Multilib
= GCCInstallation
.getMultilib();
660 const GCCVersion
&Version
= GCCInstallation
.getVersion();
662 const std::string LibStdCXXIncludePathCandidates
[] = {
663 // Android standalone toolchain has C++ headers in yet another place.
664 LibDir
.str() + "/../" + TripleStr
.str() + "/include/c++/" + Version
.Text
,
665 // Freescale SDK C++ headers are directly in <sysroot>/usr/include/c++,
666 // without a subdirectory corresponding to the gcc version.
667 LibDir
.str() + "/../include/c++",
668 // Cray's gcc installation puts headers under "g++" without a
670 LibDir
.str() + "/../include/g++",
673 for (const auto &IncludePath
: LibStdCXXIncludePathCandidates
) {
674 if (addLibStdCXXIncludePaths(IncludePath
, TripleStr
,
675 Multilib
.includeSuffix(), DriverArgs
, CC1Args
))
680 void Linux::AddCudaIncludeArgs(const ArgList
&DriverArgs
,
681 ArgStringList
&CC1Args
) const {
682 CudaInstallation
.AddCudaIncludeArgs(DriverArgs
, CC1Args
);
685 void Linux::AddHIPIncludeArgs(const ArgList
&DriverArgs
,
686 ArgStringList
&CC1Args
) const {
687 RocmInstallation
.AddHIPIncludeArgs(DriverArgs
, CC1Args
);
690 void Linux::AddHIPRuntimeLibArgs(const ArgList
&Args
,
691 ArgStringList
&CmdArgs
) const {
693 {Args
.MakeArgString(StringRef("-L") + RocmInstallation
.getLibPath()),
694 "-rpath", Args
.MakeArgString(RocmInstallation
.getLibPath())});
696 CmdArgs
.push_back("-lamdhip64");
699 void Linux::AddIAMCUIncludeArgs(const ArgList
&DriverArgs
,
700 ArgStringList
&CC1Args
) const {
701 if (GCCInstallation
.isValid()) {
702 CC1Args
.push_back("-isystem");
703 CC1Args
.push_back(DriverArgs
.MakeArgString(
704 GCCInstallation
.getParentLibPath() + "/../" +
705 GCCInstallation
.getTriple().str() + "/include"));
709 bool Linux::isPIEDefault(const llvm::opt::ArgList
&Args
) const {
710 return CLANG_DEFAULT_PIE_ON_LINUX
|| getTriple().isAndroid() ||
711 getTriple().isMusl() || getSanitizerArgs(Args
).requiresPIE();
714 bool Linux::IsAArch64OutlineAtomicsDefault(const ArgList
&Args
) const {
715 // Outline atomics for AArch64 are supported by compiler-rt
716 // and libgcc since 9.3.1
717 assert(getTriple().isAArch64() && "expected AArch64 target!");
718 ToolChain::RuntimeLibType RtLib
= GetRuntimeLibType(Args
);
719 if (RtLib
== ToolChain::RLT_CompilerRT
)
721 assert(RtLib
== ToolChain::RLT_Libgcc
&& "unexpected runtime library type!");
722 if (GCCInstallation
.getVersion().isOlderThan(9, 3, 1))
727 bool Linux::IsMathErrnoDefault() const {
728 if (getTriple().isAndroid() || getTriple().isMusl())
730 return Generic_ELF::IsMathErrnoDefault();
733 SanitizerMask
Linux::getSupportedSanitizers() const {
734 const bool IsX86
= getTriple().getArch() == llvm::Triple::x86
;
735 const bool IsX86_64
= getTriple().getArch() == llvm::Triple::x86_64
;
736 const bool IsMIPS
= getTriple().isMIPS32();
737 const bool IsMIPS64
= getTriple().isMIPS64();
738 const bool IsPowerPC64
= getTriple().getArch() == llvm::Triple::ppc64
||
739 getTriple().getArch() == llvm::Triple::ppc64le
;
740 const bool IsAArch64
= getTriple().getArch() == llvm::Triple::aarch64
||
741 getTriple().getArch() == llvm::Triple::aarch64_be
;
742 const bool IsArmArch
= getTriple().getArch() == llvm::Triple::arm
||
743 getTriple().getArch() == llvm::Triple::thumb
||
744 getTriple().getArch() == llvm::Triple::armeb
||
745 getTriple().getArch() == llvm::Triple::thumbeb
;
746 const bool IsRISCV64
= getTriple().getArch() == llvm::Triple::riscv64
;
747 const bool IsSystemZ
= getTriple().getArch() == llvm::Triple::systemz
;
748 const bool IsHexagon
= getTriple().getArch() == llvm::Triple::hexagon
;
749 SanitizerMask Res
= ToolChain::getSupportedSanitizers();
750 Res
|= SanitizerKind::Address
;
751 Res
|= SanitizerKind::PointerCompare
;
752 Res
|= SanitizerKind::PointerSubtract
;
753 Res
|= SanitizerKind::Fuzzer
;
754 Res
|= SanitizerKind::FuzzerNoLink
;
755 Res
|= SanitizerKind::KernelAddress
;
756 Res
|= SanitizerKind::Memory
;
757 Res
|= SanitizerKind::Vptr
;
758 Res
|= SanitizerKind::SafeStack
;
759 if (IsX86_64
|| IsMIPS64
|| IsAArch64
)
760 Res
|= SanitizerKind::DataFlow
;
761 if (IsX86_64
|| IsMIPS64
|| IsAArch64
|| IsX86
|| IsArmArch
|| IsPowerPC64
||
762 IsRISCV64
|| IsSystemZ
|| IsHexagon
)
763 Res
|= SanitizerKind::Leak
;
764 if (IsX86_64
|| IsMIPS64
|| IsAArch64
|| IsPowerPC64
|| IsSystemZ
)
765 Res
|= SanitizerKind::Thread
;
767 Res
|= SanitizerKind::KernelMemory
;
768 if (IsX86
|| IsX86_64
)
769 Res
|= SanitizerKind::Function
;
770 if (IsX86_64
|| IsMIPS64
|| IsAArch64
|| IsX86
|| IsMIPS
|| IsArmArch
||
771 IsPowerPC64
|| IsHexagon
)
772 Res
|= SanitizerKind::Scudo
;
773 if (IsX86_64
|| IsAArch64
) {
774 Res
|= SanitizerKind::HWAddress
;
775 Res
|= SanitizerKind::KernelHWAddress
;
780 void Linux::addProfileRTLibs(const llvm::opt::ArgList
&Args
,
781 llvm::opt::ArgStringList
&CmdArgs
) const {
782 // Add linker option -u__llvm_profile_runtime to cause runtime
783 // initialization module to be linked in.
784 if (needsProfileRT(Args
))
785 CmdArgs
.push_back(Args
.MakeArgString(
786 Twine("-u", llvm::getInstrProfRuntimeHookVarName())));
787 ToolChain::addProfileRTLibs(Args
, CmdArgs
);
791 Linux::getDefaultDenormalModeForType(const llvm::opt::ArgList
&DriverArgs
,
793 const llvm::fltSemantics
*FPType
) const {
794 switch (getTriple().getArch()) {
795 case llvm::Triple::x86
:
796 case llvm::Triple::x86_64
: {
798 // DAZ and FTZ are turned on in crtfastmath.o
799 if (!DriverArgs
.hasArg(options::OPT_nostdlib
, options::OPT_nostartfiles
) &&
800 isFastMathRuntimeAvailable(DriverArgs
, Unused
))
801 return llvm::DenormalMode::getPreserveSign();
802 return llvm::DenormalMode::getIEEE();
805 return llvm::DenormalMode::getIEEE();
809 void Linux::addExtraOpts(llvm::opt::ArgStringList
&CmdArgs
) const {
810 for (const auto &Opt
: ExtraOpts
)
811 CmdArgs
.push_back(Opt
.c_str());