[llvm-commits] CVS: llvm/Makefile.rules
Reid Spencer
reid at x10sys.com
Fri Aug 25 13:57:13 PDT 2006
Changes in directory llvm:
Makefile.rules updated: 1.397 -> 1.398
---
Log message:
Doh! Commit the change that turns ON -fno-exceptions.
---
Diffs of the changes: (+3 -3)
Makefile.rules | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.397 llvm/Makefile.rules:1.398
--- llvm/Makefile.rules:1.397 Fri Aug 25 14:54:53 2006
+++ llvm/Makefile.rules Fri Aug 25 15:56:59 2006
@@ -239,9 +239,9 @@
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.
More information about the llvm-commits
mailing list