From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5912 invoked by alias); 15 Jan 2002 10:13:48 -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 5831 invoked from network); 15 Jan 2002 10:13:41 -0000 Received: from unknown (HELO finch-post-12.mail.demon.net) (194.217.242.41) by sources.redhat.com with SMTP; 15 Jan 2002 10:13:41 -0000 Received: from mailgate.softwire.co.uk ([62.49.203.138] helo=polarbear) by finch-post-12.mail.demon.net with esmtp (Exim 2.12 #1) id 16QQb6-000Ccc-0C; Tue, 15 Jan 2002 10:13:40 +0000 From: "Rupert Wood" To: "'Steven Mueller'" Cc: "'Dan Kegel'" , "'GCC Help list'" Subject: RE: sh4-cross-compiling-gcc-3.0.2 build fails during assembly Date: Tue, 15 Jan 2002 02:13:00 -0000 Message-ID: <616BE6A276E3714788D2AC35C40CD18D11FE3E@whale.softwire.co.uk> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 In-Reply-To: <616BE6A276E3714788D2AC35C40CD18D2C5960@whale.softwire.co.uk> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal X-SW-Source: 2002-01/txt/msg00150.txt.bz2 Steven Mueller wrote: > A quick search on Google indicates these types of errors are pretty > common for a mismatching assembler architecture... In your script: | ( | ln -s sh4el-hardhat-linux sh4-linux | cd bin | ln -s sh_sh4_le-ar sh4-linux-ar | ln -s sh_sh4_le-ld sh4-linux-ld | ln -s sh_sh4_le-nm sh4-linux-nm | ln -s sh_sh4_le-ranlib sh4-linux-ranlib | ln -s sh_sh4_le-strip sh4-linux-strip | ) you don't appear to set up sh4-linux-as. The new GCC, therefore, might be using the host assembler. You could try repeating the failing compile manually, adding '-v' to check which assembler is being used. Rup.