This is the mail archive of the gdb@sourceware.cygnus.com mailing list for the GDB project. See the GDB home page for more information.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: patch for gdb 4.17.86 on OpenServer



   Date: Tue, 23 Mar 1999 23:54:37 -0600
   From: Robert Lipe <robertl@sco.com>

   --- configure.tgt_	Tue Mar 23 23:34:50 1999
   +++ configure.tgt	Tue Mar 23 23:38:02 1999
   @@ -103,6 +103,7 @@
    i[3456]86-*-sysv4*)	gdb_target=i386v4 ;;
    i[3456]86-*-unixware2*)	gdb_target=i386v42mp ;;
    i[3456]86-*-unixware*)	gdb_target=i386v4 ;;
   +i[3456]86-*-sco3.2v5*)	gdb_target=i386sco5 ;;
    i[3456]86-*-sco*)	gdb_target=i386v ;;
    i[3456]86-*-sysv*)	gdb_target=i386v ;;
    i[3456]86-*-linux*)	gdb_target=linux

I can add this.

   Could someone with CVS access to the tree please walk back in time on
   gdb/configure.host and gdb/configure.tgt and see if other targets may
   have been deleted?  I can spot at least one other target by inspection
   that is missing.

I diffed with versions of those from a year ago, as well as looking at
the cvs log, and there has been only one deletion in the past year -
the "windows" fake target once used to build GDB with the Microsoft
compiler, unneeded now because of cygwin.  The only interesting
addition was this recent bit in configure.host, which came from Rodney
Brown's efforts (Rodney, meet Robert; Robert, meet Rodney - both of
you are hacking Unixware):

  i[3456]86-*-sysv32*)  gdb_host=i386v32 ;;
  i[3456]86-*-sysv4.2MP)        gdb_host=i386v42mp ;;
+ i[3456]86-*-sysv4.2uw2*)      gdb_host=i386v42mp ;;
  i[3456]86-*-sysv4*)   gdb_host=i386v4 ;;
  i[3456]86-*-unixware2*)       gdb_host=i386v42mp ;;

Looking at the configury and the matching, it's clear there is some
opportunity to straighten out and simplify things.

								Stan