diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-26 14:27:33 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-26 14:27:33 +0000 |
commit | 7f0dae42e1e3b6b5d12f340842eb8477ced6887f (patch) | |
tree | 66e7ece37d4f807569dcb1cffb5e42711da37e1d /libobjc | |
parent | 23943319f9a7d31a2e6572055b138934fc38c4fd (diff) | |
download | gcc-7f0dae42e1e3b6b5d12f340842eb8477ced6887f.tar.gz |
2005-07-26 Andrew Pinski <pinskia@physics.uc.edu>
PR libobjc/22606
* Makefile.in (ALL_CFLAGS): Add -fexceptions.
2005-07-26 Andrew Pinski <pinskia@physics.uc.edu>
PR libobjc/22606
* objc.dg/try-catch-11.m: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102386 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libobjc')
-rw-r--r-- | libobjc/ChangeLog | 5 | ||||
-rw-r--r-- | libobjc/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog index 0fa3b08f16f..4456989fafd 100644 --- a/libobjc/ChangeLog +++ b/libobjc/ChangeLog @@ -1,3 +1,8 @@ +2005-07-26 Andrew Pinski <pinskia@physics.uc.edu> + + PR libobjc/22606 + * Makefile.in (ALL_CFLAGS): Add -fexceptions. + 2005-06-08 David Ayers <d.ayers@inode.at> * objc/NXConstStr.h, objc/Object.h, objc/Protocol.h, diff --git a/libobjc/Makefile.in b/libobjc/Makefile.in index 44e3dd71f95..4dd1f9d3f5e 100644 --- a/libobjc/Makefile.in +++ b/libobjc/Makefile.in @@ -73,7 +73,7 @@ CC = @CC@ CFLAGS = @CFLAGS@ WARN_CFLAGS = -W -Wall -Wwrite-strings -Wstrict-prototypes ALL_CFLAGS = -I. -I$(srcdir) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(WARN_CFLAGS) \ - -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing + -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions # Libtool # The following strings describe the version of the obj-C library |