[llvm-commits] [llvm] r93380 - /llvm/trunk/utils/buildit/GNUmakefile

Stuart Hastings stuart at apple.com
Wed Jan 13 16:22:05 PST 2010


Author: stuart
Date: Wed Jan 13 18:22:05 2010
New Revision: 93380

URL: http://llvm.org/viewvc/llvm-project?rev=93380&view=rev
Log:
Enable assertions by default for Apple-style builds.

Modified:
    llvm/trunk/utils/buildit/GNUmakefile

Modified: llvm/trunk/utils/buildit/GNUmakefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/buildit/GNUmakefile?rev=93380&r1=93379&r2=93380&view=diff

==============================================================================
--- llvm/trunk/utils/buildit/GNUmakefile (original)
+++ llvm/trunk/utils/buildit/GNUmakefile Wed Jan 13 18:22:05 2010
@@ -34,8 +34,8 @@
 
 PREFIX = /usr/local
 
-# Unless assertions are forced on in the GMAKE command line, disable them.
-ifdef ENABLE_ASSERTIONS
+# Unless assertions are forced on in the GMAKE command line, enable them.
+ifndef ENABLE_ASSERTIONS
 LLVM_ASSERTIONS := yes
 else
 LLVM_ASSERTIONS := no





More information about the llvm-commits mailing list