From: Duncan Sands Date: Fri, 27 Mar 2009 09:41:56 +0000 (+0000) Subject: A Release-Asserts build makes it sound like assertions X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f89c269484c8c8c877383a26cf7c471ec9be405b;p=oota-llvm.git A Release-Asserts build makes it sound like assertions are turned on, while in fact they are turned off. Name this Release-NoAsserts instead. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67831 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Makefile.rules b/Makefile.rules index a17f3b1d0b1..22056f7b18c 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -293,7 +293,7 @@ endif # 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