mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-25 06:18:56 -04:00

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: 311923
38 lines
1.6 KiB
C
38 lines
1.6 KiB
C
// Test that -print-libgcc-file-name correctly respects -rtlib=compiler-rt.
|
|
|
|
// RUN: %clang -rtlib=compiler-rt -print-libgcc-file-name 2>&1 \
|
|
// RUN: --target=x86_64-pc-linux \
|
|
// RUN: | FileCheck --check-prefix=CHECK-CLANGRT-X8664 %s
|
|
// 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: --target=i686-pc-linux \
|
|
// RUN: | FileCheck --check-prefix=CHECK-CLANGRT-I386 %s
|
|
|
|
// RUN: %clang -rtlib=compiler-rt -print-libgcc-file-name 2>&1 \
|
|
// RUN: --target=arm-linux-gnueabi \
|
|
// RUN: | FileCheck --check-prefix=CHECK-CLANGRT-ARM %s
|
|
// CHECK-CLANGRT-ARM: libclang_rt.builtins-arm.a
|
|
|
|
// RUN: %clang -rtlib=compiler-rt -print-libgcc-file-name 2>&1 \
|
|
// RUN: --target=arm-linux-androideabi \
|
|
// RUN: | FileCheck --check-prefix=CHECK-CLANGRT-ARM-ANDROID %s
|
|
// CHECK-CLANGRT-ARM-ANDROID: libclang_rt.builtins-arm-android.a
|
|
|
|
// RUN: %clang -rtlib=compiler-rt -print-libgcc-file-name 2>&1 \
|
|
// RUN: --target=arm-linux-gnueabihf \
|
|
// RUN: | FileCheck --check-prefix=CHECK-CLANGRT-ARMHF %s
|
|
// CHECK-CLANGRT-ARMHF: libclang_rt.builtins-armhf.a
|
|
|
|
// RUN: %clang -rtlib=compiler-rt -print-libgcc-file-name 2>&1 \
|
|
// RUN: --target=arm-linux-gnueabi -mfloat-abi=hard \
|
|
// RUN: | FileCheck --check-prefix=CHECK-CLANGRT-ARM-ABI %s
|
|
// CHECK-CLANGRT-ARM-ABI: libclang_rt.builtins-armhf.a
|