From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19903 invoked by alias); 12 Aug 2002 20:40:42 -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 19896 invoked from network); 12 Aug 2002 20:40:42 -0000 Received: from unknown (HELO fencepost.gnu.org) (199.232.76.164) by sources.redhat.com with SMTP; 12 Aug 2002 20:40:42 -0000 Received: from monty-python.gnu.org ([199.232.76.173]) by fencepost.gnu.org with esmtp (Exim 3.35 #1 (Debian)) id 17eLzV-0004av-00 for ; Mon, 12 Aug 2002 16:40:41 -0400 Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 17eLzU-0000Fg-00 for gcc-help@gnu.org; Mon, 12 Aug 2002 16:40:41 -0400 Received: from multivac.student.cwru.edu ([129.22.96.25] helo=multivac.cwru.edu) by monty-python.gnu.org with smtp (Exim 4.10) id 17eLzU-0000Fa-00 for gcc-help@gnu.org; Mon, 12 Aug 2002 16:40:40 -0400 Received: (qmail 18390 invoked by uid 500); 12 Aug 2002 20:43:23 -0000 To: gcc-help@gnu.org Subject: bootstrap4 with 2.95.3 From: prj@po.cwru.edu (Paul Jarc) Organization: What did you have in mind? A short, blunt, human pyramid? Mail-Copies-To: nobody Date: Mon, 12 Aug 2002 13:40:00 -0000 Message-ID: User-Agent: Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.2 (i686-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Status: No, hits=0.4 required=5.0 tests=SUPERLONG_LINE version=2.31 X-Spam-Level: X-SW-Source: 2002-08/txt/msg00097.txt.bz2 I'm trying to build gcc 2.95.3 on a GNU/Linux machine. (I had no problem building and installing 3.1.1, but I keep 2.95.3 around for certain things like the kernel and ncurses.) When I use "make bootstrap", I get some differences in 3 object files. So started over with fresh sources and an empty build directory and tried "make bootstrap4". This gives me: [...] Bootstrapping the compiler make[1]: Entering directory `/fs/home/mount/home/prj/src/sptools/gcc-2.95.3-1-build/gcc' make CC="stage3/xgcc -Bstage3/ -B/package/host/localhost/gcc-2.95.3-1/i686-pc-linux-gnu/bin/" CFLAGS=" -g -O2 -Wl,--dynamic-linker,/package/host/localhost/gcc-2.95.3-1/conf/libc/lib/ld-linux.so.2 -Wl,-R,/package/host/localhost/gcc-2.95.3-1/conf/libc/lib -pipe" LDFLAGS="" libdir=/package/host/localhost/gcc-2.95.3-1/lib STAGE_PREFIX=stage3/ LANGUAGES="c proto gcov CHILL c++ f77 java objc" make[2]: Entering directory `/fs/home/mount/home/prj/src/sptools/gcc-2.95.3-1-build/gcc' (cd intl && make all) make[3]: Entering directory `/fs/home/mount/home/prj/src/sptools/gcc-2.95.3-1-build/gcc/intl' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/fs/home/mount/home/prj/src/sptools/gcc-2.95.3-1-build/gcc/intl' stage3/xgcc -Bstage3/ -B/package/host/localhost/gcc-2.95.3-1/i686-pc-linux-gnu/bin/ -c -DIN_GCC -g -O2 -Wl,--dynamic-linker,/package/host/localhost/gcc-2.95.3-1/conf/libc/lib/ld-linux.so.2 -Wl,-R,/package/host/localhost/gcc-2.95.3-1/conf/libc/lib -pipe -DHAVE_CONFIG_H -I/nil -I. -I../../gcc-2.95.3-1/gcc -I../../gcc-2.95.3-1/gcc/config -I../../gcc-2.95.3-1/gcc/../include \ ../../gcc-2.95.3-1/gcc/gencheck.c make[2]: stage3/xgcc: Command not found How do I build the first stages without doing a comparison, so that bootstrap4 will work? paul