
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
13 lines
599 B
C
13 lines
599 B
C
// REQUIRES: shell-preserves-root
|
|
|
|
// RUN: touch %t.o
|
|
|
|
// RUN: %clang -target i386-unknown-linux --dyld-prefix /foo -### %t.o 2>&1 | FileCheck --check-prefix=CHECK-32 %s
|
|
// CHECK-32: "-dynamic-linker" "/foo/lib/ld-linux.so.2"
|
|
|
|
// RUN: %clang -target x86_64-unknown-linux --dyld-prefix /foo -### %t.o 2>&1 | FileCheck --check-prefix=CHECK-64 %s
|
|
// CHECK-64: "-dynamic-linker" "/foo/lib64/ld-linux-x86-64.so.2"
|
|
|
|
// RUN: %clang -target x86_64-unknown-linux-gnux32 --dyld-prefix /foo -### %t.o 2>&1 | FileCheck --check-prefix=CHECK-X32 %s
|
|
// CHECK-X32: "-dynamic-linker" "/foo/libx32/ld-linux-x32.so.2"
|