This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
fix bootstrap problem with options_.h.
- From: Geoffrey Keating <gkeating at apple dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Sat, 26 Jul 2003 00:37:34 -0700 (PDT)
- Subject: fix bootstrap problem with options_.h.
Someone deleted options_.h and didn't delete all the Makefile
references to it.
Bootstrapped & tested with --enable-intermodule on powerpc-darwin.
--
- Geoffrey Keating <geoffk@apple.com>
====================
Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/gcc/ChangeLog,v
retrieving revision 2.625
diff -u -p -u -p -r2.625 ChangeLog
--- ChangeLog 26 Jul 2003 07:34:11 -0000 2.625
+++ ChangeLog 26 Jul 2003 07:37:05 -0000
@@ -1,5 +1,8 @@
2003-07-26 Geoffrey Keating <geoffk@apple.com>
+ * Makefile.in (libbackend.o): Remove options_.h.
+ (mostlyclean): Likewise.
+
* config/rs6000/rs6000.c (rs6000_output_function_epilogue): Don't
insert a label at the end of an function under Mach-O.
Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/Makefile.in,v
retrieving revision 1.1124
diff -u -p -u -p -r1.1124 Makefile.in
--- Makefile.in 25 Jul 2003 09:52:17 -0000 1.1124
+++ Makefile.in 26 Jul 2003 07:37:05 -0000
@@ -1820,7 +1820,7 @@ mips-tdump.o : mips-tdump.c $(CONFIG_H)
# FIXME: writing proper dependencies for this is a *LOT* of work.
libbackend.o : $(OBJS-common:.o=.c) $(out_file) \
insn-config.h insn-flags.h insn-codes.h insn-constants.h \
- insn-attr.h options_.h
+ insn-attr.h
$(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
-DTARGET_NAME=\"$(target_alias)\" \
-DLOCALEDIR=\"$(localedir)\" \
@@ -2793,7 +2793,7 @@ mostlyclean: lang.mostlyclean
-rm -f xlimits.h
# Delete other built files.
-rm -f xsys-protos.hT
- -rm -f specs.h options_.h gencheck.h options.c options.h
+ -rm -f specs.h gencheck.h options.c options.h
# Delete the stamp and temporary files.
-rm -f s-* tmp-* stamp-* stmp-*
-rm -f */stamp-* */tmp-*
====================