From patchwork Mon May 29 14:48:26 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stafford Horne X-Patchwork-Id: 20629 Received: (qmail 92849 invoked by alias); 29 May 2017 14:49:23 -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 92799 invoked by uid 89); 29 May 2017 14:49:22 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.4 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, 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-HELO: mail-pg0-f41.google.com Received: from mail-pg0-f41.google.com (HELO mail-pg0-f41.google.com) (74.125.83.41) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 29 May 2017 14:49:20 +0000 Received: by mail-pg0-f41.google.com with SMTP id x64so23951190pgd.3 for ; Mon, 29 May 2017 07:49:24 -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:in-reply-to :references:in-reply-to:references; bh=PJrpnLhMiVsSjIBsLFDHkhqTRVo1v3uHVdMjs0rndkc=; b=XYkejum3aCh8fd4morB0nUCw28oTl7MG8oHEx4RNd2EDmHBNgq27/ZOkDV+lM0wXFl HOULagvcM9XzD2O9+5AMi6aDcCZZ2fdhC2ZHWmMnz4GEveIaUWJOi8K1uAehkFk27S8G ej8Ybvi8rS9dY0YCx0vhH0aMLG+Mb3sGnNuMZjsv9GPomVvDBaKZzvNY0olJhEXOxCF3 kbLm0coMCVQq4Qes2R1VEI5gF100+rAVyHP2vS74Cj3iPc6mJll0iGAakzKW2h2dLZPF 9EdQgda1tXPA5RKYBRis6JYnVa6bLqNVtVoa6r0h/0kHpXIjifgj1uFiymb5L7EC5DWZ /Jqg== X-Gm-Message-State: AODbwcAeQdUlJxbSJs4qauytzMEjq9f8bF5tq2Nwv2iJdK8PjYVI2kvG g7ugzwHVArJAiE/t X-Received: by 10.98.18.67 with SMTP id a64mr18604468pfj.188.1496069362708; Mon, 29 May 2017 07:49:22 -0700 (PDT) Received: from localhost (g139.211-19-81.ppp.wakwak.ne.jp. [211.19.81.139]) by smtp.gmail.com with ESMTPSA id a12sm15734993pgn.62.2017.05.29.07.49.21 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 29 May 2017 07:49:22 -0700 (PDT) From: Stafford Horne To: GDB patches Cc: Openrisc , Stafford Horne , gcc-patches@gcc.gnu.org Subject: [PATCH v7 4/4] Add gdb for or1k build Date: Mon, 29 May 2017 23:48:26 +0900 Message-Id: <9f7c01d33d453186963b6b13f0f1ef4394b4e98b.1496068645.git.shorne@gmail.com> In-Reply-To: References: In-Reply-To: References: X-IsSubscribed: yes * ChangeLog: 2017-02-12 Stafford Horne * configure.ac: Remove logic adding gdb to noconfigsdirs for or1k. * configure: Regenerate. Cc: gcc-patches@gcc.gnu.org --- configure | 7 ------- configure.ac | 7 ------- 2 files changed, 14 deletions(-) diff --git a/configure b/configure index be9dd89..0bf47fa 100755 --- a/configure +++ b/configure @@ -3632,10 +3632,6 @@ case "${target}" in ;; *-*-rtems*) noconfigdirs="$noconfigdirs target-libgloss" - # this is not caught below because this stanza matches earlier - case $target in - or1k*-*-*) noconfigdirs="$noconfigdirs gdb" ;; - esac ;; # The tpf target doesn't support gdb yet. *-*-tpf*) @@ -3841,9 +3837,6 @@ case "${target}" in nvptx*-*-*) noconfigdirs="$noconfigdirs target-libssp target-libstdc++-v3 target-libobjc" ;; - or1k*-*-*) - noconfigdirs="$noconfigdirs gdb" - ;; sh-*-*) case "${target}" in sh*-*-elf) diff --git a/configure.ac b/configure.ac index 532c5c2..9d16792 100644 --- a/configure.ac +++ b/configure.ac @@ -966,10 +966,6 @@ case "${target}" in ;; *-*-rtems*) noconfigdirs="$noconfigdirs target-libgloss" - # this is not caught below because this stanza matches earlier - case $target in - or1k*-*-*) noconfigdirs="$noconfigdirs gdb" ;; - esac ;; # The tpf target doesn't support gdb yet. *-*-tpf*) @@ -1175,9 +1171,6 @@ case "${target}" in nvptx*-*-*) noconfigdirs="$noconfigdirs target-libssp target-libstdc++-v3 target-libobjc" ;; - or1k*-*-*) - noconfigdirs="$noconfigdirs gdb" - ;; sh-*-*) case "${target}" in sh*-*-elf)