mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
configure: Disable LLVM asserts by default
This commit is contained in:
parent
2cdfd372e2
commit
8545d2ce53
4
configure
vendored
4
configure
vendored
@ -533,7 +533,7 @@ opt optimize-cxx 1 "build optimized C++ code"
|
|||||||
opt optimize-llvm 1 "build optimized LLVM"
|
opt optimize-llvm 1 "build optimized LLVM"
|
||||||
opt optimize-tests 1 "build tests with optimizations"
|
opt optimize-tests 1 "build tests with optimizations"
|
||||||
opt libcpp 1 "build with llvm with libc++ instead of libstdc++ when using clang"
|
opt libcpp 1 "build with llvm with libc++ instead of libstdc++ when using clang"
|
||||||
opt llvm-assertions 1 "build LLVM with assertions"
|
opt llvm-assertions 0 "build LLVM with assertions"
|
||||||
opt debug-assertions 0 "build with debugging assertions"
|
opt debug-assertions 0 "build with debugging assertions"
|
||||||
opt fast-make 0 "use .gitmodules as timestamp for submodule deps"
|
opt fast-make 0 "use .gitmodules as timestamp for submodule deps"
|
||||||
opt ccache 0 "invoke gcc/clang via ccache to reuse object files between builds"
|
opt ccache 0 "invoke gcc/clang via ccache to reuse object files between builds"
|
||||||
@ -1170,7 +1170,7 @@ do
|
|||||||
LLVM_DBG_OPTS="--enable-optimized"
|
LLVM_DBG_OPTS="--enable-optimized"
|
||||||
LLVM_INST_DIR=$LLVM_BUILD_DIR/Release
|
LLVM_INST_DIR=$LLVM_BUILD_DIR/Release
|
||||||
fi
|
fi
|
||||||
if [ ! -z "$CFG_DISABLE_LLVM_ASSERTIONS" ]
|
if [ -z "$CFG_ENABLE_LLVM_ASSERTIONS" ]
|
||||||
then
|
then
|
||||||
LLVM_ASSERTION_OPTS="--disable-assertions"
|
LLVM_ASSERTION_OPTS="--disable-assertions"
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user