diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index df84522..8c1f9b6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-07-08 Andrew Pinski <apinski@apple.com> + + * Makefile.in (libbackend.o): Add -combine to the gcc + command line. + 2004-07-08 Nick Clifton <nickc@redhat.com> * config/stormy16/t-stormy16 (TARGET_LIBGCC2_CFLAGS): Define. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index bc64b37..e7d0ffd 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2130,7 +2130,7 @@ libbackend.o : $(OBJS-common:.o=.c) $(out_file) \ $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \ -DTARGET_NAME=\"$(target_noncanonical)\" \ -DLOCALEDIR=\"$(localedir)\" \ - -c $(filter %.c,$^) -o $@ + -c $(filter %.c,$^) -o $@ -combine # # Generate header and source files from the machine description, |