diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-08-25 20:56:59 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-08-25 20:56:59 +0000 |
commit | dcea1400738e85a5cddbf91093983c593c323a19 (patch) | |
tree | 808093722b475d5bf3388377028147f18666ff85 | |
parent | 99655e16a6b0eafc8e18e73efe3ab27d2faf0a4a (diff) |
Doh! Commit the change that turns ON -fno-exceptions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29883 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Makefile.rules | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.rules b/Makefile.rules index 88fa992c51..8c595c289f 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -239,9 +239,9 @@ else endif # IF REQUIRES_EH=1 is specified then don't disable exceptions -#ifndef REQUIRES_EH -# CXX.Flags += -fno-exceptions -#endif +ifndef REQUIRES_EH + CXX.Flags += -fno-exceptions +endif # If DISABLE_ASSERTIONS=1 is specified (make command line or configured), # then disable assertions by defining the appropriate preprocessor symbols. |