From patchwork Thu Aug 1 21:39:48 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Solomon Peachy X-Patchwork-Id: 264117 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "localhost", Issuer "www.qmailtoaster.com" (not verified)) by ozlabs.org (Postfix) with ESMTPS id AF74D2C0090 for ; Fri, 2 Aug 2013 07:40:08 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:cc:subject:message-id:references :mime-version:content-type:in-reply-to; q=dns; s=default; b=e+O6 xFVIDA+1f3i8duEa1i80C5HlU2BpiNULt/lJL3nTrKYuWxBdmN69ugOf9ZfnLyQs tlIC1yHA025SQOOmhrHaMENkjqLNEHFkJozXTBqa7MIpgXFPrsz2WHh145sr6ORA AHP9VkMEpy6CAudGzxcBlBZlHQBs3QG8oCx9yBo= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:cc:subject:message-id:references :mime-version:content-type:in-reply-to; s=default; bh=ge6MANOLvK epnBDcnMDnvoORqUg=; b=xVNAz9HDPZHBLicGhV2WMkHRcMDzclhy1Nb46D01Bl USpXorl/DBbqrHtteVlpM8vjFBb/R2BCosLCPRaIBdYnZ8CGWrWSkpwFow2RO0Ds bjL0VPzrhEv13MTazA70fhAkabE/UnIs2Gkr8rWYzipHny6/9UsV4nQvEnYZ6zeC Y= Received: (qmail 19659 invoked by alias); 1 Aug 2013 21:40:00 -0000 Mailing-List: contact crossgcc-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: crossgcc-owner@sourceware.org Delivered-To: mailing list crossgcc@sourceware.org Received: (qmail 19641 invoked by uid 89); 1 Aug 2013 21:40:00 -0000 X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL, BAYES_50, KHOP_PGP_SIGNED, RDNS_NONE, UPPERCASE_50_75 autolearn=no version=3.3.1 Received: from Unknown (HELO stuffed.shaftnet.org) (162.17.110.37) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Thu, 01 Aug 2013 21:39:59 +0000 Received: from stuffed.shaftnet.org (localhost [127.0.0.1]) by stuffed.shaftnet.org (8.14.7/8.14.5) with ESMTP id r71LdmY0004364 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 1 Aug 2013 17:39:48 -0400 Received: (from pizza@localhost) by stuffed.shaftnet.org (8.14.7/8.14.7/Submit) id r71LdmmG004363; Thu, 1 Aug 2013 17:39:48 -0400 Date: Thu, 1 Aug 2013 17:39:48 -0400 From: Solomon Peachy To: "Yann E. MORIN" Cc: crossgcc@sourceware.org Subject: Re: Plans for a new crosstool-ng release? Message-ID: <20130801213947.GF10904@shaftnet.org> References: <20130801135104.GA7268@shaftnet.org> <20130801203525.GB16069@free.fr> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20130801203525.GB16069@free.fr> User-Agent: Mutt/1.5.21 (2010-09-15) X-Virus-Found: No On Thu, Aug 01, 2013 at 10:35:25PM +0200, Yann E. MORIN wrote: > OK, by popular demand, I'll release a new version this WE, then. ;-) > Sorry, I missed the previous release schedule for various reasons. Hey, no worries. I know what it's like to forget about releases.. > Care to send a patch and your .config, so I can try to reproduce the > error? Sure, here you go. The problem is really in elf2flt's configure script not figuring out that it needs to explicitly link in libdl, but this patch was the most expedient solution to get me to a working toolchain. - Solomon diff -r 1048e4dca434 scripts/build/binutils/binutils.sh --- a/scripts/build/binutils/binutils.sh Wed Jul 24 23:03:48 2013 +0200 +++ b/scripts/build/binutils/binutils.sh Thu Aug 01 17:36:49 2013 -0400 @@ -288,7 +288,7 @@ CT_DoLog EXTRA "Configuring elf2flt" CT_DoExecLog CFG \ CFLAGS="${cflags}" \ - LDFLAGS="${ldflags}" \ + LDFLAGS="${ldflags} -ldl" \ "${CT_SRC_DIR}/elf2flt-${CT_ELF2FLT_VERSION}/configure" \ --build=${CT_BUILD} \ --host=${host} \