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 | 0b6396c6b32e5030d01fea70db0a2b1b01b76ae7 (patch) | |
tree | 113f2d2f22690363b86bb26226c94d6c845e4cb9 | |
parent | 51e6f68b4713648d16245a5292fc3c86db69e272 (diff) | |
download | bcm5719-llvm-0b6396c6b32e5030d01fea70db0a2b1b01b76ae7.tar.gz bcm5719-llvm-0b6396c6b32e5030d01fea70db0a2b1b01b76ae7.zip |
Doh! Commit the change that turns ON -fno-exceptions.
llvm-svn: 29883
-rw-r--r-- | llvm/Makefile.rules | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/Makefile.rules b/llvm/Makefile.rules index 88fa992c511..8c595c289f7 100644 --- a/llvm/Makefile.rules +++ b/llvm/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. |