2018-10-12 00:13:44 +08:00
|
|
|
// RUN: %clangxx %s -### -o %t.o -target amd64-pc-openbsd 2>&1 \
|
|
|
|
// RUN: | FileCheck --check-prefix=CHECK-CXX %s
|
|
|
|
// RUN: %clangxx %s -### -o %t.o -target i686-pc-openbsd 2>&1 \
|
|
|
|
// RUN: | FileCheck --check-prefix=CHECK-CXX %s
|
|
|
|
// RUN: %clangxx %s -### -o %t.o -target aarch64-unknown-openbsd 2>&1 \
|
|
|
|
// RUN: | FileCheck --check-prefix=CHECK-CXX %s
|
|
|
|
// RUN: %clangxx %s -### -o %t.o -target arm-unknown-openbsd 2>&1 \
|
|
|
|
// RUN: | FileCheck --check-prefix=CHECK-CXX %s
|
2021-02-21 09:43:16 +08:00
|
|
|
// CHECK-CXX: "-lc++" "-lc++abi" "-lpthread" "-lm"
|
2018-10-12 00:13:44 +08:00
|
|
|
|
|
|
|
// RUN: %clangxx %s -### -pg -o %t.o -target amd64-pc-openbsd 2>&1 \
|
|
|
|
// RUN: | FileCheck --check-prefix=CHECK-PG-CXX %s
|
|
|
|
// RUN: %clangxx %s -### -pg -o %t.o -target i686-pc-openbsd 2>&1 \
|
|
|
|
// RUN: | FileCheck --check-prefix=CHECK-PG-CXX %s
|
|
|
|
// RUN: %clangxx %s -### -pg -o %t.o -target aarch64-unknown-openbsd 2>&1 \
|
|
|
|
// RUN: | FileCheck --check-prefix=CHECK-PG-CXX %s
|
|
|
|
// RUN: %clangxx %s -### -pg -o %t.o -target arm-unknown-openbsd 2>&1 \
|
|
|
|
// RUN: | FileCheck --check-prefix=CHECK-PG-CXX %s
|
2021-02-21 09:43:16 +08:00
|
|
|
// CHECK-PG-CXX: "-lc++_p" "-lc++abi_p" "-lpthread_p" "-lm_p"
|