From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1816 invoked by alias); 15 Jun 2002 17:29:23 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 1807 invoked from network); 15 Jun 2002 17:29:22 -0000 Received: from unknown (HELO walton.kettenis.dyndns.org) (213.93.114.42) by sources.redhat.com with SMTP; 15 Jun 2002 17:29:22 -0000 Received: from elgar.kettenis.dyndns.org (elgar.kettenis.dyndns.org [192.168.0.2]) by walton.kettenis.dyndns.org (8.11.6/8.11.6) with ESMTP id g5FHTKF04264; Sat, 15 Jun 2002 19:29:20 +0200 (CEST) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: (from kettenis@localhost) by elgar.kettenis.dyndns.org (8.11.6/8.11.6) id g5FHTKR05470; Sat, 15 Jun 2002 19:29:20 +0200 (CEST) (envelope-from kettenis) Date: Sat, 15 Jun 2002 10:29:00 -0000 From: Mark Kettenis Message-Id: <200206151729.g5FHTKR05470@elgar.kettenis.dyndns.org> To: eliz@is.elta.co.il CC: gdb-patches@sources.redhat.com In-reply-to: <3791-Sat15Jun2002202319+0300-eliz@is.elta.co.il> Subject: Re: [PATCH] Moving forward on the road to a truly multi-arched i386 References: <200206141945.g5EJjWe23815@elgar.kettenis.dyndns.org> <3791-Sat15Jun2002202319+0300-eliz@is.elta.co.il> X-SW-Source: 2002-06/txt/msg00268.txt.bz2 Date: Sat, 15 Jun 2002 20:23:19 +0300 From: "Eli Zaretskii" Sender: halo1@zahav.net.il CC: gdb-patches@sources.redhat.com Reply-to: Eli Zaretskii > Date: Fri, 14 Jun 2002 21:45:32 +0200 (CEST) > From: Mark Kettenis > > Since nobody objected, I checked this in. Darn! I missed one gotcha: > +static enum gdb_osabi > +i386_coff_osabi_sniffer (bfd *abfd) > +{ > + if (strcmp (bfd_get_target (abfd), "coff-go32-exe") == 0) > + return GDB_OSABI_GO32; This should also allow "coff-go32", which is a raw COFF executable without the DOS stub loader. DJGPP debugging supports that format as well. Should be easy to fix. Consider it done :-). Mark