From patchwork Tue Jul 14 12:22:16 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hans-Peter Nilsson X-Patchwork-Id: 495059 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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 80B1C14076B for ; Tue, 14 Jul 2015 22:22:28 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=kkLWNJTO; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=nRQSX5XqQB18eGesVC70DRqu0+qIcktmn+2vyPdVaiBy13cQnM8Bc ucoCe2IZD3R6Q6lGAOg+7Cb6m73wsX77hmIU0l0PnAT5ziz/XWARDuqsAmbuZD9L HX+lJK2oHjBeguG/KIlutcg84NH6epML+ucqVruWQcaOzMU1iJIuIQ= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=dVzf554YqBKvRHRW83afrnrk9Cs=; b=kkLWNJTORQ4DvMqD2m8s FWOk8rqLyu14tna6suatnZmAzjMGdMSfcQwdgc8vBCDEWiwBqfSA93EmcZwM77hv KjZR7ZQhMoQgiJFUjBVdDxiGTWXo1zfG3wp84fadst2RctlhpJ6JWK0oKD31Wd6V a8yi7ihWIS2GiMsIJRN/2y0= Received: (qmail 87622 invoked by alias); 14 Jul 2015 12:22:21 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 87609 invoked by uid 89); 14 Jul 2015 12:22:21 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.4 required=5.0 tests=AWL, BAYES_40, KAM_ASCII_DIVIDERS, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=no version=3.3.2 X-HELO: arjuna.pair.com Received: from arjuna.pair.com (HELO arjuna.pair.com) (209.68.5.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 14 Jul 2015 12:22:19 +0000 Received: by arjuna.pair.com (Postfix, from userid 3006) id BA25C8A221; Tue, 14 Jul 2015 08:22:16 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by arjuna.pair.com (Postfix) with ESMTP id B99698A1F8 for ; Tue, 14 Jul 2015 08:22:16 -0400 (EDT) Date: Tue, 14 Jul 2015 08:22:16 -0400 (EDT) From: Hans-Peter Nilsson To: gcc-patches@gcc.gnu.org Subject: Committed: partial sync with src repo: bfd depends on zlib Message-ID: User-Agent: Alpine 2.02 (BSF 1266 2009-07-14) MIME-Version: 1.0 X-IsSubscribed: yes I tried the good old combined-tree approach (which some call ubertree), and was bitten by bfd not depending on zlib *in the gcc version of toplevel Makefile.in*. So, I did a partial sync to include the particular commit from the binutils-gdb git and committed as obvious after a auccessful build of mmix-knuth-mmixware. (Test-results however are abysmal, likely due to a single ld bug causing segfault with -flto.) Committed: Sync with src: 2015-03-30 H.J. Lu * Makefile.def (dependencies): Add all-zlib to all-bfd. * Makefile.in: Regenerated. Index: Makefile.def =================================================================== --- Makefile.def (revision 225768) +++ Makefile.def (working copy) @@ -402,6 +402,7 @@ dependencies = { module=configure-bfd; on=configure-intl; }; dependencies = { module=all-bfd; on=all-libiberty; }; dependencies = { module=all-bfd; on=all-intl; }; +dependencies = { module=all-bfd; on=all-zlib; }; dependencies = { module=configure-opcodes; on=configure-libiberty; hard=true; }; dependencies = { module=all-opcodes; on=all-libiberty; }; Index: Makefile.in =================================================================== --- Makefile.in (revision 225768) +++ Makefile.in (working copy) @@ -49977,6 +49977,14 @@ all-stage4-bfd: maybe-all-stage4-intl all-stageprofile-bfd: maybe-all-stageprofile-intl all-stagefeedback-bfd: maybe-all-stagefeedback-intl +all-bfd: maybe-all-zlib + +all-stage1-bfd: maybe-all-stage1-zlib +all-stage2-bfd: maybe-all-stage2-zlib +all-stage3-bfd: maybe-all-stage3-zlib +all-stage4-bfd: maybe-all-stage4-zlib +all-stageprofile-bfd: maybe-all-stageprofile-zlib +all-stagefeedback-bfd: maybe-all-stagefeedback-zlib configure-opcodes: configure-libiberty configure-stage1-opcodes: configure-stage1-libiberty