diff options
author | Bernhard Fischer <aldot@gcc.gnu.org> | 2007-08-26 00:10:28 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2007-08-26 00:10:28 +0200 |
commit | e9694240baf3c1747e2827ec19599a453cf32463 (patch) | |
tree | 1cb505ae9a02f16892fb1ae211cf58191e14995a /gcc/Makefile.in | |
parent | 303a4698dead718f4c511625fa34320b50f7ce9a (diff) | |
download | gcc-e9694240baf3c1747e2827ec19599a453cf32463.zip gcc-e9694240baf3c1747e2827ec19599a453cf32463.tar.gz gcc-e9694240baf3c1747e2827ec19599a453cf32463.tar.bz2 |
re PR bootstrap/30620 (missing dependencies of gcov-io.h breaks --enable-intermodule build)
2007-08-26 Bernhard Fischer <aldot@gcc.gnu.org>
PR bootstrap/30620
* Makefile.in (libbackend.o): Add gcov-iov.h dependency and
pass defines needed for version.c.
From-SVN: r127802
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 9e78d35..ad6dd0e 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2880,13 +2880,15 @@ mips-tdump.o : mips-tdump.c $(CONFIG_H) $(RTL_H) $(SYSTEM_H) coretypes.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 $(DATESTAMP) $(BASEVER) $(DEVPHASE) + insn-attr.h $(DATESTAMP) $(BASEVER) $(DEVPHASE) gcov-iov.h $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) \ -DTARGET_NAME=\"$(target_noncanonical)\" \ -DLOCALEDIR=\"$(localedir)\" \ -c $(filter %.c,$^) -o $@ \ -DBASEVER=$(BASEVER_s) -DDATESTAMP=$(DATESTAMP_s) \ - -DDEVPHASE=$(DEVPHASE_s) -combine + -DREVISION=$(REVISION_s) \ + -DDEVPHASE=$(DEVPHASE_s) -DPKGVERSION=$(PKGVERSION_s) \ + -DBUGURL=$(BUGURL_s) -combine # # Generate header and source files from the machine description, |