You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
645 B
18 lines
645 B
// RUN: %clang -no-canonical-prefixes -target x86_64-unknown-ananas -static %s \
|
|
// RUN: --sysroot=%S/Inputs/ananas-tree -### 2>&1 \
|
|
// RUN: | FileCheck --check-prefix=CHECK-STATIC %s
|
|
// CHECK-STATIC: ld{{.*}}" "-Bstatic"
|
|
// CHECK-STATIC: crt0.o
|
|
// CHECK-STATIC: crti.o
|
|
// CHECK-STATIC: crtbegin.o
|
|
// CHECK-STATIC: crtend.o
|
|
// CHECK-STATIC: crtn.o
|
|
|
|
// RUN: %clang -no-canonical-prefixes -target x86_64-unknown-ananas -shared %s \
|
|
// RUN: --sysroot=%S/Inputs/ananas-tree -### 2>&1 \
|
|
// RUN: | FileCheck --check-prefix=CHECK-SHARED %s
|
|
// CHECK-SHARED: crti.o
|
|
// CHECK-SHARED: crtbeginS.o
|
|
// CHECK-SHARED: crtendS.o
|
|
// CHECK-SHARED: crtn.o
|