From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32070 invoked by alias); 8 Sep 2018 06:30:54 -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 31734 invoked by uid 89); 8 Sep 2018 06:30:28 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-25.0 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: jocasta.intra Received: from de.cellform.com (HELO jocasta.intra) (88.217.224.109) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 08 Sep 2018 06:30:25 +0000 Received: from jocasta.intra (localhost [127.0.0.1]) by jocasta.intra (8.15.2/8.15.2/Debian-8) with ESMTPS id w886U4Ou027636 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Sat, 8 Sep 2018 08:30:04 +0200 Received: (from john@localhost) by jocasta.intra (8.15.2/8.15.2/Submit) id w886U4Vs027635; Sat, 8 Sep 2018 08:30:04 +0200 Date: Sat, 08 Sep 2018 06:30:00 -0000 From: John Darrington To: John Darrington Cc: Simon Marchi , gdb-patches@sourceware.org Subject: Re: S12Z [new patchset] Message-ID: <20180908063004.chzt6bxgtmtycofw@jocasta.intra> References: <20180829141845.26378-1-john@darrington.wattle.id.au> <079417ed-8a4c-45a0-8e2d-c72f78a4d227@ericsson.com> <20180908041801.osodrw7qk5lp24of@jocasta.intra> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="piqfy5aikmmpzr4h" Content-Disposition: inline In-Reply-To: <20180908041801.osodrw7qk5lp24of@jocasta.intra> User-Agent: NeoMutt/20170113 (1.7.2) X-SW-Source: 2018-09/txt/msg00159.txt.bz2 --piqfy5aikmmpzr4h Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 477 On Sat, Sep 08, 2018 at 06:18:01AM +0200, John Darrington wrote: I still see it. Are you sure you have an --enable-targets=all build? What configure line do you use? I used: /home/john/binutils-gdb/configure --target=s12z --enable-targets=all CFLAGS="-g -O0" CXXFLAGS="-O0 -g" --prefix=$(mktemp -d -p /Scratch/john) Now I do see it. Can you apply the attached patch, and see if it fixes it for you? J' --piqfy5aikmmpzr4h Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0001-Add-ARCH_s12z-to-the-ARCH_all-case.patch" Content-length: 663 >From df16439ce7de10b6f1c72c6974f544cdf806e9da Mon Sep 17 00:00:00 2001 From: John Darrington Date: Sat, 8 Sep 2018 06:59:09 +0200 Subject: [PATCH] Add ARCH_s12z to the ARCH_all case. * opcodes/disassemble.c: Define ARCH_s12z when ARCH_all is defined. --- opcodes/disassemble.c | 1 + 1 file changed, 1 insertion(+) diff --git a/opcodes/disassemble.c b/opcodes/disassemble.c index c5941826f0..ce83423b6d 100644 --- a/opcodes/disassemble.c +++ b/opcodes/disassemble.c @@ -77,6 +77,7 @@ #define ARCH_rs6000 #define ARCH_rl78 #define ARCH_rx +#define ARCH_s12z #define ARCH_s390 #define ARCH_score #define ARCH_sh -- 2.11.0 --piqfy5aikmmpzr4h--