This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug bootstrap/11043] make -j2 fails due to missing rules
- From: "dhazeghi at yahoo dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 9 Jul 2003 14:46:46 -0000
- Subject: [Bug bootstrap/11043] make -j2 fails due to missing rules
- References: <20030531055135.11043.dhazeghi@yahoo.com>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11043
dhazeghi at yahoo dot com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |build
------- Additional Comments From dhazeghi at yahoo dot com 2003-07-09 14:46 -------
With -j1 (and without patch), it dies after building cc1 (on crtinit.o):
mkinstalldirs='/bin/sh ../../gcc/gcc/mkinstalldirs' \
/bin/sh mklibgcc > tmp-libgcc.mk
mv tmp-libgcc.mk libgcc.mk
make[1]: *** No rule to make target `crtinit.o', needed by `stmp-multilib'. Stop.
make[1]: Leaving directory `/home/dara/mainline/objdir/gcc'
make: *** [all-gcc] Error 2
With -j2 (and without patch, it dies long before then, after building libiberty:
TARGET_CPU_DEFAULT="" \
HEADERS="ansidecl.h " DEFINES="" \
/bin/sh ../../gcc/gcc/mkconfig.sh tconfig.h
make[1]: *** No rule to make target `crtinit.o', needed by `stmp-multilib'. Stop.
make[1]: *** Waiting for unfinished jobs....
The actual error was the same though. Nathaniel, with your patch I can do a full (c-language only
build) including crtinit.o and crtfini.o. Thanks!