From dfe7281fab2f209fa2015b5a21ea142bcc1ef457 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Thu, 14 Jan 2010 10:19:55 +0000 Subject: [PATCH] Use ENABLE_ASSERTIONS throughout. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93423 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/buildit/GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/buildit/GNUmakefile b/utils/buildit/GNUmakefile index 2b6edc2e007..57aac4373a5 100644 --- a/utils/buildit/GNUmakefile +++ b/utils/buildit/GNUmakefile @@ -36,7 +36,7 @@ PREFIX = /usr/local # Unless assertions are forced on in the GMAKE command line, enable them. ifndef ENABLE_ASSERTIONS -LLVM_ASSERTIONS := yes +ENABLE_ASSERTIONS := yes endif # Default is optimized build. @@ -59,7 +59,7 @@ install: $(OBJROOT) $(SYMROOT) $(DSTROOT) cd $(OBJROOT) && \ $(SRC)/utils/buildit/build_llvm "$(RC_ARCHS)" "$(TARGETS)" \ $(SRC) $(PREFIX) $(DSTROOT) $(SYMROOT) \ - $(LLVM_ASSERTIONS) $(LLVM_OPTIMIZED) \ + $(ENABLE_ASSERTIONS) $(LLVM_OPTIMIZED) \ $(RC_ProjectSourceVersion) $(RC_ProjectSourceSubversion) -- 2.34.1