diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-03-03 01:13:55 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-03-03 01:13:55 +0000 |
commit | c9701f3637441eb7512af826afbe1ecdcfc9a826 (patch) | |
tree | 5ca226388f5396cb7101a95cf7f81b564d49e064 /utils | |
parent | 0129bca0bce1634150bc14700f8d1b4e750919e9 (diff) | |
download | external_llvm-c9701f3637441eb7512af826afbe1ecdcfc9a826.zip external_llvm-c9701f3637441eb7512af826afbe1ecdcfc9a826.tar.gz external_llvm-c9701f3637441eb7512af826afbe1ecdcfc9a826.tar.bz2 |
Don't turn assertions on by default.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97623 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/buildit/GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/buildit/GNUmakefile b/utils/buildit/GNUmakefile index 57aac43..83ce64e 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 -ENABLE_ASSERTIONS := yes +ENABLE_ASSERTIONS := no endif # Default is optimized build. |