From 3b56724c217612b4adc64a59dca9b1fd8cff081d Mon Sep 17 00:00:00 2001 From: Luqman Aden Date: Wed, 28 May 2014 17:04:14 -0700 Subject: [PATCH] Don't enable libcpp for llvm by default. --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index f42eae6eb6ff2..38cf29652e599 100755 --- a/configure +++ b/configure @@ -406,7 +406,7 @@ opt optimize 1 "build optimized rust code" opt optimize-cxx 1 "build optimized C++ code" opt optimize-llvm 1 "build optimized LLVM" opt optimize-tests 1 "build tests with optimizations" -opt libcpp 1 "build with clang's libcpp" +opt libcpp 1 "build with llvm with libc++ instead of libstdc++ when using clang" opt llvm-assertions 1 "build LLVM with assertions" opt debug 1 "build with extra debug fun" opt ratchet-bench 0 "ratchet benchmarks" @@ -1136,7 +1136,7 @@ do CXXFLAGS=$LLVM_CXXFLAGS LDFLAGS=$LLVM_LDFLAGS - if [ "$CFG_DISABLE_LIBCPP" != 1 ]; then + if [ "$CFG_DISABLE_LIBCPP" != 1 ] && [ "$CFG_USING_CLANG" == 1 ]; then LLVM_OPTS="$LLVM_OPTS --enable-libcpp" fi