From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11982 invoked by alias); 15 Jun 2002 17:54:07 -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 11822 invoked from network); 15 Jun 2002 17:54:05 -0000 Received: from unknown (HELO walton.kettenis.dyndns.org) (213.93.114.42) by sources.redhat.com with SMTP; 15 Jun 2002 17:54:05 -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 g5FHs4F04296 for ; Sat, 15 Jun 2002 19:54:04 +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 g5FHs4t07191; Sat, 15 Jun 2002 19:54:04 +0200 (CEST) (envelope-from kettenis) Date: Sat, 15 Jun 2002 10:54:00 -0000 From: Mark Kettenis Message-Id: <200206151754.g5FHs4t07191@elgar.kettenis.dyndns.org> To: gdb-patches@sources.redhat.com Subject: [PATCH] Recognize "coff-go32" as DJGPP X-SW-Source: 2002-06/txt/msg00271.txt.bz2 As requested by Eli. Checked in. Index: ChangeLog from Mark Kettenis * i386-tdep.c (i386_coff_osabi_sniffer): Add "coff-go32" to the list of DJGPP COFF targets. Index: i386-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/i386-tdep.c,v retrieving revision 1.59 diff -u -p -r1.59 i386-tdep.c --- i386-tdep.c 15 Jun 2002 17:51:36 -0000 1.59 +++ i386-tdep.c 15 Jun 2002 17:52:42 -0000 @@ -1421,7 +1421,8 @@ i386_gdbarch_init (struct gdbarch_info i static enum gdb_osabi i386_coff_osabi_sniffer (bfd *abfd) { - if (strcmp (bfd_get_target (abfd), "coff-go32-exe") == 0) + if (strcmp (bfd_get_target (abfd), "coff-go32-exe") == 0 + || strcmp (bfd_get_target (abfd), "coff-go32") == 0) return GDB_OSABI_GO32; return GDB_OSABI_UNKNOWN;