From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13507 invoked by alias); 30 Apr 2018 19:52:19 -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 13481 invoked by uid 89); 30 Apr 2018 19:52:18 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.9 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy= X-Spam-User: qpsmtpd, 2 recipients X-HELO: rock.gnat.com Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 30 Apr 2018 19:52:14 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 8FBCE1173A5; Mon, 30 Apr 2018 15:52:12 -0400 (EDT) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id JyAAaEPIbdU9; Mon, 30 Apr 2018 15:52:12 -0400 (EDT) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 5E726117342; Mon, 30 Apr 2018 15:52:12 -0400 (EDT) Received: by joel.gnat.com (Postfix, from userid 1000) id A261883055; Mon, 30 Apr 2018 12:52:10 -0700 (PDT) Date: Mon, 30 Apr 2018 19:52:00 -0000 From: Joel Brobecker To: "Francois H. Theron" Cc: gcc-patches@gnu.org, binutils@sourceware.org, gdb-patches@sourceware.org Subject: Re: [PATCH] [configure] Added "nfp" to the build for binutils. Message-ID: <20180430195210.rx3krpbwcckkjifs@adacore.com> References: <20180430182141.28935-1-francois.theron@netronome.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180430182141.28935-1-francois.theron@netronome.com> User-Agent: NeoMutt/20170113 (1.7.2) X-SW-Source: 2018-04/txt/msg00664.txt.bz2 > +2018-04-30 Francois H. Theron > + > + * config.sub: Added "nfp" to basic_machine list. > + * configure.ac: Added "nfp" target. > + * configure: Regenerate. I am not a maintainer, but I noticed that config.sub is not being modified by this commit -- a small discrepancy between the patch and the propose ChangeLog entry. > 2018-02-13 Maciej W. Rozycki > > * configure.ac (noconfigdirs): Add `ld'. > diff --git a/configure b/configure > index 0601395512..69c99e99cc 100755 > --- a/configure > +++ b/configure > @@ -3777,6 +3777,10 @@ case "${target}" in > mt-*-*) > noconfigdirs="$noconfigdirs sim" > ;; > + nfp-*-*) > + noconfigdirs="$noconfigdirs ld gas gdb gprof sim" > + noconfigdirs="$noconfigdirs $target_libraries" > + ;; > powerpc-*-aix*) > # copied from rs6000-*-* entry > noconfigdirs="$noconfigdirs gprof" > diff --git a/configure.ac b/configure.ac > index c343333652..a1edc369a2 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -1108,6 +1108,10 @@ case "${target}" in > mt-*-*) > noconfigdirs="$noconfigdirs sim" > ;; > + nfp-*-*) > + noconfigdirs="$noconfigdirs ld gas gdb gprof sim" > + noconfigdirs="$noconfigdirs $target_libraries" > + ;; > powerpc-*-aix*) > # copied from rs6000-*-* entry > noconfigdirs="$noconfigdirs gprof" -- Joel