Beta version of the FR30 port.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
1c310106
ZR
1
2Thu Jan 7 17:50:15 EST 1999 Zdenek Radouch (radouch@cygnus.com)
3 Beta FR30 port.
4 * fr30-tdep.c
5 * config/fr30/tm-fr30.h
6
460845ab
DT
7Wed Jan 6 12:28:35 1999 David Taylor <taylor@texas.cygnus.com>
8
9 * configure.in: Add an --enable-tui argument. Construct
10 tui/Makefile from tui/Makefile.in. Use AM_PROG_CC_STDC. If we
11 have the GUI, then we need this to process libgui.h.
12 (ENABLE_CFLAGS): define and export BUILD_TUI.
13 (AC_CHECK_HEADERS): Add check for term.h.
14
15 * configure.host (hppa-*-hpux10.20, hppa-*-hpux11.0*): New configs.
16
17 * config.in, configure : regenerated.
18
19 * Makefile.in: Allow the TUI code to be conditionally enabled.
20 (TUI_LIBRARY): New variable, value are set by the configuration
21 script. Set to the empty string when the TUI isn't enabled.
22 (gdb$(GDBEXT)): Use those, instead of referring to all-tui and
23 tui/libtui.a directly.
24 (BUILD_TUI): build the tui -- only when configured with
25 --enable-tui.
26 (YLWRAP): use ylwrap to avoid problems on systems w/o bison.
27 (gdb$(EXEEXT)): make it dependent on BUILD_TUI.
28 (all-tui): remove dependency from phony target.
29 (c-exp.tab.c): use ylwrap instead of bison.
30 (jv-exp.tab.c): ditto.
31 (f-exp.tab.c): ditto.
32 (m2-exp.tab.c): ditto.
33 (ALLDEPFILES): add somread.c, hp-psymtab-read.c, hp-symtab-read.c.
34 (SFILES): remove the above files
35 (COMMON_OBS): remove somread.o
36 (SFILES): Add the tui files to this, so they get included in etags
37 tables.
38 (gdb$(EXEEXT)): Add all-tui to the list of dependencies, and add
39 tui/libtui.a to the link list.
40 (all-tui): New rule, which does a recursive make in the tui
41 subdir.
42 (tui/libtui.a): When recursing, pass down ${FLAGS_TO_PASS}. And
43 don't echo the make command. This is closer to what the other
44 recursions do.
45 (HFILES_NO_SRCDIR): add hpread.h
46 (COMMON_OBS): add hp-psymtab-read.o, hp-symtab-read.o
47 (SFILES): add hp-psymtab-read.c, hp-symtab-read.c add rules for
48 the new files. Remove hpread.c, hpread.o
49 (gdb$(EXEEXT)): Depend on the actual tui library, not on a
50 fictitious target. Since the fictitious target never existed,
51 make would always relink.
52 (tui/libtui.a): Always recurse to make sure the library is up to
53 date.
54
7517f04b
SS
55Wed Jan 6 12:05:12 1999 Stan Shebs <shebs@andros.cygnus.com>
56
57 * remote.c: Pacify --enable-build-warnings, reformat code
58 to conform to standards, fix spelling errors.
59 (ishex, stubhex, record_currthread, etc): Declare.
60 (ishex, stubhex): Declare char arg as int.
61 (pack_string): Comment out, never used but possibly useful.
62 (threadref_to_int, remote_get_threadinfo, etc): Make static.
63
34733701
DT
64Wed Jan 6 11:43:32 1999 David Taylor <taylor@texas.cygnus.com>
65
66 The following changes were made by Elena Zannoni
67 <ezannoni@cygnus.com> and Edith Epstein <eepstein@cygnus.com> as
68 part of a project to merge in changes made by HP.
69
70 * c-exp.y: use external flag hp_som_som_object_present to decide
71 whether code was compiled by HP's compilers. Add two new C++
72 tokens for true and false.
73 (yylex): check for template name is done differently for the
74 HP/aCC compiler case. Change some of the template processing code
75 for handling HP aCC templates. Handle true and false tokens.
76
b53a1514
MS
77Tue Jan 5 11:13:36 1999 Michael Snyder <msnyder@cleaver.cygnus.com>
78
79 * remote.c (record_curthread): Must not modify inferior_pid when
7517f04b
SS
80 called from wait_for_inferior. Instead, if a new thread-id is
81 detected, call add_thread.
82 (MAGIC_NULL_PID): new macro, use instead of the magic number
83 "42000".
84 (remote_find_new_threads): if inferior_pid is unknown, get and use
85 the current thread id.
b53a1514 86 (remote_start_remote): on connecting, attempt to get the current
7517f04b
SS
87 thread id for inferior_pid.
88 (remote_resume): If pid == -1, then resume any-thread (not the
89 current thread specifically). Also some cosmetic fixups.
b53a1514
MS
90
91 * thread.c (info_threads_command): don't initialize current_pid
92 until after call to FIND_NEW_THREADS (which may change inferior_pid).
93 Also some cosmetic fixups.
94 * infrun.c: cosmetic fixups and casts to avoid warnings.
95 * infcmd.c: cosmetic fixups, mainly long lines.
96
2819d3d6
DT
97Tue Jan 5 11:55:57 1999 David Taylor <taylor@texas.cygnus.com>
98
49082556
DT
99 * target.c (noprocess): terminate sentence with a period.
100 * breakpoint.c (catch_command_1): ditto.
101
eceede31
DT
102 * c-valprint.c (c_value_print): remove hack^2 from HP; it causes
103 testsuite losses with no real gain.
104
2819d3d6
DT
105 * inferior.h (START_INFERIOR_TRAPS_EXPECTED): restore, but only
106 if tm-*.h hasn't overridden default value.
107
d951f9e4
JM
1081999-01-04 Jason Molenda (jsm@bugshack.cygnus.com)
109
110 * configure.in: Fix whitespace indentation for --help.
111 * configure: Regenerated.
112
d7f71863
JM
1131999-01-04 Manuel Bouyer <bouyer@antioche.lip6.fr>
114
115 * main.c: Add --write command line option, document -w.
116 * gdb.1: Document --write.
117
f240337a
JM
1181999-01-04 Jason Molenda (jsm@bugshack.cygnus.com)
119
120 * configure.in: Require autoconf 2.12.1 or higher.
121 * doc/configure.in: Ditto.
122 * nlm/configure.in: Ditto.
123 * rdi-share/configure.in: Ditto.
124 * testsuite/configure.in: Ditto.
125 * doc/Makefile.in: Don't hardcode $(SHELL).
126 * nlm/Makefile.in: Ditto.
127 * rdi-share/Makefile.in: Ditto.
128 * testsuite/Makefile.in: Ditto.
129
64aa82eb
SS
130Mon Jan 4 12:53:03 1999 Stan Shebs <shebs@andros.cygnus.com>
131
132 * remote-vx.c (init_vx_ops, init_vx_run_ops): Remove unneeded
133 inits of new fields, including ref to bogus field.
134 (vx_ops, vx_run_ops): Make static.
135
3e1d3d67
DT
136Mon Jan 4 15:05:29 1999 David Taylor <taylor@texas.cygnus.com>
137
97bff53b
DT
138 * inferior.h (START_INFERIOR_TRAPS_EXPECTED): delete,
139 already defined in tm.h.
140
3e1d3d67
DT
141 * inftarg.c: change <sys/unistd.h> to <unistd.h> and
142 conditionalize its inclusion.
143 * infttrace.c: ditto.
144
73ec6020 145For older changes see ChangeLog-98
bd5635a1
RP
146\f
147Local Variables:
55d3002f 148mode: change-log
bd5635a1
RP
149left-margin: 8
150fill-column: 74
151version-control: never
152End:
This page took 0.462757 seconds and 4 git commands to generate.