diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-09-21 13:48:59 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-09-21 07:48:59 -0600 |
commit | e36e6e0261a68862828fdd27abde3dd41191ddc0 (patch) | |
tree | 899d121947f80f93d4dae672bc6df887ca521233 | |
parent | e151ac883ea0a5a9776bbc221da1b3afc2023e92 (diff) | |
download | gcc-e36e6e0261a68862828fdd27abde3dd41191ddc0.zip gcc-e36e6e0261a68862828fdd27abde3dd41191ddc0.tar.gz gcc-e36e6e0261a68862828fdd27abde3dd41191ddc0.tar.bz2 |
Makefile.in (gc.o, gc_gc.o): Do not pass -fgnu-runtime to the compiler when building C code.
* Makefile.in (gc.o, gc_gc.o): Do not pass -fgnu-runtime to
the compiler when building C code.
From-SVN: r29543
-rw-r--r-- | libobjc/ChangeLog | 5 | ||||
-rw-r--r-- | libobjc/Makefile.in | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog index 85f90b0..b292188 100644 --- a/libobjc/ChangeLog +++ b/libobjc/ChangeLog @@ -1,3 +1,8 @@ +Tue Sep 21 07:47:10 1999 Jeffrey A Law (law@cygnus.com) + + * Makefile.in (gc.o, gc_gc.o): Do not pass -fgnu-runtime to + the compiler when building C code. + Fri Aug 6 23:32:29 1999 Daniel Jacobowitz <drow@drow.them.org> * Makefile.in (FLAGS_TO_PASS): Include prefix, exec_prefix, diff --git a/libobjc/Makefile.in b/libobjc/Makefile.in index 14d70c1..ca846c7 100644 --- a/libobjc/Makefile.in +++ b/libobjc/Makefile.in @@ -147,10 +147,10 @@ encoding_gc.o: encoding.c $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) $(INCLUDES) $< gc.o: gc.c - $(CC) -fgnu-runtime -c -o $@ $(ALL_CFLAGS) $(INCLUDES) $< + $(CC) -c -o $@ $(ALL_CFLAGS) $(INCLUDES) $< gc_gc.o: gc.c - $(CC) -fgnu-runtime -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \ + $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \ $(INCLUDES) $< hash_gc.o: hash.c |