mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-06-15 18:05:28 +00:00
fix build config option causing assertions to be enabled by default
This commit is contained in:
parent
a7dd11a3c3
commit
e77266aac8
7
debian/rules
vendored
7
debian/rules
vendored
@ -245,7 +245,8 @@ ifneq (,$(filter scan-build,$(DEB_BUILD_OPTIONS)))
|
|||||||
# no need to run tests in this case
|
# no need to run tests in this case
|
||||||
RUN_TEST=no
|
RUN_TEST=no
|
||||||
CONFIGURE_EXTRA += --enable-assertions
|
CONFIGURE_EXTRA += --enable-assertions
|
||||||
CMAKE_EXTRA += -DLLVM_ENABLE_ASSERTIONS=ON
|
# will also be applied to stage2 via CLANG_BOOTSTRAP_PASSTHROUGH
|
||||||
|
STAGE1_CMAKE_EXTRA += -DLLVM_ENABLE_ASSERTIONS=ON
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter coverity,$(DEB_BUILD_OPTIONS)))
|
ifneq (,$(filter coverity,$(DEB_BUILD_OPTIONS)))
|
||||||
@ -258,7 +259,8 @@ ifneq (,$(filter coverity,$(DEB_BUILD_OPTIONS)))
|
|||||||
PRE_PROCESS_CONF=
|
PRE_PROCESS_CONF=
|
||||||
COVERITY_ENABLE=1
|
COVERITY_ENABLE=1
|
||||||
CONFIGURE_EXTRA += --enable-assertions
|
CONFIGURE_EXTRA += --enable-assertions
|
||||||
CMAKE_EXTRA += -DLLVM_ENABLE_ASSERTIONS=ON
|
# will also be applied to stage2 via CLANG_BOOTSTRAP_PASSTHROUGH
|
||||||
|
STAGE1_CMAKE_EXTRA += -DLLVM_ENABLE_ASSERTIONS=ON
|
||||||
# no need to run tests in this case
|
# no need to run tests in this case
|
||||||
RUN_TEST=no
|
RUN_TEST=no
|
||||||
else
|
else
|
||||||
@ -452,7 +454,6 @@ override_dh_auto_configure: preconfigure
|
|||||||
-DLLVM_TARGETS_TO_BUILD=Native \
|
-DLLVM_TARGETS_TO_BUILD=Native \
|
||||||
-DLLVM_ENABLE_PROJECTS="$(PROJECTS_LIST)" \
|
-DLLVM_ENABLE_PROJECTS="$(PROJECTS_LIST)" \
|
||||||
-DLLVM_ENABLE_RUNTIMES="$(RUNTIMES_LIST)" \
|
-DLLVM_ENABLE_RUNTIMES="$(RUNTIMES_LIST)" \
|
||||||
-DLLVM_ENABLE_ASSERTIONS=ON \
|
|
||||||
-DLLVM_ENABLE_PIC=ON \
|
-DLLVM_ENABLE_PIC=ON \
|
||||||
-DLLVM_ENABLE_RTTI=ON \
|
-DLLVM_ENABLE_RTTI=ON \
|
||||||
-DLVVM_ENABLE_ZLIB=OFF \
|
-DLVVM_ENABLE_ZLIB=OFF \
|
||||||
|
Loading…
Reference in New Issue
Block a user