forked from OSchip/llvm-project
[Driver] Use arch type to find compiler-rt libraries (on Linux)
Use llvm::Triple::getArchTypeName() when looking for compiler-rt libraries, rather than the exact arch string from the triple. This is more correct as it matches the values used when building compiler-rt (builtin-config-ix.cmake) which are the subset of the values allowed in triples. For example, this fixes an issue when the compiler set for i686-pc-linux-gnu triple would not find an i386 compiler-rt library, while this is the exact arch that is detected by compiler-rt. The same applies to any other i?86 variant allowed by LLVM. This also makes the special case for MSVC unnecessary, since now i386 will be used reliably for all 32-bit x86 variants. Differential Revision: https://reviews.llvm.org/D26796 llvm-svn: 311836
This commit is contained in:
parent
a67e13129d
commit
1726459252
|
@ -297,15 +297,12 @@ static StringRef getArchNameForCompilerRTLib(const ToolChain &TC,
|
||||||
const llvm::Triple &Triple = TC.getTriple();
|
const llvm::Triple &Triple = TC.getTriple();
|
||||||
bool IsWindows = Triple.isOSWindows();
|
bool IsWindows = Triple.isOSWindows();
|
||||||
|
|
||||||
if (Triple.isWindowsMSVCEnvironment() && TC.getArch() == llvm::Triple::x86)
|
|
||||||
return "i386";
|
|
||||||
|
|
||||||
if (TC.getArch() == llvm::Triple::arm || TC.getArch() == llvm::Triple::armeb)
|
if (TC.getArch() == llvm::Triple::arm || TC.getArch() == llvm::Triple::armeb)
|
||||||
return (arm::getARMFloatABI(TC, Args) == arm::FloatABI::Hard && !IsWindows)
|
return (arm::getARMFloatABI(TC, Args) == arm::FloatABI::Hard && !IsWindows)
|
||||||
? "armhf"
|
? "armhf"
|
||||||
: "arm";
|
: "arm";
|
||||||
|
|
||||||
return TC.getArchName();
|
return llvm::Triple::getArchTypeName(TC.getArch());
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string ToolChain::getCompilerRTPath() const {
|
std::string ToolChain::getCompilerRTPath() const {
|
||||||
|
|
|
@ -71,6 +71,27 @@
|
||||||
// CHECK-LD-RT: libclang_rt.builtins-x86_64.a"
|
// CHECK-LD-RT: libclang_rt.builtins-x86_64.a"
|
||||||
//
|
//
|
||||||
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
|
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
|
||||||
|
// RUN: --target=i686-unknown-linux \
|
||||||
|
// RUN: --gcc-toolchain="" \
|
||||||
|
// RUN: --sysroot=%S/Inputs/basic_linux_tree \
|
||||||
|
// RUN: --rtlib=compiler-rt \
|
||||||
|
// RUN: | FileCheck --check-prefix=CHECK-LD-RT-I686 %s
|
||||||
|
// CHECK-LD-RT-I686-NOT: warning:
|
||||||
|
// CHECK-LD-RT-I686: "{{.*}}ld{{(.exe)?}}" "--sysroot=[[SYSROOT:[^"]+]]"
|
||||||
|
// CHECK-LD-RT-I686: "--eh-frame-hdr"
|
||||||
|
// CHECK-LD-RT-I686: "-m" "elf_i386"
|
||||||
|
// CHECK-LD-RT-I686: "-dynamic-linker"
|
||||||
|
// CHECK-LD-RT-I686: "{{.*}}/usr/lib/gcc/i686-unknown-linux/4.6.0{{/|\\\\}}crtbegin.o"
|
||||||
|
// CHECK-LD-RT-I686: "-L[[SYSROOT]]/usr/lib/gcc/i686-unknown-linux/4.6.0"
|
||||||
|
// CHECK-LD-RT-I686: "-L[[SYSROOT]]/usr/lib/gcc/i686-unknown-linux/4.6.0/../../../../i686-unknown-linux/lib"
|
||||||
|
// CHECK-LD-RT-I686: "-L[[SYSROOT]]/usr/lib/gcc/i686-unknown-linux/4.6.0/../../.."
|
||||||
|
// CHECK-LD-RT-I686: "-L[[SYSROOT]]/lib"
|
||||||
|
// CHECK-LD-RT-I686: "-L[[SYSROOT]]/usr/lib"
|
||||||
|
// CHECK-LD-RT-I686: libclang_rt.builtins-i386.a"
|
||||||
|
// CHECK-LD-RT-I686: "-lc"
|
||||||
|
// CHECK-LD-RT-I686: libclang_rt.builtins-i386.a"
|
||||||
|
//
|
||||||
|
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
|
||||||
// RUN: --target=arm-linux-androideabi \
|
// RUN: --target=arm-linux-androideabi \
|
||||||
// RUN: --gcc-toolchain="" \
|
// RUN: --gcc-toolchain="" \
|
||||||
// RUN: --sysroot=%S/Inputs/basic_android_tree/sysroot \
|
// RUN: --sysroot=%S/Inputs/basic_android_tree/sysroot \
|
||||||
|
|
|
@ -27,5 +27,5 @@
|
||||||
//
|
//
|
||||||
// CHECK-LINUX-NOSTDLIB: warning: argument unused during compilation: '--rtlib=compiler-rt'
|
// CHECK-LINUX-NOSTDLIB: warning: argument unused during compilation: '--rtlib=compiler-rt'
|
||||||
// CHECK-LINUX-NOSTDLIB: "{{(.*[^.0-9A-Z_a-z])?}}ld{{(.exe)?}}"
|
// CHECK-LINUX-NOSTDLIB: "{{(.*[^.0-9A-Z_a-z])?}}ld{{(.exe)?}}"
|
||||||
// CHECK-LINUX-NOSTDLIB-NOT: "{{.*}}/Inputs/resource_dir{{/|\\\\}}lib{{/|\\\\}}linux{{/|\\\\}}libclang_rt.builtins-i686.a"
|
// CHECK-LINUX-NOSTDLIB-NOT: "{{.*}}/Inputs/resource_dir{{/|\\\\}}lib{{/|\\\\}}linux{{/|\\\\}}libclang_rt.builtins-i386.a"
|
||||||
// CHECK-MSVC-NOSTDLIB: warning: argument unused during compilation: '--rtlib=compiler-rt'
|
// CHECK-MSVC-NOSTDLIB: warning: argument unused during compilation: '--rtlib=compiler-rt'
|
||||||
|
|
|
@ -5,10 +5,16 @@
|
||||||
// RUN: | FileCheck --check-prefix=CHECK-CLANGRT-X8664 %s
|
// RUN: | FileCheck --check-prefix=CHECK-CLANGRT-X8664 %s
|
||||||
// CHECK-CLANGRT-X8664: libclang_rt.builtins-x86_64.a
|
// CHECK-CLANGRT-X8664: libclang_rt.builtins-x86_64.a
|
||||||
|
|
||||||
|
// RUN: %clang -rtlib=compiler-rt -print-libgcc-file-name 2>&1 \
|
||||||
|
// RUN: --target=i386-pc-linux \
|
||||||
|
// RUN: | FileCheck --check-prefix=CHECK-CLANGRT-I386 %s
|
||||||
|
// CHECK-CLANGRT-I386: libclang_rt.builtins-i386.a
|
||||||
|
|
||||||
|
// Check whether alternate arch values map to the correct library.
|
||||||
|
//
|
||||||
// RUN: %clang -rtlib=compiler-rt -print-libgcc-file-name 2>&1 \
|
// RUN: %clang -rtlib=compiler-rt -print-libgcc-file-name 2>&1 \
|
||||||
// RUN: --target=i686-pc-linux \
|
// RUN: --target=i686-pc-linux \
|
||||||
// RUN: | FileCheck --check-prefix=CHECK-CLANGRT-I686 %s
|
// RUN: | FileCheck --check-prefix=CHECK-CLANGRT-I386 %s
|
||||||
// CHECK-CLANGRT-I686: libclang_rt.builtins-i686.a
|
|
||||||
|
|
||||||
// RUN: %clang -rtlib=compiler-rt -print-libgcc-file-name 2>&1 \
|
// RUN: %clang -rtlib=compiler-rt -print-libgcc-file-name 2>&1 \
|
||||||
// RUN: --target=arm-linux-gnueabi \
|
// RUN: --target=arm-linux-gnueabi \
|
||||||
|
|
|
@ -64,7 +64,7 @@
|
||||||
// RUN: | FileCheck %s --check-prefix CHECK-SANITIZE-ADDRESS-EXE-X86
|
// RUN: | FileCheck %s --check-prefix CHECK-SANITIZE-ADDRESS-EXE-X86
|
||||||
|
|
||||||
// CHECK-SANITIZE-ADDRESS-EXE-X86: "-fsanitize=address"
|
// CHECK-SANITIZE-ADDRESS-EXE-X86: "-fsanitize=address"
|
||||||
// CHECK-SANITIZE-ADDRESS-EXE-X86: "{{.*}}clang_rt.asan_dynamic-i686.lib" "{{.*}}clang_rt.asan_dynamic_runtime_thunk-i686.lib" "--undefined" "___asan_seh_interceptor"
|
// CHECK-SANITIZE-ADDRESS-EXE-X86: "{{.*}}clang_rt.asan_dynamic-i386.lib" "{{.*}}clang_rt.asan_dynamic_runtime_thunk-i386.lib" "--undefined" "___asan_seh_interceptor"
|
||||||
|
|
||||||
// RUN: %clang -### -target armv7-windows-itanium --sysroot %S/Inputs/Windows/ARM/8.1 -B %S/Inputs/Windows/ARM/8.1/usr/bin -fuse-ld=lld-link2 -shared -o shared.dll -fsanitize=tsan -x c++ %s 2>&1 \
|
// RUN: %clang -### -target armv7-windows-itanium --sysroot %S/Inputs/Windows/ARM/8.1 -B %S/Inputs/Windows/ARM/8.1/usr/bin -fuse-ld=lld-link2 -shared -o shared.dll -fsanitize=tsan -x c++ %s 2>&1 \
|
||||||
// RUN: | FileCheck %s --check-prefix CHECK-SANITIZE-TSAN
|
// RUN: | FileCheck %s --check-prefix CHECK-SANITIZE-TSAN
|
||||||
|
|
Loading…
Reference in New Issue