From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19580 invoked by alias); 25 Apr 2006 17:39:01 -0000 Received: (qmail 19570 invoked by uid 22791); 25 Apr 2006 17:39:00 -0000 X-Spam-Check-By: sourceware.org Received: from ls405.t-com.hr (HELO ls405.htnet.hr) (195.29.150.135) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 25 Apr 2006 17:38:58 +0000 Received: from ls401.t-com.hr (ls401.t-com.hr [195.29.150.236]) by ls405.htnet.hr (0.0.0/8.12.10) with ESMTP id k3PHcKbL026398; Tue, 25 Apr 2006 19:38:21 +0200 Received: from ls401.t-com.hr (localhost.localdomain [127.0.0.1]) by ls401.t-com.hr (Qmlai) with ESMTP id 56662E38E3; Tue, 25 Apr 2006 19:38:21 +0200 (CEST) X-Envelope-Sender: andrija.radicevic@zg.t-com.hr X-Envelope-Sender: andrija.radicevic@zg.t-com.hr X-Envelope-Sender: andrija.radicevic@zg.t-com.hr X-Envelope-Sender: andrija.radicevic@zg.t-com.hr Received: from harlequin (83-131-54-72.adsl.net.t-com.hr [83.131.54.72]) by ls401.t-com.hr (Qmlai) with SMTP id 9B99138009; Tue, 25 Apr 2006 19:38:16 +0200 (CEST) Message-ID: <002401c6688f$0b98c090$0a01a8c0@harlequin> From: "Andrija Radicevic" To: "Nick Clifton" Cc: "Andreas Schwab" , "Dave Korn" , References: <040901c6679a$8da56890$a501a8c0@CAM.ARTIMI.COM><001601c667d6$8ed6ec70$0a01a8c0@harlequin> <003101c667e0$a7adac70$0a01a8c0@harlequin> <444E3EFE.4040902@redhat.com> <000d01c66882$f5df09f0$0a01a8c0@harlequin> <444E5030.4020905@redhat.com> Subject: Re: ld fails to build for target Date: Tue, 25 Apr 2006 19:56:00 -0000 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=response Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Outlook Express 6.00.2900.2869 X-IsSubscribed: yes Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org X-SW-Source: 2006-04/txt/msg00352.txt.bz2 > > Since the error message that you get from configure.tgt show that it does > not recognise "e1-coff" it follows that this translation from "e1-coff" > into "e1-unknown-coff" is not being performed. You need to check what is > happening in the ld/configure script around these lines: > > # Canonicalize the secondary target names. > result=`$ac_config_sub $targ_alias 2>/dev/null` > if test -n "$result"; then > targ=$result > else > targ=$targ_alias > fi > > . ${srcdir}/configure.tgt > I have found the part in my configure file, dough it looks a little bit different # Canonicalize the secondary target names. result=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $targ_alias 2>/dev/null` if test -n "$result"; then targ=$result else targ=$targ_alias fi . ${srcdir}/configure.tgt obviously it must end up in the else branch (targ=$targ_alias) as you already said. Now I have to figure out why this happens. Thanks for your help. greetings Andrija