mirror of git://gcc.gnu.org/git/gcc.git
Tidied up/fixed compilation of exception.c
From-SVN: r83399
This commit is contained in:
parent
7c34ced1a2
commit
5520b936c8
|
|
@ -1,3 +1,9 @@
|
||||||
|
2004-06-20 Alexander Malmberg <alexander@malmberg.org>
|
||||||
|
|
||||||
|
* Makefile.in (exception.lo): Remove $(OBJC_GCFLAGS).
|
||||||
|
(exception_gc.lo): New.
|
||||||
|
(OBJS_GC): Add exception_gc.lo.
|
||||||
|
|
||||||
2004-06-17 Richard Henderson <rth@redhat.com>
|
2004-06-17 Richard Henderson <rth@redhat.com>
|
||||||
|
|
||||||
* exception.c: New file.
|
* exception.c: New file.
|
||||||
|
|
|
||||||
|
|
@ -151,7 +151,7 @@ OBJS_GC = archive_gc.lo class_gc.lo encoding_gc.lo gc_gc.lo hash_gc.lo \
|
||||||
init_gc.lo linking_gc.lo misc_gc.lo nil_method_gc.lo \
|
init_gc.lo linking_gc.lo misc_gc.lo nil_method_gc.lo \
|
||||||
NXConstStr_gc.lo Object_gc.lo objects_gc.lo Protocol_gc.lo \
|
NXConstStr_gc.lo Object_gc.lo objects_gc.lo Protocol_gc.lo \
|
||||||
sarray_gc.lo selector_gc.lo sendmsg_gc.lo thr_gc.lo \
|
sarray_gc.lo selector_gc.lo sendmsg_gc.lo thr_gc.lo \
|
||||||
$(OBJC_THREAD_FILE)_gc.lo
|
$(OBJC_THREAD_FILE)_gc.lo exception_gc.lo
|
||||||
|
|
||||||
runtime-info.h:
|
runtime-info.h:
|
||||||
echo "" > tmp-runtime.m
|
echo "" > tmp-runtime.m
|
||||||
|
|
@ -254,6 +254,10 @@ $(OBJC_THREAD_FILE)_gc.lo: $(OBJC_THREAD_FILE).c
|
||||||
$(INCLUDES) $<
|
$(INCLUDES) $<
|
||||||
|
|
||||||
exception.lo: exception.c
|
exception.lo: exception.c
|
||||||
|
$(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) \
|
||||||
|
-fexceptions $(INCLUDES) $<
|
||||||
|
|
||||||
|
exception_gc.lo: exception.c
|
||||||
$(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
|
$(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
|
||||||
-fexceptions $(INCLUDES) $<
|
-fexceptions $(INCLUDES) $<
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue