From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5972 invoked by alias); 14 Jul 2005 21:58:26 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 5958 invoked by uid 22791); 14 Jul 2005 21:58:23 -0000 Received: from outbound01.telus.net (HELO priv-edtnes56.telusplanet.net) (199.185.220.220) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Thu, 14 Jul 2005 21:58:23 +0000 Received: from d207-216-225-40.bchsia.telus.net ([207.216.225.40]) by priv-edtnes56.telusplanet.net (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20050714215821.DJFI762.priv-edtnes56.telusplanet.net@d207-216-225-40.bchsia.telus.net> for ; Thu, 14 Jul 2005 15:58:21 -0600 Subject: Unable to bootstrap compiler. From: John Fitzpatrick Reply-To: fitzpat@telus.net To: gcc-help@gcc.gnu.org Content-Type: text/plain Date: Thu, 14 Jul 2005 21:58:00 -0000 Message-Id: <1121378612.10158.65.camel@mayday.fcc.com> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-SW-Source: 2005-07/txt/msg00143.txt.bz2 Hello all, I am having a problem when I try to bootstrap the compiler. Following is a typescript that demonstrates the problem. Here is some background information: Output of uname -a: Linux mayday 2.6.5-7.111-default #1 Wed Oct 13 15:45:13 UTC 2004 i686 i686 i386 GNU/Linux Output of gcc --version for version of gcc I am trying to bootstrap: gcc (GCC) 4.1.0 20050528 (experimental) Copyright (C) 2005 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Typescript showing the problem: Script started on Thu 14 Jul 2005 02:53:56 PM PDT johnfi@mayday:~/gcc> make bootstrap make[1]: Entering directory `/home/johnfi/gcc/build-i686-pc-linux-gnu/libiberty' make[2]: Entering directory `/home/johnfi/gcc/build-i686-pc-linux-gnu/libiberty/testsuite' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/johnfi/gcc/build-i686-pc-linux-gnu/libiberty/testsuite' make[1]: Leaving directory `/home/johnfi/gcc/build-i686-pc-linux-gnu/libiberty' make[1]: Entering directory `/home/johnfi/gcc/build-i686-pc-linux-gnu/fixincludes' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/home/johnfi/gcc/build-i686-pc-linux-gnu/fixincludes' make[1]: Entering directory `/home/johnfi/gcc/host-i686-pc-linux-gnu/intl' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/home/johnfi/gcc/host-i686-pc-linux-gnu/intl' make[1]: Entering directory `/home/johnfi/gcc/host-i686-pc-linux-gnu/libiberty' make[2]: Entering directory `/home/johnfi/gcc/host-i686-pc-linux-gnu/libiberty/testsuite' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/johnfi/gcc/host-i686-pc-linux-gnu/libiberty/testsuite' make[1]: Leaving directory `/home/johnfi/gcc/host-i686-pc-linux-gnu/libiberty' make[1]: Entering directory `/home/johnfi/gcc/host-i686-pc-linux-gnu/libcpp' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/home/johnfi/gcc/host-i686-pc-linux-gnu/libcpp' make[1]: Entering directory `/home/johnfi/gcc/host-i686-pc-linux-gnu/zlib' true "AR_FLAGS=rc" "CC_FOR_BUILD=gcc" "CFLAGS=-g -O2 " "CXXFLAGS=-g -O2" "CFLAGS_FOR_BUILD=" "CFLAGS_FOR_TARGET=-O2 -g -O2 " "INSTALL=/usr/bin/install -c" "INSTALL_DATA=/usr/bin/install -c -m 644" "INSTALL_PROGRAM=/usr/bin/install -c" "INSTALL_SCRIPT=/usr/bin/install -c" "LDFLAGS=" "LIBCFLAGS=-g -O2 " "LIBCFLAGS_FOR_TARGET=-O2 -g -O2 " "MAKE=make" "MAKEINFO=/home/johnfi/gcc/missing makeinfo --split-size=5000000 " "PICFLAG=" "PICFLAG_FOR_TARGET=" "SHELL=/bin/sh" "EXPECT=expect" "RUNTEST=runtest" "RUNTESTFLAGS=" "exec_prefix=/home/johnfi/devel" "infodir=/home/johnfi/devel/info" "libdir=/home/johnfi/devel/lib" "prefix=/home/johnfi/devel" "tooldir=/home/johnfi/devel/i686-pc-linux-gnu" "AR=ar" "AS=as" "CC=gcc" "CXX=c++" "LD=ld" "LIBCFLAGS=-g -O2 " "NM=nm" "PICFLAG=" "RANLIB=ranlib" "DESTDIR=" DO=all multi-do # make make[1]: Leaving directory `/home/johnfi/gcc/host-i686-pc-linux-gnu/zlib' Bootstrapping the compiler make[1]: Entering directory `/home/johnfi/gcc/gcc' make[1]: *** No rule to make target `bootstrap'. Stop. make[1]: Leaving directory `/home/johnfi/gcc/gcc' make: *** [bootstrap] Error 2 johnfi@mayday:~/gcc> Script done on Thu 14 Jul 2005 02:54:10 PM PDT Obviously the problem is that the makefile doesn't have the target "bootstrap" in it. Is this a bug? Thank you in advance for any help. Sincerely, John Fitzpatrick