mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-21 22:34:05 +00:00
configure: Rename --enable-debug to --enable-debug-assertions
This commit is contained in:
parent
bc9f16c599
commit
ed8eebd99b
4
configure
vendored
4
configure
vendored
@ -1,4 +1,4 @@
|
|||||||
<#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
msg() {
|
msg() {
|
||||||
echo "configure: $1"
|
echo "configure: $1"
|
||||||
@ -534,7 +534,7 @@ 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 1 "build LLVM with assertions"
|
||||||
opt debug 1 "build with extra debug fun"
|
opt debug-assertions 1 "build with extra debug fun"
|
||||||
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"
|
||||||
opt local-rust 0 "use an installed rustc rather than downloading a snapshot"
|
opt local-rust 0 "use an installed rustc rather than downloading a snapshot"
|
||||||
|
@ -126,10 +126,10 @@ endif
|
|||||||
|
|
||||||
CFG_JEMALLOC_FLAGS += $(JEMALLOC_FLAGS)
|
CFG_JEMALLOC_FLAGS += $(JEMALLOC_FLAGS)
|
||||||
|
|
||||||
ifdef CFG_DISABLE_DEBUG
|
ifdef CFG_DISABLE_DEBUG_ASSERTIONS
|
||||||
CFG_RUSTC_FLAGS += --cfg ndebug
|
CFG_RUSTC_FLAGS += --cfg ndebug
|
||||||
else
|
else
|
||||||
$(info cfg: enabling more debugging (CFG_ENABLE_DEBUG))
|
$(info cfg: enabling more debugging (CFG_ENABLE_DEBUG_ASSERTIONS))
|
||||||
CFG_RUSTC_FLAGS += --cfg debug -C debug-assertions=on
|
CFG_RUSTC_FLAGS += --cfg debug -C debug-assertions=on
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user