Path: utzoo!telly!ddsw1!lll-winken!killer!osu-cis!tut.cis.ohio-state.edu!maddog.llnl.gov!brooks From: brooks@maddog.llnl.gov (Eugene Brooks) Newsgroups: gnu.gcc.bug Subject: (none) Message-ID: <8812240112.AA03350@maddog.llnl.gov> Date: 24 Dec 88 01:12:46 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 26 Patch for the Makefile in GCC(1.32) to add a missing dependency. For a serial make this bug does not cause a problem, for a parallel make the rule to build loop.o can be gotten to before insn-codes.h is created in an earlier rule. Insn-codes.h is included in expr.h. That parallel GNU make (3.28) "really rips" on a Sequent! *** /tmp/,RCSt1a03334 Fri Dec 23 17:11:05 1988 --- Makefile Fri Dec 23 17:06:15 1988 *************** *** 233,239 stupid.o : stupid.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h cse.o : cse.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h ! loop.o : loop.c $(CONFIG_H) $(RTL_H) insn-config.h regs.h recog.h flags.h expr.h flow.o : flow.c $(CONFIG_H) $(RTL_H) basic-block.h regs.h hard-reg-set.h combine.o : combine.c $(CONFIG_H) $(RTL_H) flags.h \ insn-config.h regs.h basic-block.h recog.h --- 233,239 ----- stupid.o : stupid.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h cse.o : cse.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h ! loop.o : loop.c $(CONFIG_H) $(RTL_H) insn-config.h regs.h recog.h flags.h expr.h insn-codes.h flow.o : flow.c $(CONFIG_H) $(RTL_H) basic-block.h regs.h hard-reg-set.h combine.o : combine.c $(CONFIG_H) $(RTL_H) flags.h \ insn-config.h regs.h basic-block.h recog.h