Write ChangeLog entry for sef changes.
Remove dbxread.c change; I handle this in BFD by making the name start with "a.out".
This commit is contained in:
parent
3d7de4c290
commit
a656507936
3 changed files with 8 additions and 15 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
Mon Aug 23 1993 Sean Fagan (sef@cygnus.com)
|
||||||
|
and Jim Kingdon (kingdon@cygnus.com)
|
||||||
|
|
||||||
|
Add NetBSD support:
|
||||||
|
* configure.in: Recognize netbsd.
|
||||||
|
|
||||||
Fri Aug 20 14:01:39 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
Fri Aug 20 14:01:39 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||||
|
|
||||||
* remote-nindy.c: Remove unused include of sys/ioctl.h.
|
* remote-nindy.c: Remove unused include of sys/ioctl.h.
|
||||||
|
|
|
@ -40,7 +40,7 @@ i[34]86-sequent-sysv*) gdb_host=ptx ;;
|
||||||
|
|
||||||
i[34]86-*-aix*) gdb_host=i386aix ;;
|
i[34]86-*-aix*) gdb_host=i386aix ;;
|
||||||
i[34]86-*-bsd*) gdb_host=i386bsd ;;
|
i[34]86-*-bsd*) gdb_host=i386bsd ;;
|
||||||
i[34]86-*-netbsd) gdb_host=i386bsd ;;
|
i[34]86-*-netbsd*) gdb_host=i386bsd ;;
|
||||||
i[34]86-*-go32) gdb_host=go32 ;;
|
i[34]86-*-go32) gdb_host=go32 ;;
|
||||||
i[34]86-*-linux) gdb_host=linux ;;
|
i[34]86-*-linux) gdb_host=linux ;;
|
||||||
i[34]86-*-lynx*) gdb_host=i386lynx ;;
|
i[34]86-*-lynx*) gdb_host=i386lynx ;;
|
||||||
|
@ -178,7 +178,7 @@ i[34]86-*-elf) gdb_target=i386v ;;
|
||||||
|
|
||||||
i[34]86-*-aix*) gdb_target=i386aix ;;
|
i[34]86-*-aix*) gdb_target=i386aix ;;
|
||||||
i[34]86-*-bsd*) gdb_target=i386bsd ;;
|
i[34]86-*-bsd*) gdb_target=i386bsd ;;
|
||||||
i[34]86-*-netbsd) gdb_target=i386bsd ;;
|
i[34]86-*-netbsd*) gdb_target=i386bsd ;;
|
||||||
i[34]86-*-go32) gdb_target=i386aout ;;
|
i[34]86-*-go32) gdb_target=i386aout ;;
|
||||||
i[34]86-*-lynx*) gdb_target=i386lynx
|
i[34]86-*-lynx*) gdb_target=i386lynx
|
||||||
configdirs="${configdirs} gdbserver"
|
configdirs="${configdirs} gdbserver"
|
||||||
|
|
|
@ -2184,18 +2184,6 @@ static struct sym_fns aout_sym_fns =
|
||||||
NULL /* next: pointer to next struct sym_fns */
|
NULL /* next: pointer to next struct sym_fns */
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct sym_fns netbsd386_sym_fns =
|
|
||||||
{
|
|
||||||
"netbsd-386", /* sym_name: name or name prefix of BFD target type */
|
|
||||||
10, /* sym_namelen: number of significant sym_name chars */
|
|
||||||
dbx_new_init, /* sym_new_init: init anything gbl to entire symtab */
|
|
||||||
dbx_symfile_init, /* sym_init: read initial info, setup for sym_read() */
|
|
||||||
dbx_symfile_read, /* sym_read: read a symbol file into symtab */
|
|
||||||
dbx_symfile_finish, /* sym_finish: finished with file, cleanup */
|
|
||||||
dbx_symfile_offsets, /* sym_offsets: parse user's offsets to internal form */
|
|
||||||
NULL /* next: pointer to next struct sym_fns */
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct sym_fns bout_sym_fns =
|
static struct sym_fns bout_sym_fns =
|
||||||
{
|
{
|
||||||
"b.out", /* sym_name: name or name prefix of BFD target type */
|
"b.out", /* sym_name: name or name prefix of BFD target type */
|
||||||
|
@ -2213,6 +2201,5 @@ _initialize_dbxread ()
|
||||||
{
|
{
|
||||||
add_symtab_fns(&sunos_sym_fns);
|
add_symtab_fns(&sunos_sym_fns);
|
||||||
add_symtab_fns(&aout_sym_fns);
|
add_symtab_fns(&aout_sym_fns);
|
||||||
add_symtab_fns(&netbsd386_sym_fns);
|
|
||||||
add_symtab_fns(&bout_sym_fns);
|
add_symtab_fns(&bout_sym_fns);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue