[llvm-commits] [llvm] r67833 - /llvm/trunk/Makefile.rules
Duncan Sands
baldrick at free.fr
Fri Mar 27 04:35:04 PDT 2009
Author: baldrick
Date: Fri Mar 27 06:35:00 2009
New Revision: 67833
URL: http://llvm.org/viewvc/llvm-project?rev=67833&view=rev
Log:
Revert previous change in favour of an explanatory
comment.
Modified:
llvm/trunk/Makefile.rules
Modified: llvm/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=67833&r1=67832&r2=67833&view=diff
==============================================================================
--- llvm/trunk/Makefile.rules (original)
+++ llvm/trunk/Makefile.rules Fri Mar 27 06:35:00 2009
@@ -293,7 +293,8 @@
# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
# then disable assertions by defining the appropriate preprocessor symbols.
ifdef DISABLE_ASSERTIONS
- BuildMode := $(BuildMode)-NoAsserts
+ # Indicate that assertions are turned off using a minus sign
+ BuildMode := $(BuildMode)-Asserts
CPP.Defines += -DNDEBUG
else
CPP.Defines += -D_DEBUG
More information about the llvm-commits
mailing list