From 59b5ea57c3a30f25660d4d4e065528cf82739f9c Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Sun, 1 Nov 2015 21:14:22 +0000 Subject: [PATCH] Add 'nostdinc++' to the flags used by testit. Makes the tests run better on Mac OS X with the new depr.c headers change git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@251768 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/testit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testit b/test/testit index 821292efb..cac668497 100755 --- a/test/testit +++ b/test/testit @@ -42,7 +42,7 @@ then fi if [ -z "$OPTIONS" ] then - OPTIONS="-std=${CXX_LANG} -stdlib=libc++" + OPTIONS="-std=${CXX_LANG} -stdlib=libc++ -nostdinc++" fi OPTIONS="$OPTIONS -I$LIBCXX_ROOT/test/support"