Doh! Commit the change that turns ON -fno-exceptions.
authorReid Spencer <rspencer@reidspencer.com>
Fri, 25 Aug 2006 20:56:59 +0000 (20:56 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Fri, 25 Aug 2006 20:56:59 +0000 (20:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29883 91177308-0d34-0410-b5e6-96231b3b80d8

Makefile.rules

index 88fa992c51178cc28c08c46eb5eed16c19617362..8c595c289f70966bce005ff5ad7ee1086341e8c5 100644 (file)
@@ -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.