From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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-Subscribe: List-Archive: List-Post: List-Help: , Sender: crossgcc-owner@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, 04 Feb 2014 08:33:00 -0000 Message-ID: Subject: [PATCH 1/3] binutils: Added ranlib to tools list From: Ray Donnelly To: "crossgcc@sourceware.org" Content-Type: text/plain; charset=ISO-8859-1 X-IsSubscribed: yes X-SW-Source: 2014-02/txt/msg00007.txt.bz2 # 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 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 -- For unsubscribe information see http://sourceware.org/lists.html#faq