From patchwork Fri Mar 17 05:43:20 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stafford Horne X-Patchwork-Id: 19632 Received: (qmail 124530 invoked by alias); 17 Mar 2017 05:43:44 -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 124409 invoked by uid 89); 17 Mar 2017 05:43:43 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-25.7 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, RCVD_IN_SORBS_SPAM, SPF_PASS autolearn=ham version=3.3.2 spammy=38376 X-HELO: mail-pg0-f66.google.com Received: from mail-pg0-f66.google.com (HELO mail-pg0-f66.google.com) (74.125.83.66) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 17 Mar 2017 05:43:41 +0000 Received: by mail-pg0-f66.google.com with SMTP id 81so441535pgh.3 for ; Thu, 16 Mar 2017 22:43:42 -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=qsynLgFhI0f7pTH3VLjg1EtEbWFuuWbiXVtzXKeMwi8=; b=Y+zd/JgaxLb7hegIaY+fhkP1up+0uaMhH1NNa823hd3Zy9uh8gE4191lVgc+CEK4Zs nGps+ca+oZoBPJWqJpiR81eIXyY4kpCXIFBUNt0zxUFzN4/5jh81g5locguk/UoNukok EUJr94ngAIXgbntxrKWTPeC360QtYWPure9v04I4NhUrow7ev6fM7Z5ZMLYktVJrvgW6 eLvN49aWpVCpK63eY478WsV/mcqkQPrhLn7jmEM3jZBejVV6Dn8/Ic0nBcImpL5dxpSh LRwaGivmZlHTTZE65ASyUgNjGJqSDVYkBjR97XEzUl2AK4vHhbd5z5CAvTPdlJjmcMxH xYJQ== X-Gm-Message-State: AFeK/H21i2YM13ufSrRfG5csWa2o2Umck4ODrjeQI3hVn5TWqzUsNNjDc4WK2kJ72j8v9g== X-Received: by 10.99.168.5 with SMTP id o5mr14280501pgf.148.1489729421069; Thu, 16 Mar 2017 22:43:41 -0700 (PDT) Received: from localhost (z17.124-44-180.ppp.wakwak.ne.jp. [124.44.180.17]) by smtp.gmail.com with ESMTPSA id h9sm13807064pfd.103.2017.03.16.22.43.40 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Thu, 16 Mar 2017 22:43:40 -0700 (PDT) From: Stafford Horne To: shorne@gmail.com, gdb-patches@sourceware.org Cc: openrisc@lists.librecores.org Subject: [PATCH v5 4/4] Add gdb for or1k build Date: Fri, 17 Mar 2017 14:43:20 +0900 Message-Id: In-Reply-To: References: In-Reply-To: References: X-IsSubscribed: yes * ChangeLog: * configure.ac: remove logic adding gdb to noconfigsdirs for or1k * configure: regenerate --- 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)