mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-15 20:51:35 +00:00
099541907f
Also introduce -stdlib=platform to override the configured value and use it to make the tests always pass. Differential Revision: http://reviews.llvm.org/D17286 llvm-svn: 263434
14 lines
713 B
C++
14 lines
713 B
C++
// RUN: %clangxx %s -### -o %t.o -target amd64-unknown-freebsd10.0 -stdlib=platform 2>&1 \
|
|
// RUN: | FileCheck --check-prefix=CHECK-TEN %s
|
|
// RUN: %clangxx %s -### -o %t.o -target amd64-unknown-freebsd9.2 -stdlib=platform 2>&1 \
|
|
// RUN: | FileCheck --check-prefix=CHECK-NINE %s
|
|
// CHECK-TEN: "-lc++" "-lm"
|
|
// CHECK-NINE: "-lstdc++" "-lm"
|
|
|
|
// RUN: %clangxx %s -### -pg -o %t.o -target amd64-unknown-freebsd10.0 -stdlib=platform 2>&1 \
|
|
// RUN: | FileCheck --check-prefix=CHECK-PG-TEN %s
|
|
// RUN: %clangxx %s -### -pg -o %t.o -target amd64-unknown-freebsd9.2 -stdlib=platform 2>&1 \
|
|
// RUN: | FileCheck --check-prefix=CHECK-PG-NINE %s
|
|
// CHECK-PG-TEN: "-lc++_p" "-lm_p"
|
|
// CHECK-PG-NINE: "-lstdc++_p" "-lm_p"
|