diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-01-14 10:19:55 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-01-14 10:19:55 +0000 |
commit | dfe7281fab2f209fa2015b5a21ea142bcc1ef457 (patch) | |
tree | 73754387678082e0d263e17414c95242750c143b /utils/buildit | |
parent | ff00a555171cac0a77c0434fd85ff5a0ae672ade (diff) |
Use ENABLE_ASSERTIONS throughout.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93423 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/buildit')
-rw-r--r-- | utils/buildit/GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/buildit/GNUmakefile b/utils/buildit/GNUmakefile index 2b6edc2e00..57aac4373a 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) |