From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28971 invoked by alias); 24 Oct 2002 21:53:51 -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 28894 invoked from network); 24 Oct 2002 21:53:51 -0000 Received: from unknown (HELO igw3.watson.ibm.com) (198.81.209.18) by sources.redhat.com with SMTP; 24 Oct 2002 21:53:51 -0000 Received: from sp1n293en1.watson.ibm.com (sp1n293en1.watson.ibm.com [9.2.112.57]) by igw3.watson.ibm.com (8.11.4/8.11.4) with ESMTP id g9OLrn425866; Thu, 24 Oct 2002 17:53:49 -0400 Received: from makai.watson.ibm.com (makai.watson.ibm.com [9.2.216.144]) by sp1n293en1.watson.ibm.com (8.11.4/8.11.4) with ESMTP id g9OLrnV45046; Thu, 24 Oct 2002 17:53:49 -0400 Received: from watson.ibm.com (localhost [127.0.0.1]) by makai.watson.ibm.com (AIX4.3/8.9.3/8.9.3/09-18-2002) with ESMTP id RAA26302; Thu, 24 Oct 2002 17:53:48 -0400 Message-Id: <200210242153.RAA26302@makai.watson.ibm.com> To: "cjs 2895" cc: gcc-help@gcc.gnu.org Subject: Re: Problem Building Stage 3 / AIX 5.1, Visual Age C 5.0.2 References: Date: Thu, 24 Oct 2002 14:53:00 -0000 From: David Edelsohn X-SW-Source: 2002-10/txt/msg00312.txt.bz2 I would recommend that you use the default AIX assembler, linker, and nm, ar, etc. instead of the GNU Assembler, GNU Linker, and GNU Binutils. This is mentioned in the platform-specific installation notes. Configure will not be invoked between each build stage. Configure is run manually before the compiler is built and the building process runs configure for the various target libraries, but that is not Stage 3. If you are referring to configure to build libraries, you can speed this up by using GNU Bash shell instead of /bin/sh. make SHELL=/usr/local/bin/bash CONFIG_SHELL=/usr/local/bin/bash ... David