This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] fix parallel bootstrap error of vec.o


Hi,

I will commit the attached patch soon to fix a parallel bootstrap error with vec.o. Under the obvious rule :)

Already agreed by nathan.

Andreas


2004-06-28 Andreas Tobler <a.tobler@schweiz.ch>


* Makefile.in: Fix parallel make dependency problem on vec.o



Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/Makefile.in,v
retrieving revision 1.1307
diff -u -r1.1307 Makefile.in
--- Makefile.in 28 Jun 2004 10:30:14 -0000 1.1307
+++ Makefile.in 28 Jun 2004 18:00:49 -0000
@@ -1990,7 +1990,7 @@
toplev.h $(TM_P_H)
varray.o : varray.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) varray.h $(GGC_H) errors.h \
$(HASHTAB_H)
-vec.o : vec.c $(CONFIG_H) coretypes.h vec.h ggc.h errors.h
+vec.o : vec.c $(CONFIG_H) coretypes.h vec.h $(GGC_H) errors.h
ra.o : ra.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TM_P_H) insn-config.h \
$(RECOG_H) $(INTEGRATE_H) function.h $(REGS_H) $(OBSTACK_H) hard-reg-set.h \
$(BASIC_BLOCK_H) $(DF_H) $(EXPR_H) output.h toplev.h $(FLAGS_H) reload.h $(RA_H)



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]