diff options
author | Jiangning Liu <jiangning.liu@arm.com> | 2012-07-30 11:05:56 +0000 |
---|---|---|
committer | Jiangning Liu <jiangning.liu@arm.com> | 2012-07-30 11:05:56 +0000 |
commit | eabbf92223759e69907b5ad31ff57095ee439db8 (patch) | |
tree | 54b5af701c2d53bc56df7024015771efba90077a /clang/test/Driver/linux-ld.c | |
parent | 36d2dff143af524527160cea32b6255fe6f04842 (diff) | |
download | bcm5719-llvm-eabbf92223759e69907b5ad31ff57095ee439db8.tar.gz bcm5719-llvm-eabbf92223759e69907b5ad31ff57095ee439db8.zip |
Fix dynamic object linker for ARM GNUEABIHF.
llvm-svn: 160958
Diffstat (limited to 'clang/test/Driver/linux-ld.c')
-rw-r--r-- | clang/test/Driver/linux-ld.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/clang/test/Driver/linux-ld.c b/clang/test/Driver/linux-ld.c index a9decfdf4ea..cf219105d2e 100644 --- a/clang/test/Driver/linux-ld.c +++ b/clang/test/Driver/linux-ld.c @@ -186,6 +186,21 @@ // CHECK-SUSE-10-3-PPC64: "-L[[SYSROOT]]/lib/../lib64" // CHECK-SUSE-10-3-PPC64: "-L[[SYSROOT]]/usr/lib/../lib64" // +// Check dynamic-linker for different archs +// RUN: %clang %s -### -o %t.o 2>&1 \ +// RUN: -target arm-linux-gnueabi \ +// RUN: | FileCheck --check-prefix=CHECK-ARM %s +// CHECK-ARM: "{{.*}}ld{{(.exe)?}}" +// CHECK-ARM: "-m" "armelf_linux_eabi" +// CHECK-ARM: "-dynamic-linker" "{{.*}}/lib/ld-linux.so.3" +// +// RUN: %clang %s -### -o %t.o 2>&1 \ +// RUN: -target arm-linux-gnueabihf \ +// RUN: | FileCheck --check-prefix=CHECK-ARM-HF %s +// CHECK-ARM-HF: "{{.*}}ld{{(.exe)?}}" +// CHECK-ARM-HF: "-m" "armelf_linux_eabi" +// CHECK-ARM-HF: "-dynamic-linker" "{{.*}}/lib/ld-linux-armhf.so.3" +// // Check that we do not pass --hash-style=gnu and --hash-style=both to linker // and provide correct path to the dynamic linker and emulation mode when build // for MIPS platforms. |