From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28727 invoked by alias); 29 Apr 2014 20:30:48 -0000 Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org Received: (qmail 28712 invoked by uid 89); 29 Apr 2014 20:30:47 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.8 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,HK_RANDOM_ENVFROM,HK_RANDOM_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS,URIBL_BLACK autolearn=no version=3.3.2 X-HELO: mail-yh0-f52.google.com Received: from mail-yh0-f52.google.com (HELO mail-yh0-f52.google.com) (209.85.213.52) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 29 Apr 2014 20:30:46 +0000 Received: by mail-yh0-f52.google.com with SMTP id a41so562091yho.25 for ; Tue, 29 Apr 2014 13:30:44 -0700 (PDT) X-Received: by 10.236.23.163 with SMTP id v23mr185927yhv.58.1398803444827; Tue, 29 Apr 2014 13:30:44 -0700 (PDT) Received: from [10.1.9.111] ([208.186.101.198]) by mx.google.com with ESMTPSA id t9sm38682133yhg.18.2014.04.29.13.30.43 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 29 Apr 2014 13:30:44 -0700 (PDT) Message-ID: <53600BEF.8040006@gmail.com> Date: Tue, 29 Apr 2014 20:30:00 -0000 From: Drew DeVault User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: binutils@sourceware.org Subject: [PING] Disable gdb for z80-unknown-coff target References: <534C4DC4.3040901@gmail.com> In-Reply-To: <534C4DC4.3040901@gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2014-04/txt/msg00276.txt.bz2 Hey there, I'll take a leaf from John's book and ask if anyone has issues with this simple change. It blocks me as well, and should be trivial to review and get in. Thanks, Drew DeVault On 04/14/2014 03:06 PM, Drew DeVault wrote: > I don't often submit patches via mailing list; please let me know if > I've made any mistakes. > > gdb is unsupported on z80, which causes configure to fail. This disables > gdb for z80 builds. > > Drew DeVault > > --- > configure | 3 +++ > configure.ac | 3 +++ > 2 files changed, 6 insertions(+) > > diff --git a/configure b/configure > index 749a35e..1beea8e 100755 > --- a/configure > +++ b/configure > @@ -3700,6 +3700,9 @@ case "${target}" in > # No ld support yet. > noconfigdirs="$noconfigdirs libgui itcl ld" > ;; > + z80-*) > + noconfigdirs="$noconfigdirs gdb" > + ;; > i[3456789]86-w64-mingw*) > ;; > i[3456789]86-*-mingw*) > diff --git a/configure.ac b/configure.ac > index b24b33d..dc29ed0 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -1030,6 +1030,9 @@ case "${target}" in > # No ld support yet. > noconfigdirs="$noconfigdirs libgui itcl ld" > ;; > + z80-*) > + noconfigdirs="$noconfigdirs gdb" > + ;; > i[[3456789]]86-w64-mingw*) > ;; > i[[3456789]]86-*-mingw*) >