From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18119 invoked by alias); 29 Mar 2010 17:49:29 -0000 Received: (qmail 18108 invoked by uid 22791); 29 Mar 2010 17:49:28 -0000 X-SWARE-Spam-Status: No, hits=-1.7 required=5.0 tests=BAYES_00,SARE_SUB_OBFU_Q1,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from sibelius.xs4all.nl (HELO glazunov.sibelius.xs4all.nl) (83.163.83.176) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 29 Mar 2010 17:49:21 +0000 Received: from glazunov.sibelius.xs4all.nl (kettenis@localhost [127.0.0.1]) by glazunov.sibelius.xs4all.nl (8.14.3/8.14.3) with ESMTP id o2THnEK7008593; Mon, 29 Mar 2010 19:49:14 +0200 (CEST) Received: (from kettenis@localhost) by glazunov.sibelius.xs4all.nl (8.14.3/8.14.3/Submit) id o2THnDrw022305; Mon, 29 Mar 2010 19:49:13 +0200 (CEST) Date: Mon, 29 Mar 2010 17:49:00 -0000 Message-Id: <201003291749.o2THnDrw022305@glazunov.sibelius.xs4all.nl> From: Mark Kettenis To: hjl.tools@gmail.com CC: hjl.tools@gmail.com, gdb-patches@sourceware.org In-reply-to: <20100329161910.GA10204@intel.com> (hongjiu.lu@intel.com) Subject: Re: PATCH: Add xmlRegisters= to qsupported query References: <20100328204807.GA10649@intel.com> <20100328205207.GA11401@intel.com> <20100328234643.GA25607@intel.com> <20100329145549.GA7015@intel.com> <20100329161910.GA10204@intel.com> 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 X-SW-Source: 2010-03/txt/msg01011.txt.bz2 > Date: Mon, 29 Mar 2010 09:19:10 -0700 > From: "H.J. Lu" > > We should check if libexpat is available. Any comments/suggestions? > diff --git a/gdb/i386-tdep.c b/gdb/i386-tdep.c > index 83275ac..d7af84a 100644 > --- a/gdb/i386-tdep.c > +++ b/gdb/i386-tdep.c > @@ -44,6 +44,7 @@ > #include "value.h" > #include "dis-asm.h" > #include "disasm.h" > +#include "remote.h" > > #include "gdb_assert.h" > #include "gdb_string.h" > @@ -5943,6 +5944,9 @@ i386_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches) > set_gdbarch_fast_tracepoint_valid_at (gdbarch, > i386_fast_tracepoint_valid_at); > > + /* Tell remote stub that we support XML target description. */ > + register_remote_support_xml ("x86"); Please use "i386" here.