forked from OSchip/llvm-project
Fix linux-header-search.cpp with CLANG_DEFAULT_CXX_STDLIB
This configuration was broken after r338294 because Clang might be configured to always use libc++. llvm-svn: 338360
This commit is contained in:
parent
e564055671
commit
85673b083a
|
@ -496,7 +496,7 @@
|
|||
|
||||
// Check header search on OpenEmbedded ARM.
|
||||
// RUN: %clang -no-canonical-prefixes %s -### -fsyntax-only 2>&1 \
|
||||
// RUN: -target arm-oe-linux-gnueabi \
|
||||
// RUN: -target arm-oe-linux-gnueabi -stdlib=libstdc++ \
|
||||
// RUN: --sysroot=%S/Inputs/openembedded_arm_linux_tree \
|
||||
// RUN: | FileCheck --check-prefix=CHECK-OE-ARM %s
|
||||
|
||||
|
@ -507,7 +507,7 @@
|
|||
|
||||
// Check header search on OpenEmbedded AArch64.
|
||||
// RUN: %clang -no-canonical-prefixes %s -### -fsyntax-only 2>&1 \
|
||||
// RUN: -target aarch64-oe-linux \
|
||||
// RUN: -target aarch64-oe-linux -stdlib=libstdc++ \
|
||||
// RUN: --sysroot=%S/Inputs/openembedded_aarch64_linux_tree \
|
||||
// RUN: | FileCheck --check-prefix=CHECK-OE-AARCH64 %s
|
||||
|
||||
|
|
Loading…
Reference in New Issue