Remove local BSD/USG hacks that are now in libiberty.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
b662acae
FF
1Thu Oct 24 23:06:40 1991 Fred Fish (fnf at cygnus.com)
2
ed317bb3
FF
3 * utils.c: Remove local BSD/USG hacks that are now in libiberty.
4
b662acae
FF
5 * dwarfread.c: Remove prototype for dwarfwarn. Does not work
6 with <varargs.h>.
7
313fdead
JG
8Thu Oct 24 09:33:44 1991 John Gilmore (gnu at cygnus.com)
9
b0077123
JG
10 * stack.c (frame_command): Always print. Use new
11 frame_select_command to select a frame without printing.
12
313fdead
JG
13 * dwarfread.c: Use <varargs.h>, since <stdarg.h> is not portable.
14
4a35d6e9
FF
15Thu Oct 24 01:32:51 1991 Fred Fish (fnf at cygnus.com)
16
35f5886e
FF
17 * dwarfread.c: New file for DWARF debugging format support.
18
19 * elfread.c: New file for ELF object file format support.
20
21 * procfs.c: New file for SVR4 /proc (process file system) support.
22
23 * tm-amix.h, xm-amix.h, tconfig/amix, xconfig/amix: New files for
24 Amiga UNIX support.
25
26 * xm-svr4.h, tm-svr4.h: New files for SVR4 support.
27
28 * xm-m68k.h: New file for host machines with m68k cpu.
29
bb4ff694
FF
30 * Makefile.in: Add elfread.c and dwarfread.c to SFILES_MAINDIR.
31 Add elfread.o and dwarfread.o to OBS.
32
33 * symfile.h: Add "elf" to list of supported formats in comment.
34
e2aab031
FF
35 * c-exp.y, defs.h, symtab.h, valprint.c: Add three new builtin
36 types to gdb, builtin_type_long_double, builtin_type_complex, and
37 builtin_type_double_complex. Add and use new TARGET_SHORT_BIT,
38 TARGET_INT_BIT, TARGET_LONG_BIT, TARGET_FLOAT_BIT,
39 TARGET_DOUBLE_BIT, TARGET_LONG_DOUBLE_BIT, TARGET_COMPLEX_BIT, and
40 TARGET_DOUBLE_COMPLEX_BIT, as the sizes in bits of the indicated
41 types on the target machine (ala the existing TARGET_LONG_LONG_BIT).
42
02070680
FF
43 * infrun.c: When using SVR4 /proc interface instead of ptrace(),
44 call proc_set_exec_trap() to setup child to stop at first instruction.
45
46 * inftarg.c: When using SVR4 /proc interface, call proc_wait()
47 rather than wait().
48
49 * m68k-tdep.c: Add new routines supply_gregset(), fill_gregset(),
50 supply_fpregset(), and fill_fpregset(), which are machine
51 dependent support routines for SVR4 /proc interface.
52
2bc2e684
FF
53 * utils.c: Add warning_setup() and warning(). Warning() behaves
54 the same as error() except that it returns normally rather than
55 jumping back to command level. Modules that don't want to call
56 warning() for some reason, but want to produce their own warnings,
57 can call warning_setup() to ensure compatibility with the way
58 warning() and error() deal with the terminal.
59
eaa1ef1d
FF
60 * symtab.c: Make internal errors produce more useful messages.
61
dcd15e5e
FF
62 * tm-68k.h: Move code that is duplicated in almost every single
63 m68k based machine's configuration files to this common file.
64 Duplications in the configuration files still need to be removed
65 (FIXME).
66
150f5436
FF
67 * infrun.c (child_create_inferior): System V versions must call
68 setpgrp() with no arguments, to comply with prototyping typically
69 in <unistd.h>.
70
cb17dfb1
FF
71 * munch: Add support for SVR4 style nm output.
72
4a35d6e9
FF
73 * dbxread.c, mipsread.c symmisc.c, symtab.c: Remove the object
74 file specific fields from the partial symbol table structure and
75 replace them with a pointer to private data for each different
76 flavor of object file reader to initialize appropriately.
77
b0077123
JG
78Wed Oct 23 09:38:20 1991 John Gilmore (gnu at cygnus.com)
79
80 * xconfig/sun[34]os4: Add note about strstr botch on sunos4.0.3c
81 and previous.
82
83 * mipsread.c (fixup_undef_type): New function. If a struct /
84 union / enum is defined in a header file but nowhere else used,
85 (by typedefing, pointer referencing or declaration) the mipsread code
86 builds the complete tree for the structure but leaves its code as
87 TYPE_CODE_UNDEF as it doesn't know what kind of aggregate it is.
88 Guess its type based on the details of the members.
89
0d3e7f60
SG
90Tue Oct 22 18:04:32 1991 Stu Grossman (grossman at cygnus.com)
91
92 * infrun.c (wait_for_inferior): Check return value from
93 find_pc_line.
94
bc6c937d
SG
95Mon Oct 21 17:47:03 1991 Stu Grossman (grossman at cygnus.com)
96
97 * infrun.c (wait_for_inferior): fix stepi/nexti that was broken
98 by my last edit to this routine.
99
b0077123
JG
100Mon Oct 21 14:27:43 1991 John Gilmore (gnu at cygnus.com)
101
102 * tm-sun3.h (FIX_CALL_DUMMY): problem with cross debugging.
103 FIX_CALL_DUMMY does unaligned accesses and/or forgets to byte swap
104 the values before putting them into the dummy code. (From Peter
105 Schauer)
106
44e4e473
SC
107Mon Oct 21 10:04:39 1991 Steve Chamberlain (steve at rtl.cygnus.com)
108
109 * configure.in: added ebmon target.
110
785ce19c 111Wed Oct 16 22:49:58 1991 John Gilmore (gnu at cygnus.com)
a1b8c5d6
JG
112
113 GDB-4.2 release!
114
115 * Makefile.in: Roll VERSION to 4.2.
44e4e473 116 * README, TODO, WHATS.NEW: Update.
a1b8c5d6
JG
117
118 * core.c (core_open): Improve error message for bad file.
119 Pass .reg virtual memory address to fetch_core_registers to help
120 it find the registers in the core-file header.
121 * coredep.c (fetch_core_registers): Take new argument, use it,
122 and pass it to register_addr to locate the block of registers.
785ce19c 123 * xm-mips.h: Update KERNEL_U_ADDR for new scheme. Cleanup a bit.
a1b8c5d6
JG
124
125 * dbxread.c (read_dbx_symtab, process_one_symbol): Handle
126 Sequent N_FN_SEQ like everybody else's N_FN.
127
128 * main.c: Circumvent SCO cc bug with #if !!defined(USG).
129 * tm-i386v.h: #endif guck.
130 * xconfig/i386*: Remove -Dgetpagesize()=4096 kludge.
785ce19c
JG
131 * xconfig/i386sco: Add HAVE_STRSTR to avoid ANSI bdeath.
132 * xconfig/tahoe: Add REGEX, which seems to be missing.
133
134 * coredep.c: Add <sys/types.h> for SCOnix.
135 * dbxread.c (read_dbx_symntab): Avoid coredump on malformed file.
136 * printcmd.c (print_formatted): Flush output before disassembly.
a1b8c5d6 137
93ae2e88
RP
138Tue Oct 15 20:12:32 1991 Roland H. Pesch (pesch at fowanton.cygnus.com)
139
9e0906a6
RP
140 * doc/refcard.tex (sec "Working Files"): consistent metavars and