From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4973 invoked by alias); 19 Sep 2005 16:21:58 -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 4946 invoked by uid 22791); 19 Sep 2005 16:21:53 -0000 Received: from igw2.watson.ibm.com (HELO igw2.watson.ibm.com) (129.34.20.6) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Mon, 19 Sep 2005 16:21:53 +0000 Received: from sp1n294en1.watson.ibm.com (sp1n294en1.watson.ibm.com [129.34.20.40]) by igw2.watson.ibm.com (8.13.1/8.13.1/8.13.1-2005-04-25 igw) with ESMTP id j8JGNNUD030485; Mon, 19 Sep 2005 12:23:35 -0400 Received: from sp1n294en1.watson.ibm.com (localhost [127.0.0.1]) by sp1n294en1.watson.ibm.com (8.11.7-20030924/8.11.7/01-14-2004_2) with ESMTP id j8JGLct40740; Mon, 19 Sep 2005 12:21:38 -0400 Received: from mgsmtp00.watson.ibm.com (mgsmtp00.watson.ibm.com [9.2.40.58]) by sp1n294en1.watson.ibm.com (8.11.7-20030924/8.11.7/01-14-2004_1) with ESMTP id j8JGLcP53440; Mon, 19 Sep 2005 12:21:38 -0400 Received: from makai.watson.ibm.com (makai.watson.ibm.com [9.2.216.144]) by mgsmtp00.watson.ibm.com (8.12.11/8.12.11/2005/09/01) with ESMTP id j8JGKnlV029400; Mon, 19 Sep 2005 12:20:49 -0400 Received: from watson.ibm.com (localhost [127.0.0.1]) by makai.watson.ibm.com (AIX5.1/8.11.6p2/8.11.0/03-06-2002) with ESMTP id j8JGLaq31184; Mon, 19 Sep 2005 12:21:36 -0400 Message-Id: <200509191621.j8JGLaq31184@makai.watson.ibm.com> To: James.Parker@saaconsultants.com cc: gcc-help@gcc.gnu.org Subject: Re: installing GCC 3.4.4 on cygwin targeting AIX-4.3.3 References: Date: Mon, 19 Sep 2005 16:21:00 -0000 From: David Edelsohn X-SW-Source: 2005-09/txt/msg00123.txt.bz2 We do not seem to be communicating well. I suggest that you invoke the compile command manually with the -v verbose flag and see where the cross-compiler is finding the assembler. Not compiler and assembler print version options. In other words, go to the build directory and manually invoke /usr/src/BUILD/gcc/gcc/xgcc -B/usr/src/BUILD/gcc/gcc/ -B/usr/local/cross-tools/rs6000-ibm-aix4.3.3.0/bin/ ... -mcpu=power -DL_divdi3 -c /usr/src/gcc-3.4.4/gcc/libgcc2.c -fexceptions -fnon-call-exceptions -v The entire command It will print the sub-programs that it is invoking and the options that it is using. Then you can determine if it is invoking the wrong assembler or manually invoke the assembler on an assembly file containing "mfcr" to investigate further. David