From patchwork Mon Apr 30 18:21:41 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Francois H. Theron" X-Patchwork-Id: 27060 Received: (qmail 119981 invoked by alias); 30 Apr 2018 18:21:53 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 119963 invoked by uid 89); 30 Apr 2018 18:21:52 -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 autolearn=ham version=3.3.2 spammy=sim X-HELO: mail-wr0-f173.google.com Received: from mail-wr0-f173.google.com (HELO mail-wr0-f173.google.com) (209.85.128.173) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 30 Apr 2018 18:21:48 +0000 Received: by mail-wr0-f173.google.com with SMTP id 94-v6so7579703wrf.5 for ; Mon, 30 Apr 2018 11:21:47 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version; bh=e/SOxBLisyb5hd90msKKemiF5py2Sj7BnzLsJhmMWVI=; b=ZFBVick3uYTlMJdgS6rbHS5aI+TTFYUE/xAx6pxaOJMxOMI7+QRxHRh6gWO8YHgjeY LF4i+7iYfbNdCnQdFxwklxgEh5LtqC3fxlL6EXG7Fdbpi2ZBoPDRkkAPysGWvegTVMFb QcA1LUujCRdUbEb5DpelGRQpp4r334OOUGhkCTun+pDqDjeZko/LGRFRglp4XF+N+OMB qL+QbuZe7BGJrkN7ig9zW/HbBKMjL1AGG00shLsn8D/08IUkhgZDQSUV7Za+0mE5iCDu U00EQSQAnG77d8Z6j4Wc3VWfPwH6fkohZrP80u/5LkD3Vxek/b4882CRxuF1PD2/CPxS /PTw== X-Gm-Message-State: ALQs6tAhZIz6Y/JxE5aWW1otScEgyoKOkrBjjdJfaVRk0PD0dESzK4bn 2F6TvhcJSUi4szi6WHAdMax0rQ== X-Google-Smtp-Source: AB8JxZqzq9hr/s3L1hf7h+aSKmRO5xQ39uqgO6+dwrtVB9UEcizaUvUY5POKe1pijOp7dt8Ehxzwcg== X-Received: by 2002:adf:bd86:: with SMTP id l6-v6mr9584344wrh.266.1525112506083; Mon, 30 Apr 2018 11:21:46 -0700 (PDT) Received: from granite.netronome.com ([196.22.243.102]) by smtp.gmail.com with ESMTPSA id b18-v6sm14475264wrb.55.2018.04.30.11.21.43 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 30 Apr 2018 11:21:44 -0700 (PDT) From: "Francois H. Theron" To: gcc-patches@gnu.org Cc: binutils@sourceware.org, gdb-patches@sourceware.org Subject: [PATCH] [configure] Added "nfp" to the build for binutils. Date: Mon, 30 Apr 2018 20:21:41 +0200 Message-Id: <20180430182141.28935-1-francois.theron@netronome.com> MIME-Version: 1.0 * Excludes: ld gas gdb gprof sim * For https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=commit;h=fe944acf8f858cfe6bcfd00670a88847a464717c Signed-off-by: Francois H. Theron --- ChangeLog | 6 ++++++ configure | 4 ++++ configure.ac | 4 ++++ 3 files changed, 14 insertions(+) diff --git a/ChangeLog b/ChangeLog index 03e1852114..edb69ed8b5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2018-04-30 Francois H. Theron + + * config.sub: Added "nfp" to basic_machine list. + * configure.ac: Added "nfp" target. + * configure: Regenerate. + 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"