[llvm-commits] [llvm] r67831 - /llvm/trunk/Makefile.rules

Duncan Sands baldrick at free.fr
Fri Mar 27 02:42:33 PDT 2009


Author: baldrick
Date: Fri Mar 27 04:41:56 2009
New Revision: 67831

URL: http://llvm.org/viewvc/llvm-project?rev=67831&view=rev
Log:
A Release-Asserts build makes it sound like assertions
are turned on, while in fact they are turned off.  Name
this Release-NoAsserts instead.

Modified:
    llvm/trunk/Makefile.rules

Modified: llvm/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=67831&r1=67830&r2=67831&view=diff

==============================================================================
--- llvm/trunk/Makefile.rules (original)
+++ llvm/trunk/Makefile.rules Fri Mar 27 04:41:56 2009
@@ -293,7 +293,7 @@
 # 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)-Asserts
+  BuildMode := $(BuildMode)-NoAsserts
   CPP.Defines += -DNDEBUG
 else
   CPP.Defines += -D_DEBUG





More information about the llvm-commits mailing list