From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1OS7eA-0000PG-ID for garchives@archives.gentoo.org; Fri, 25 Jun 2010 12:04:39 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B824E09C3 for ; Fri, 25 Jun 2010 12:04:37 +0000 (UTC) Received: from mail-iw0-f181.google.com (mail-iw0-f181.google.com [209.85.214.181]) by pigeon.gentoo.org (Postfix) with ESMTP id 39248E091B for ; Fri, 25 Jun 2010 11:27:39 +0000 (UTC) Received: by iwn10 with SMTP id 10so1590204iwn.40 for ; Fri, 25 Jun 2010 04:27:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=1ABEk6s9dH3Wb2HsT2JGJORlGxovQsBVdi3vaK7k97I=; b=iFp09bEgCI0n1GiOp/6JwimLQEaLMbf5nANvye4kthNEnkyOPKZN67OBti2jd98tqG G1YZUYmcw5E77j2dEaGUNaWIpTzPbau3zvd0/pnvU7hlcbU0PajT5gnA525+vIJI0JD0 JTSAxg7wyDFyqOI0KVH+Gv0RDkAEJWbV6myRM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=aAKLyV1D3RQsoIsPNf19Uw6oIn9t/ScHdIeZkfLOZVA/3nlz3TGVqhzRqOlvv2Q3cZ n4IjpSr1eg5P5pQFeZzn19lfm3bNPz7Km7zBxW7dNtefsEhScI7sPwoxhop+c6tydwYz 81h4dm5cf7jyZKw3HYD20n3y78TS+5gHAx2Yk= Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-embedded@lists.gentoo.org Reply-to: gentoo-embedded@lists.gentoo.org MIME-Version: 1.0 Received: by 10.231.196.220 with SMTP id eh28mr555986ibb.198.1277465258784; Fri, 25 Jun 2010 04:27:38 -0700 (PDT) Received: by 10.231.12.76 with HTTP; Fri, 25 Jun 2010 04:27:38 -0700 (PDT) In-Reply-To: <201006251235.35071.ladmanj@volny.cz> References: <201006240739.31980.ladmanj@volny.cz> <201006241936.10320.ladmanj@volny.cz> <1277415917.23740.3.camel@hangover> <201006251235.35071.ladmanj@volny.cz> Date: Fri, 25 Jun 2010 13:27:38 +0200 Message-ID: Subject: Re: [gentoo-embedded] crossdev fail From: Sven Rebhan To: gentoo-embedded@lists.gentoo.org Content-Type: text/plain; charset=ISO-8859-1 X-Archives-Salt: b7e56cbd-830a-4609-a272-84d7188b677e X-Archives-Hash: 077853b0ed04b41a6aecba5b19256b82 Hey! Well, your problem is described easily once you read cross-armv4tl-softfloat-linux-gnueabi-glibc-headers.log:: checking for /usr/lib/gcc/i686-pc-linux-gnu/4.3.4/../../../../i686-pc-linux-gnu/bin/as... /usr/lib/gcc/i686-pc-linux-gnu/4.3.4/../../../../i686-pc-linux-gnu/bin/as checking version of /usr/lib/gcc/i686-pc-linux-gnu/4.3.4/../../../../i686-pc-linux-gnu/bin/as... 2.20.1.20100303, bad checking for /usr/lib/gcc/i686-pc-linux-gnu/4.3.4/../../../../i686-pc-linux-gnu/bin/ld... /usr/lib/gcc/i686-pc-linux-gnu/4.3.4/../../../../i686-pc-linux-gnu/bin/ld checking version of /usr/lib/gcc/i686-pc-linux-gnu/4.3.4/../../../../i686-pc-linux-gnu/bin/ld... 2.20.1.20100303, bad and checking the glibc-2.9_p20081201-r2 's configure script: 4530 echo $ECHO_N "checking version of $AS... $ECHO_C" >&6; } 4531 ac_prog_version=`$AS --version 2>&1 | sed -n 's/^.*GNU assembler.* \([0-9]*\.[0-9.]*\).*$/\1/p'` 4532 case $ac_prog_version in 4533 '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;; 4534 2.1[3-9]*) 4535 ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; 4536 *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; 4537 4538 esac In the above lines, you see that the binutils-2.20.1.20100303 of your host is too new for the glibc version, which requires version 2.1*. :-) If you require this glibc version one would need to replace the check in line 4534 with 2.1[3-9]*|2.2[0-9]*) and test with this setting. Alternatively you could try with >=glibc-2.11.1 which has a check for newer binutils. Have fun! Sven