We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cb3c4f9 + 3b56724 commit d35a380Copy full SHA for d35a380
configure
@@ -406,7 +406,7 @@ opt optimize 1 "build optimized rust code"
406
opt optimize-cxx 1 "build optimized C++ code"
407
opt optimize-llvm 1 "build optimized LLVM"
408
opt optimize-tests 1 "build tests with optimizations"
409
-opt libcpp 1 "build with clang's libcpp"
+opt libcpp 1 "build with llvm with libc++ instead of libstdc++ when using clang"
410
opt llvm-assertions 1 "build LLVM with assertions"
411
opt debug 1 "build with extra debug fun"
412
opt ratchet-bench 0 "ratchet benchmarks"
@@ -1136,7 +1136,7 @@ do
1136
CXXFLAGS=$LLVM_CXXFLAGS
1137
LDFLAGS=$LLVM_LDFLAGS
1138
1139
- if [ "$CFG_DISABLE_LIBCPP" != 1 ]; then
+ if [ "$CFG_DISABLE_LIBCPP" != 1 ] && [ "$CFG_USING_CLANG" == 1 ]; then
1140
LLVM_OPTS="$LLVM_OPTS --enable-libcpp"
1141
fi
1142
0 commit comments