From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 79625 invoked by alias); 2 Apr 2015 10:34:23 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 79616 invoked by uid 89); 2 Apr 2015 10:34:23 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.1 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,T_RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: foss.arm.com Received: from foss.arm.com (HELO foss.arm.com) (217.140.101.70) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 02 Apr 2015 10:34:22 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 97A9527 for ; Thu, 2 Apr 2015 03:34:18 -0700 (PDT) Received: from e105689-lin.cambridge.arm.com (e105689-lin.cambridge.arm.com [10.2.207.32]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 832813F21B; Thu, 2 Apr 2015 03:34:20 -0700 (PDT) Message-ID: <551D1B2A.5020707@foss.arm.com> Date: Thu, 02 Apr 2015 10:34:00 -0000 From: Richard Earnshaw User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: gdb-patches@sourceware.org Subject: Re: [PATCH] sim: update zlib handling References: <1427864905-10106-1-git-send-email-vapier@gentoo.org> <551BFA44.8080404@foss.arm.com> <20150402053537.GB9832@vapier> In-Reply-To: <20150402053537.GB9832@vapier> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2015-04/txt/msg00101.txt.bz2 On 02/04/15 06:35, Mike Frysinger wrote: > On 01 Apr 2015 15:01, Richard Earnshaw wrote: >> On 01/04/15 06:08, Mike Frysinger wrote: >>> With zlib being mandatory, and the updated m4 configs, we need to regen >>> and use the new settings w/bfd to avoid linkage errors. >>> >>> Committed. >> >> This seems to cause: >> >> make[3]: *** No rule to make target `-L../zlib', needed by `run'. Stop. >> make[3]: Leaving directory `/work/rearnsha/scratch/gnu/gcc/trunk/sim/arm' >> make[2]: *** [all] Error 1 >> >> >> The problem seems to be that ZLIB is used in BFD_LIB, which is used in >> LIBDEPS which is a dependency for "run". > > i think H.J.Lu checked in a patch to fix this > -mike > Yep, seems to be working now. R.