2016-10-10 20:23:40 +08:00
|
|
|
// 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
|
|
|
|
|
2017-08-29 04:29:52 +08:00
|
|
|
// 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.
|
|
|
|
//
|
2016-10-10 20:23:40 +08:00
|
|
|
// RUN: %clang -rtlib=compiler-rt -print-libgcc-file-name 2>&1 \
|
|
|
|
// RUN: --target=i686-pc-linux \
|
2017-08-29 04:29:52 +08:00
|
|
|
// RUN: | FileCheck --check-prefix=CHECK-CLANGRT-I386 %s
|
[Driver] Register effective triple before get arm float abi.
Summary:
We need to register effective triple before calling `getARMFloatABI`.
Add missing code when `--print-libgcc-file-name` is passed.
Reviewers: atanasyan, rsmith, mgorny, peter.smith, kristof.beyls, compnerd, jroelofs
Reviewed By: compnerd
Subscribers: llvm-commits, aemerson, javed.absar, srhines, kristof.beyls, pirama
Differential Revision: https://reviews.llvm.org/D35742
llvm-svn: 311624
2017-08-24 09:51:51 +08:00
|
|
|
|
|
|
|
// 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
|