aboutsummaryrefslogtreecommitdiff
path: root/Makefile.config.in
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-04-09 20:42:14 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-04-09 20:42:14 +0000
commitc28ccd86b574cdcde54fa68f2f28e18f4b49498e (patch)
tree271e6278a89c105ad4d7e48e57a4470b25310c36 /Makefile.config.in
parent3df241e4b2b93329fdeea16a4eb366347442f99f (diff)
Change the assertions defaults:
1. Assertions now default to on for all builds 2. If you want them disabled you must (a) --disable-assertions to configure or DISABLE_ASSERTIONS=1 to make. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27548 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.config.in')
-rw-r--r--Makefile.config.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.config.in b/Makefile.config.in
index fbb3475605..8d25a73684 100644
--- a/Makefile.config.in
+++ b/Makefile.config.in
@@ -186,8 +186,8 @@ OBJ_ROOT := .
# When ENABLE_ASSERTIONS is enabled, builds of all of the LLVM code will include
# assertion checks, otherwise they are not included.
-#ENABLE_ASSERTIONS = 1
-@ENABLE_ASSERTIONS@
+#DISABLE_ASSERTIONS = 1
+@DISABLE_ASSERTIONS@
# When DEBUG_RUNTIME is enabled, the runtime libraries will retain debug
# symbols.