missing dependency in today's snapshot

Jim Meyering meyering@ascend.com
Wed Mar 3 19:09:00 GMT 1999


Doing a parallel non-srcdir build on a dual400 PII
(make -j 3 'LANGUAGES=c c++' BOOT_CFLAGS=-O3 bootstrap-lean)
I got this error:

  ../../gcc/flow.c:133: insn-flags.h: No such file or directory
  make[1]: *** [flow.o] Error 1

Adding the missing dependency fixed it:

1999-03-03  Jim Meyering  <meyering@ascend.com>

	* Makefile.in (flow.o): Depend on insn-flags.h.

Index: Makefile.in
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/gcc/Makefile.in,v
retrieving revision 1.237
diff -u -p -r1.237 Makefile.in
--- Makefile.in	1999/03/02 09:29:22	1.237
+++ Makefile.in	1999/03/04 03:07:34
@@ -1513,7 +1513,8 @@ loop.o : loop.c $(CONFIG_H) system.h $(R
 unroll.o : unroll.c $(CONFIG_H) system.h $(RTL_H) insn-config.h \
    integrate.h $(REGS_H) $(RECOG_H) flags.h $(EXPR_H) loop.h toplev.h varray.h
 flow.o : flow.c $(CONFIG_H) system.h $(RTL_H) flags.h insn-config.h \
-   $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h recog.h
+   $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h recog.h \
+   insn-flags.h
 combine.o : combine.c $(CONFIG_H) system.h $(RTL_H) flags.h  \
    insn-config.h insn-flags.h insn-codes.h insn-attr.h $(REGS_H) $(EXPR_H) \
    $(BASIC_BLOCK_H) $(RECOG_H) real.h hard-reg-set.h toplev.h


More information about the Gcc-bugs mailing list