From patchwork Tue Feb 4 08:33:29 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ray Donnelly X-Patchwork-Id: 316477 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 528EF2C0098 for ; Tue, 4 Feb 2014 19:33:41 +1100 (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:mime-version:date:message-id:subject:from:to :content-type; q=dns; s=default; b=aYti4U2xHgmfYGxtJeihun08JNsoh eIWcLcBNpA+0rJxK5+2Stv9Za3zAEOdPoYVcI/6YmUYjKe0m7tpz9F2EtI62L9bI a3dbv/57pxqQd/bERvjwTlCjna3AlUd2ruq3nYMCzt51Mib7W/r5oDbkf5Rj6U2+ tsFqrIXHaloOgI= 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:mime-version:date:message-id:subject:from:to :content-type; s=default; bh=3T883mDbptGbAp8K5w4GhCZURuk=; b=kUt ytM2xqbfXOXlaHr22VkrLbuqR+so/Ik+iJ894A7jZylBEKPQI9hU//FgkfMoAKq/ yRFe1UOsc2vjZ6fxJE16DKHKW7HwzkXo2fceMi9PgyRfMufiTe0a+xUeJF+utILw c23/qz7cRhyn8zsZxzIsm2VI4B/a61rOqFILpJzc= Received: (qmail 15194 invoked by alias); 4 Feb 2014 08:33:33 -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 15180 invoked by uid 89); 4 Feb 2014 08:33:33 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-we0-f176.google.com Received: from mail-we0-f176.google.com (HELO mail-we0-f176.google.com) (74.125.82.176) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 04 Feb 2014 08:33:32 +0000 Received: by mail-we0-f176.google.com with SMTP id q58so3667397wes.21 for ; Tue, 04 Feb 2014 00:33:29 -0800 (PST) MIME-Version: 1.0 X-Received: by 10.180.101.5 with SMTP id fc5mr8204605wib.35.1391502809059; Tue, 04 Feb 2014 00:33:29 -0800 (PST) Received: by 10.227.206.2 with HTTP; Tue, 4 Feb 2014 00:33:29 -0800 (PST) Date: Tue, 4 Feb 2014 08:33:29 +0000 Message-ID: Subject: [PATCH 1/3] binutils: Added ranlib to tools list From: Ray Donnelly To: "crossgcc@sourceware.org" X-IsSubscribed: yes # HG changeset patch # User Ray Donnelly # Date 1391499645 0 # Tue Feb 04 07:40:45 2014 +0000 # Node ID 2eab7ceda925402555d7d3107e5828734ac74c11 # Parent 529a71ea091e8ffa34d8b62f82e0996e3927750d binutils: Added ranlib to tools list so that it is available to available to the core C compiler build because static libraries are built and ranlib is used on them. Signed-off-by: Ray Donnelly --- For unsubscribe information see http://sourceware.org/lists.html#faq diff -r 529a71ea091e -r 2eab7ceda925 scripts/build/binutils/binutils.sh --- a/scripts/build/binutils/binutils.sh Thu Jan 16 14:55:23 2014 -0800 +++ b/scripts/build/binutils/binutils.sh Tue Feb 04 07:40:45 2014 +0000 @@ -106,13 +106,13 @@ fi # Make those new tools available to the core C compilers to come. - # Note: some components want the ${TARGET}-{ar,as,ld,strip} commands as - # well. Create that. + # Note: some components want the ${TARGET}-{ar,as,ld,ranlib,strip} commands + # as well. Create that. # Don't do it for canadian or cross-native, because the binutils # are not executable on the build machine. case "${CT_TOOLCHAIN_TYPE}" in cross|native) - binutils_tools=( ar as ld strip ) + binutils_tools=( ar as ld ranlib strip ) if [ -n "${CT_ARCH_BINFMT_FLAT}" ]; then binutils_tools+=( elf2flt flthdr ) fi