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]

gcc/Makefile fix: predict.o and make -j


predict.o seems to need insn-codes.h as well as expr.h:

In file included from ../../gcc/predict.c:48:
../../gcc/expr.h:270: insn-codes.h: No such file or directory

So I suggest the following fix:

	* gcc/Makefile: predict.o depends on $(EXPR_H), not just expr.h

===================================================================
RCS file: RCS/Makefile,v
retrieving revision 1.1
diff -c -r1.1 Makefile
*** Makefile    2000/01/18 17:55:01     1.1
--- Makefile    2000/01/18 17:56:16
***************
*** 3027,3033 ****
  dyn-string.o: dyn-string.c dyn-string.h $(CONFIG_H) system.h
  predict.o: predict.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
     insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h \
!    $(RECOG_H) insn-flags.h function.h except.h expr.h
  lists.o: lists.c $(CONFIG_H) system.h toplev.h $(RTL_H) ggc.h
  
  $(out_object_file): $(out_file) $(CONFIG_H) $(TREE_H) ggc.h \
--- 3027,3033 ----
  dyn-string.o: dyn-string.c dyn-string.h $(CONFIG_H) system.h
  predict.o: predict.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
     insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h \
!    $(RECOG_H) insn-flags.h function.h except.h $(EXPR_H)
  lists.o: lists.c $(CONFIG_H) system.h toplev.h $(RTL_H) ggc.h
  
  $(out_object_file): $(out_file) $(CONFIG_H) $(TREE_H) ggc.h \

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