This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Missing dependency for tradcpp
- To: "'gcc-bugs at gcc dot gnu dot org'" <gcc-bugs at gcc dot gnu dot org>
- Subject: Missing dependency for tradcpp
- From: "Billinghurst, David (CRTS)" <David dot Billinghurst at riotinto dot com dot au>
- Date: Tue, 18 Jul 2000 03:05:40 -0000
Build of 20000717 snapshot fails on mips-sgi-irix6.5 as tradcpp is linked
before intl.o is built (This is a 4-way parallel build).
Problem seems to be a missing dependency in gcc/Makefile. Something like
the following is required. Not tested yet.
--- gcc/Makefile.in.0 Tue Jul 18 10:11:11 2000
+++ gcc/Makefile.in Tue Jul 18 12:58:23 2000
@@ -1821,7 +1821,7 @@
# The traditional mode preprocessor, a separate program for ease of
# maintenance. Some code is shared with the ISO-C cpp.
-tradcpp$(exeext): tradcpp.o tradcif.o cppdefault.o $(LIBDEPS)
+tradcpp$(exeext): tradcpp.o tradcif.o cppdefault.o version.o intl.o
$(LIBDEPS)
$(CC) $(ALL_CFLAGS) $(LDFLAGS) -o tradcpp$(exeext) \
tradcpp.o tradcif.o cppdefault.o version.o intl.o $(LIBS)