* NEWS: Document exception-handling change.
[deliverable/binutils-gdb.git] / gdb / NEWS
CommitLineData
c906108c
SS
1 What has changed in GDB?
2 (Organized release by release)
3
797054e6
JB
4*** Changes since GDB 7.2
5
aae1c79a
DE
6* New command line options
7
8-data-directory DIR Specify DIR as the "data-directory".
9 This is mostly for testing purposes.
10
99e7ae30
DE
11* GDB has a new command: "set directories".
12 It is like the "dir" command except that it replaces the
13 source path list instead of augmenting it.
14
f4b8a18d
KW
15* OpenCL C
16 Initial support for the OpenCL C language (http://www.khronos.org/opencl)
17 has been integrated into GDB.
18
585d1eb8
PM
19* Python scripting
20
21 ** GDB values in Python are now callable if the value represents a
22 function. For example, if 'some_value' represents a function that
23 takes two integer parameters and returns a value, you can call
24 that function like so:
25
26 result = some_value (10,20)
27
0e3509db
DE
28 ** Module gdb.types has been added.
29 It contains a collection of utilities for working with gdb.Types objects:
30 get_basic_type, has_field, make_enum_dict.
31
7b51bc51
DE
32 ** Module gdb.printing has been added.
33 It contains utilities for writing and registering pretty-printers.
34 New classes: PrettyPrinter, SubPrettyPrinter,
35 RegexpCollectionPrettyPrinter.
36 New function: register_pretty_printer.
37
38 ** New commands "info pretty-printers", "enable pretty-printer" and
39 "disable pretty-printer" have been added.
40
99e7ae30
DE
41 ** gdb.parameter("directories") is now available.
42
def98928
TT
43* C++ Improvements:
44
45 ** GDB now puts template parameters in scope when debugging in an
46 instantiation. For example, if you have:
47
48 template<int X> int func (void) { return X; }
49
50 then if you step into func<5>, "print X" will show "5". This
51 feature requires proper debuginfo support from the compiler; it
52 was added to GCC 4.5.
53
66cb8159
TT
54 ** The motion commands "next", "finish", "until", and "advance" now
55 work better when exceptions are thrown. In particular, GDB will
56 no longer lose control of the inferior; instead, the GDB will
57 stop the inferior at the point at which the exception is caught.
58 This functionality requires a change in the exception handling
59 code that was introduced in GCC 4.5.
60
4aac0db7
UW
61* GDB now follows GCC's rules on accessing volatile objects when
62 reading or writing target state during expression evaluation.
63 One notable difference to prior behavior is that "print x = 0"
64 no longer generates a read of x; the value of the assignment is
65 now always taken directly from the value being assigned.
66
283e6a52
TT
67* GDB now has some support for using labels in the program's source in
68 linespecs. For instance, you can use "advance label" to continue
69 execution to a label.
70
71* GDB now has support for reading and writing a new .gdb_index
72 section. This section holds a fast index of DWARF debugging
73 information and can be used to greatly speed up GDB startup and
74 operation. See the documentation for `save gdb-index' for details.
75
b56df873 76* The "watch" command now accepts an optional "-location" argument.
14c0d4e1 77 When used, this causes GDB to watch the memory referred to by the
b56df873
TT
78 expression. Such a watchpoint is never deleted due to it going out
79 of scope.
80
ae53ffa4
PA
81* GDB now supports thread debugging of core dumps on GNU/Linux.
82
83 GDB now activates thread debugging using the libthread_db library
84 when debugging GNU/Linux core dumps, similarly to when debugging
85 live processes. As a result, when debugging a core dump file, GDB
86 is now able to display pthread_t ids of threads. For example, "info
87 threads" shows the same output as when debugging the process when it
88 was live. In earlier releases, you'd see something like this:
89
90 (gdb) info threads
91 * 1 LWP 6780 main () at main.c:10
92
93 While now you see this:
94
95 (gdb) info threads
96 * 1 Thread 0x7f0f5712a700 (LWP 6780) main () at main.c:10
97
98 It is also now possible to inspect TLS variables when debugging core
99 dumps.
100
101 When debugging a core dump generated on a machine other than the one
102 used to run GDB, you may need to point GDB at the correct
103 libthread_db library with the "set libthread-db-search-path"
104 command. See the user manual for more details on this command.
105
248c9dbc
JB
106* New features in the GDB remote stub, GDBserver
107
1aee7009
JB
108 ** GDBserver is now supported on PowerPC LynxOS (versions 4.x and 5.x),
109 and i686 LynxOS (version 5.x).
248c9dbc 110
6e1bb179
JB
111* Ada task switching is now supported on sparc-elf targets when
112 debugging a program using the Ravenscar Profile. For more information,
113 see the "Tasking Support when using the Ravenscar Profile" section
114 in the GDB user manual.
115
50c97f38
TT
116* Guile support was removed.
117
76b8507d 118*** Changes in GDB 7.2
bfbf3774 119
ba25b921
PA
120* Shared library support for remote targets by default
121
122 When GDB is configured for a generic, non-OS specific target, like
123 for example, --target=arm-eabi or one of the many *-*-elf targets,
124 GDB now queries remote stubs for loaded shared libraries using the
125 `qXfer:libraries:read' packet. Previously, shared library support
126 was always disabled for such configurations.
127
4656f5c6
SW
128* C++ Improvements:
129
130 ** Argument Dependent Lookup (ADL)
131
132 In C++ ADL lookup directs function search to the namespaces of its
133 arguments even if the namespace has not been imported.
134 For example:
135 namespace A
136 {
137 class B { };
138 void foo (B) { }
139 }
140 ...
141 A::B b
142 foo(b)
143 Here the compiler will search for `foo' in the namespace of 'b'
144 and find A::foo. GDB now supports this. This construct is commonly
145 used in the Standard Template Library for operators.
146
147 ** Improved User Defined Operator Support
148
149 In addition to member operators, GDB now supports lookup of operators
150 defined in a namespace and imported with a `using' directive, operators
151 defined in the global scope, operators imported implicitly from an
152 anonymous namespace, and the ADL operators mentioned in the previous
153 entry.
154 GDB now also supports proper overload resolution for all the previously
155 mentioned flavors of operators.
156
254e6b9e
DE
157 ** static const class members
158
159 Printing of static const class members that are initialized in the
160 class definition has been fixed.
161
711e434b
PM
162* Windows Thread Information Block access.
163
164 On Windows targets, GDB now supports displaying the Windows Thread
165 Information Block (TIB) structure. This structure is visible either
166 by using the new command `info w32 thread-information-block' or, by
167 dereferencing the new convenience variable named `$_tlb', a
168 thread-specific pointer to the TIB. This feature is also supported
169 when remote debugging using GDBserver.
170
0fb4aa4b
PA
171* Static tracepoints
172
173 Static tracepoints are calls in the user program into a tracing
174 library. One such library is a port of the LTTng kernel tracer to
175 userspace --- UST (LTTng Userspace Tracer, http://lttng.org/ust).
176 When debugging with GDBserver, GDB now supports combining the GDB
177 tracepoint machinery with such libraries. For example: the user can
178 use GDB to probe a static tracepoint marker (a call from the user
179 program into the tracing library) with the new "strace" command (see
180 "New commands" below). This creates a "static tracepoint" in the
181 breakpoint list, that can be manipulated with the same feature set
182 as fast and regular tracepoints. E.g., collect registers, local and
183 global variables, collect trace state variables, and define
184 tracepoint conditions. In addition, the user can collect extra
185 static tracepoint marker specific data, by collecting the new
186 $_sdata internal variable. When analyzing the trace buffer, you can
187 inspect $_sdata like any other variable available to GDB. For more
188 information, see the "Tracepoints" chapter in GDB user manual. New
189 remote packets have been defined to support static tracepoints, see
190 the "New remote packets" section below.
191
ca11e899
SS
192* Better reconstruction of tracepoints after disconnected tracing
193
194 GDB will attempt to download the original source form of tracepoint
195 definitions when starting a trace run, and then will upload these
196 upon reconnection to the target, resulting in a more accurate
197 reconstruction of the tracepoints that are in use on the target.
198
199* Observer mode
200
201 You can now exercise direct control over the ways that GDB can
202 affect your program. For instance, you can disallow the setting of
203 breakpoints, so that the program can run continuously (assuming
204 non-stop mode). In addition, the "observer" variable is available
205 to switch all of the different controls; in observer mode, GDB
206 cannot affect the target's behavior at all, which is useful for
207 tasks like diagnosing live systems in the field.
208
209* The new convenience variable $_thread holds the number of the
210 current thread.
211
711e434b
PM
212* New remote packets
213
214qGetTIBAddr
215
216 Return the address of the Windows Thread Information Block of a given thread.
217
dde08ee1
PA
218qRelocInsn
219
220 In response to several of the tracepoint packets, the target may now
221 also respond with a number of intermediate `qRelocInsn' request
222 packets before the final result packet, to have GDB handle
223 relocating an instruction to execute at a different address. This
224 is particularly useful for stubs that support fast tracepoints. GDB
225 reports support for this feature in the qSupported packet.
226
0fb4aa4b
PA
227qTfSTM, qTsSTM
228
229 List static tracepoint markers in the target program.
230
231qTSTMat
232
233 List static tracepoint markers at a given address in the target
234 program.
235
236qXfer:statictrace:read
237
238 Read the static trace data collected (by a `collect $_sdata'
239 tracepoint action). The remote stub reports support for this packet
240 to gdb's qSupported query.
241
ca11e899
SS
242QAllow
243
244 Send the current settings of GDB's permission flags.
245
246QTDPsrc
247
248 Send part of the source (textual) form of a tracepoint definition,
249 which includes location, conditional, and action list.
250
3f7b2faa
DE
251* The source command now accepts a -s option to force searching for the
252 script in the source search path even if the script name specifies
253 a directory.
254
d337e9f0
PA
255* New features in the GDB remote stub, GDBserver
256
0fb4aa4b
PA
257 - GDBserver now support tracepoints (including fast tracepoints, and
258 static tracepoints). The feature is currently supported by the
259 i386-linux and amd64-linux builds. See the "Tracepoints support
260 in gdbserver" section in the manual for more information.
261
262 GDBserver JIT compiles the tracepoint's conditional agent
263 expression bytecode into native code whenever possible for low
264 overhead dynamic tracepoints conditionals. For such tracepoints,
265 an expression that examines program state is evaluated when the
266 tracepoint is reached, in order to determine whether to capture
267 trace data. If the condition is simple and false, processing the
268 tracepoint finishes very quickly and no data is gathered.
269
270 GDBserver interfaces with the UST (LTTng Userspace Tracer) library
271 for static tracepoints support.
d337e9f0 272
c24d0242
PM
273 - GDBserver now supports x86_64 Windows 64-bit debugging.
274
c8d5aac9
L
275* GDB now sends xmlRegisters= in qSupported packet to indicate that
276 it understands register description.
277
7c953934
TT
278* The --batch flag now disables pagination and queries.
279
8685c86f
L
280* X86 general purpose registers
281
282 GDB now supports reading/writing byte, word and double-word x86
283 general purpose registers directly. This means you can use, say,
284 $ah or $ax to refer, respectively, to the byte register AH and
285 16-bit word register AX that are actually portions of the 32-bit
286 register EAX or 64-bit register RAX.
287
95a42b64 288* The `commands' command now accepts a range of breakpoints to modify.
86b17b60
PA
289 A plain `commands' following a command that creates multiple
290 breakpoints affects all the breakpoints set by that command. This
291 applies to breakpoints set by `rbreak', and also applies when a
292 single `break' command creates multiple breakpoints (e.g.,
293 breakpoints on overloaded c++ functions).
95a42b64 294
8bd10a10
CM
295* The `rbreak' command now accepts a filename specification as part of
296 its argument, limiting the functions selected by the regex to those
297 in the specified file.
298
ab38a727
PA
299* Support for remote debugging Windows and SymbianOS shared libraries
300 from Unix hosts has been improved. Non Windows GDB builds now can
301 understand target reported file names that follow MS-DOS based file
302 system semantics, such as file names that include drive letters and
303 use the backslash character as directory separator. This makes it
304 possible to transparently use the "set sysroot" and "set
305 solib-search-path" on Unix hosts to point as host copies of the
306 target's shared libraries. See the new command "set
307 target-file-system-kind" described below, and the "Commands to
308 specify files" section in the user manual for more information.
309
6149aea9
PA
310* New commands
311
f1421989
HZ
312eval template, expressions...
313 Convert the values of one or more expressions under the control
314 of the string template to a command line, and call it.
315
ab38a727
PA
316set target-file-system-kind unix|dos-based|auto
317show target-file-system-kind
318 Set or show the assumed file system kind for target reported file
319 names.
320
6149aea9
PA
321save breakpoints <filename>
322 Save all current breakpoint definitions to a file suitable for use
323 in a later debugging session. To read the saved breakpoint
324 definitions, use the `source' command.
325
326`save tracepoints' is a new alias for `save-tracepoints'. The latter
327is now deprecated.
328
0fb4aa4b
PA
329info static-tracepoint-markers
330 Display information about static tracepoint markers in the target.
331
332strace FN | FILE:LINE | *ADDR | -m MARKER_ID
333 Define a static tracepoint by probing a marker at the given
334 function, line, address, or marker ID.
335
ca11e899
SS
336set observer on|off
337show observer
338 Enable and disable observer mode.
339
340set may-write-registers on|off
341set may-write-memory on|off
342set may-insert-breakpoints on|off
343set may-insert-tracepoints on|off
344set may-insert-fast-tracepoints on|off
345set may-interrupt on|off
346 Set individual permissions for GDB effects on the target. Note that
347 some of these settings can have undesirable or surprising
348 consequences, particularly when changed in the middle of a session.
349 For instance, disabling the writing of memory can prevent
350 breakpoints from being inserted, cause single-stepping to fail, or
351 even crash your program, if you disable after breakpoints have been
352 inserted. However, GDB should not crash.
353
354set record memory-query on|off
355show record memory-query
356 Control whether to stop the inferior if memory changes caused
357 by an instruction cannot be recorded.
358
53a71c06
CR
359* Changed commands
360
361disassemble
362 The disassemble command now supports "start,+length" form of two arguments.
363
f3e9a817
PM
364* Python scripting
365
9279c692
JB
366** GDB now provides a new directory location, called the python directory,
367 where Python scripts written for GDB can be installed. The location
368 of that directory is <data-directory>/python, where <data-directory>
369 is the GDB data directory. For more details, see section `Scripting
370 GDB using Python' in the manual.
371
adc36818 372** The GDB Python API now has access to breakpoints, symbols, symbol
595939de
PM
373 tables, program spaces, inferiors, threads and frame's code blocks.
374 Additionally, GDB Parameters can now be created from the API, and
375 manipulated via set/show in the CLI.
f870a310 376
fa33c3cd 377** New functions gdb.target_charset, gdb.target_wide_charset,
07ca107c
DE
378 gdb.progspaces, gdb.current_progspace, and gdb.string_to_argv.
379
380** New exception gdb.GdbError.
fa33c3cd
DE
381
382** Pretty-printers are now also looked up in the current program space.
f3e9a817 383
967cf477
DE
384** Pretty-printers can now be individually enabled and disabled.
385
8a1ea21f
DE
386** GDB now looks for names of Python scripts to auto-load in a
387 special section named `.debug_gdb_scripts', in addition to looking
388 for a OBJFILE-gdb.py script when OBJFILE is read by the debugger.
389
a7bdde9e
VP
390* Tracepoint actions were unified with breakpoint commands. In particular,
391there are no longer differences in "info break" output for breakpoints and
392tracepoints and the "commands" command can be used for both tracepoints and
393regular breakpoints.
394
05071a4d
PA
395* New targets
396
397ARM Symbian arm*-*-symbianelf*
398
6aecb9c2
JB
399* D language support.
400 GDB now supports debugging programs written in the D programming
401 language.
402
431e49aa
TJB
403* GDB now supports the extended ptrace interface for PowerPC which is
404 available since Linux kernel version 2.6.34. This automatically enables
405 any hardware breakpoints and additional hardware watchpoints available in
406 the processor. The old ptrace interface exposes just one hardware
407 watchpoint and no hardware breakpoints.
408
409* GDB is now able to use the Data Value Compare (DVC) register available on
410 embedded PowerPC processors to implement in hardware simple watchpoint
411 conditions of the form:
412
413 watch ADDRESS|VARIABLE if ADDRESS|VARIABLE == CONSTANT EXPRESSION
414
415 This works in native GDB running on Linux kernels with the extended ptrace
416 interface mentioned above.
417
bfbf3774 418*** Changes in GDB 7.1
abc7453d 419
4eef138c
TT
420* C++ Improvements
421
422 ** Namespace Support
71dee663
SW
423
424 GDB now supports importing of namespaces in C++. This enables the
425 user to inspect variables from imported namespaces. Support for
426 namepace aliasing has also been added. So, if a namespace is
427 aliased in the current scope (e.g. namepace C=A; ) the user can
428 print variables using the alias (e.g. (gdb) print C::x).
429
4eef138c
TT
430 ** Bug Fixes
431
432 All known bugs relating to the printing of virtual base class were
433 fixed. It is now possible to call overloaded static methods using a
434 qualified name.
435
436 ** Cast Operators
437
438 The C++ cast operators static_cast<>, dynamic_cast<>, const_cast<>,
439 and reinterpret_cast<> are now handled by the C++ expression parser.
440
2d1c1221
ME
441* New targets
442
443Xilinx MicroBlaze microblaze-*-*
34207b9e 444Renesas RX rx-*-elf
2d1c1221
ME
445
446* New Simulators
447
448Xilinx MicroBlaze microblaze
34207b9e 449Renesas RX rx
2d1c1221 450
6c95b8df
PA
451* Multi-program debugging.
452
453 GDB now has support for multi-program (a.k.a. multi-executable or
454 multi-exec) debugging. This allows for debugging multiple inferiors
455 simultaneously each running a different program under the same GDB
456 session. See "Debugging Multiple Inferiors and Programs" in the
457 manual for more information. This implied some user visible changes
458 in the multi-inferior support. For example, "info inferiors" now
459 lists inferiors that are not running yet or that have exited
460 already. See also "New commands" and "New options" below.
461
d5551862
SS
462* New tracing features
463
464 GDB's tracepoint facility now includes several new features:
465
466 ** Trace state variables
f61e138d
SS
467
468 GDB tracepoints now include support for trace state variables, which
469 are variables managed by the target agent during a tracing
470 experiment. They are useful for tracepoints that trigger each
471 other, so for instance one tracepoint can count hits in a variable,
472 and then a second tracepoint has a condition that is true when the
473 count reaches a particular value. Trace state variables share the
474 $-syntax of GDB convenience variables, and can appear in both
475 tracepoint actions and condition expressions. Use the "tvariable"
476 command to create, and "info tvariables" to view; see "Trace State
477 Variables" in the manual for more detail.
7a697b8d 478
d5551862 479 ** Fast tracepoints
7a697b8d
SS
480
481 GDB now includes an option for defining fast tracepoints, which
482 targets may implement more efficiently, such as by installing a jump
483 into the target agent rather than a trap instruction. The resulting
484 speedup can be by two orders of magnitude or more, although the
485 tradeoff is that some program locations on some target architectures
486 might not allow fast tracepoint installation, for instance if the
487 instruction to be replaced is shorter than the jump. To request a
488 fast tracepoint, use the "ftrace" command, with syntax identical to
489 the regular trace command.
490
d5551862
SS
491 ** Disconnected tracing
492
493 It is now possible to detach GDB from the target while it is running
494 a trace experiment, then reconnect later to see how the experiment
495 is going. In addition, a new variable disconnected-tracing lets you
496 tell the target agent whether to continue running a trace if the
497 connection is lost unexpectedly.
498
00bf0b85
SS
499 ** Trace files
500
501 GDB now has the ability to save the trace buffer into a file, and
502 then use that file as a target, similarly to you can do with
503 corefiles. You can select trace frames, print data that was
504 collected in them, and use tstatus to display the state of the
505 tracing run at the moment that it was saved. To create a trace
506 file, use "tsave <filename>", and to use it, do "target tfile
507 <name>".
4daf5ac0
SS
508
509 ** Circular trace buffer
510
511 You can ask the target agent to handle the trace buffer as a
512 circular buffer, discarding the oldest trace frames to make room for
513 newer ones, by setting circular-trace-buffer to on. This feature may
514 not be available for all target agents.
515
21a0512e
PP
516* Changed commands
517
518disassemble
519 The disassemble command, when invoked with two arguments, now requires
520 the arguments to be comma-separated.
521
0fe7935b
DJ
522info variables
523 The info variables command now displays variable definitions. Files
524 which only declare a variable are not shown.
525
fb2e7cb4
JB
526source
527 The source command is now capable of sourcing Python scripts.
528 This feature is dependent on the debugger being build with Python
529 support.
530
531 Related to this enhancement is also the introduction of a new command
532 "set script-extension" (see below).
533
6c95b8df
PA
534* New commands (for set/show, see "New options" below)
535
399cd161
MS
536record save [<FILENAME>]
537 Save a file (in core file format) containing the process record
538 execution log for replay debugging at a later time.
539
540record restore <FILENAME>
541 Restore the process record execution log that was saved at an
542 earlier time, for replay debugging.
543
6c95b8df
PA
544add-inferior [-copies <N>] [-exec <FILENAME>]
545 Add a new inferior.
546
547clone-inferior [-copies <N>] [ID]
548 Make a new inferior ready to execute the same program another
549 inferior has loaded.
550
551remove-inferior ID
552 Remove an inferior.
553
554maint info program-spaces
555 List the program spaces loaded into GDB.
556
9a7071a8
JB
557set remote interrupt-sequence [Ctrl-C | BREAK | BREAK-g]
558show remote interrupt-sequence
559 Allow the user to select one of ^C, a BREAK signal or BREAK-g
560 as the sequence to the remote target in order to interrupt the execution.
561 Ctrl-C is a default. Some system prefers BREAK which is high level of
562 serial line for some certain time. Linux kernel prefers BREAK-g, a.k.a
563 Magic SysRq g. It is BREAK signal and character 'g'.
564
565set remote interrupt-on-connect [on | off]
566show remote interrupt-on-connect
567 When interrupt-on-connect is ON, gdb sends interrupt-sequence to
568 remote target when gdb connects to it. This is needed when you debug
569 Linux kernel.
570
571set remotebreak [on | off]
572show remotebreak
573Deprecated. Use "set/show remote interrupt-sequence" instead.
574
f61e138d
SS
575tvariable $NAME [ = EXP ]
576 Create or modify a trace state variable.
577
578info tvariables
579 List trace state variables and their values.
580
581delete tvariable $NAME ...
582 Delete one or more trace state variables.
583
6da95a67
SS
584teval EXPR, ...
585 Evaluate the given expressions without collecting anything into the
586 trace buffer. (Valid in tracepoint actions only.)
587
7a697b8d
SS
588ftrace FN / FILE:LINE / *ADDR
589 Define a fast tracepoint at the given function, line, or address.
590
b0f02ee9
JK
591* New expression syntax
592
593 GDB now parses the 0b prefix of binary numbers the same way as GCC does.
594 GDB now parses 0b101010 identically with 42.
595
6c95b8df
PA
596* New options
597
598set follow-exec-mode new|same
599show follow-exec-mode
600 Control whether GDB reuses the same inferior across an exec call or
601 creates a new one. This is useful to be able to restart the old
602 executable after the inferior having done an exec call.
603
236f1d4d
SS
604set default-collect EXPR, ...
605show default-collect
606 Define a list of expressions to be collected at each tracepoint.
607 This is a useful way to ensure essential items are not overlooked,
608 such as registers or a critical global variable.
609
d5551862
SS
610set disconnected-tracing
611show disconnected-tracing
612 If set to 1, the target is instructed to continue tracing if it
613 loses its connection to GDB. If 0, the target is to stop tracing
614 upon disconnection.
615
4daf5ac0
SS
616set circular-trace-buffer
617show circular-trace-buffer
618 If set to on, the target is instructed to use a circular trace buffer
619 and discard the oldest trace frames instead of stopping the trace due
620 to a full trace buffer. If set to off, the trace stops when the buffer
621 fills up. Some targets may not support this.
622
fb2e7cb4
JB
623set script-extension off|soft|strict
624show script-extension
625 If set to "off", the debugger does not perform any script language
626 recognition, and all sourced files are assumed to be GDB scripts.
627 If set to "soft" (the default), files are sourced according to
628 filename extension, falling back to GDB scripts if the first
629 evaluation failed.
630 If set to "strict", files are sourced according to filename extension.
631
2b71fc8e
JB
632set ada trust-PAD-over-XVS on|off
633show ada trust-PAD-over-XVS
634 If off, activate a workaround against a bug in the debugging information
635 generated by the compiler for PAD types (see gcc/exp_dbug.ads in
636 the GCC sources for more information about the GNAT encoding and
637 PAD types in particular). It is always safe to set this option to
638 off, but this introduces a slight performance penalty. The default
639 is on.
640
de2e5182
TT
641* Python API Improvements
642
643 ** GDB provides the new class gdb.LazyString. This is useful in
644 some pretty-printing cases. The new method gdb.Value.lazy_string
645 provides a simple way to create objects of this type.
646
647 ** The fields returned by gdb.Type.fields now have an
648 `is_base_class' attribute.
649
650 ** The new method gdb.Type.range returns the range of an array type.
651
652 ** The new method gdb.parse_and_eval can be used to parse and
653 evaluate an expression.
654
f61e138d
SS
655* New remote packets
656
657QTDV
658 Define a trace state variable.
659
660qTV
661 Get the current value of a trace state variable.
662
d5551862
SS
663QTDisconnected
664 Set desired tracing behavior upon disconnection.
665
4daf5ac0
SS
666QTBuffer:circular
667 Set the trace buffer to be linear or circular.
668
d5551862
SS
669qTfP, qTsP
670 Get data about the tracepoints currently in use.
671
2d483d34
MS
672* Bug fixes
673
674Process record now works correctly with hardware watchpoints.
675
6e0e5977
JB
676Multiple bug fixes have been made to the mips-irix port, making it
677much more reliable. In particular:
678 - Debugging threaded applications is now possible again. Previously,
679 GDB would hang while starting the program, or while waiting for
680 the program to stop at a breakpoint.
681 - Attaching to a running process no longer hangs.
682 - An error occurring while loading a core file has been fixed.
683 - Changing the value of the PC register now works again. This fixes
684 problems observed when using the "jump" command, or when calling
685 a function from GDB, or even when assigning a new value to $pc.
686 - With the "finish" and "return" commands, the return value for functions
687 returning a small array is now correctly printed.
688 - It is now possible to break on shared library code which gets executed
689 during a shared library init phase (code executed while executing
690 their .init section). Previously, the breakpoint would have no effect.
691 - GDB is now able to backtrace through the signal handler for
692 non-threaded programs.
693
93c26624
JK
694PIE (Position Independent Executable) programs debugging is now supported.
695This includes debugging execution of PIC (Position Independent Code) shared
696libraries although for that, it should be possible to run such libraries as an
697executable program.
698
abc7453d 699*** Changes in GDB 7.0
75feb17d 700
4efc6507
DE
701* GDB now has an interface for JIT compilation. Applications that
702dynamically generate code can create symbol files in memory and register
703them with GDB. For users, the feature should work transparently, and
704for JIT developers, the interface is documented in the GDB manual in the
705"JIT Compilation Interface" chapter.
706
782b2b07
SS
707* Tracepoints may now be conditional. The syntax is as for
708breakpoints; either an "if" clause appended to the "trace" command,
709or the "condition" command is available. GDB sends the condition to
710the target for evaluation using the same bytecode format as is used
711for tracepoint actions.
712
53a71c06
CR
713* The disassemble command now supports: an optional /r modifier, print the
714raw instructions in hex as well as in symbolic form, and an optional /m
715modifier to print mixed source+assembly.
e6158f16 716
e7a8dbfb
HZ
717* Process record and replay
718
719 In a architecture environment that supports ``process record and
720 replay'', ``process record and replay'' target can record a log of
721 the process execution, and replay it with both forward and reverse
722 execute commands.
723
64644d9b
MS
724* Reverse debugging: GDB now has new commands reverse-continue, reverse-
725step, reverse-next, reverse-finish, reverse-stepi, reverse-nexti, and
726set execution-direction {forward|reverse}, for targets that support
727reverse execution.
728
b9412953
DD
729* GDB now supports hardware watchpoints on MIPS/Linux systems. This
730feature is available with a native GDB running on kernel version
7312.6.28 or later.
732
6c7a06a3
TT
733* GDB now has support for multi-byte and wide character sets on the
734target. Strings whose character type is wchar_t, char16_t, or
735char32_t are now correctly printed. GDB supports wide- and unicode-
736literals in C, that is, L'x', L"string", u'x', u"string", U'x', and
737U"string" syntax. And, GDB allows the "%ls" and "%lc" formats in
738`printf'. This feature requires iconv to work properly; if your
739system does not have a working iconv, GDB can use GNU libiconv. See
740the installation instructions for more information.
741
f1838a98
UW
742* GDB now supports automatic retrieval of shared library files from
743remote targets. To use this feature, specify a system root that begins
744with the `remote:' prefix, either via the `set sysroot' command or via
745the `--with-sysroot' configure-time option.
746
55333a84
DE
747* "info sharedlibrary" now takes an optional regex of libraries to show,
748and it now reports if a shared library has no debugging information.
749
7f6a6314
PM
750* Commands `set debug-file-directory', `set solib-search-path' and `set args'
751now complete on file names.
752
65d12d83
TT
753* When completing in expressions, gdb will attempt to limit
754completions to allowable structure or union fields, where appropriate.
755For instance, consider:
756
757 # struct example { int f1; double f2; };
758 # struct example variable;
759 (gdb) p variable.
760
761If the user types TAB at the end of this command line, the available
762completions will be "f1" and "f2".
763
edb3359d
DJ
764* Inlined functions are now supported. They show up in backtraces, and
765the "step", "next", and "finish" commands handle them automatically.
766
2fae03e8
TT
767* GDB now supports the token-splicing (##) and stringification (#)
768operators when expanding macros. It also supports variable-arity
769macros.
770
47a3467a 771* GDB now supports inspecting extra signal information, exported by
58d6951d
DJ
772the new $_siginfo convenience variable. The feature is currently
773implemented on linux ARM, i386 and amd64.
774
775* GDB can now display the VFP floating point registers and NEON vector
776registers on ARM targets. Both ARM GNU/Linux native GDB and gdbserver
777can provide these registers (requires Linux 2.6.30 or later). Remote
778and simulator targets may also provide them.
47a3467a 779
08388c79
DE
780* New remote packets
781
782qSearch:memory:
783 Search memory for a sequence of bytes.
784
a6f3e723
SL
785QStartNoAckMode
786 Turn off `+'/`-' protocol acknowledgments to permit more efficient
787 operation over reliable transport links. Use of this packet is
788 controlled by the `set remote noack-packet' command.
789
d7713ae0
EZ
790vKill
791 Kill the process with the specified process ID. Use this in preference
792 to `k' when multiprocess protocol extensions are supported.
793
07e059b5
VP
794qXfer:osdata:read
795 Obtains additional operating system information
796
47a3467a
PA
797qXfer:siginfo:read
798qXfer:siginfo:write
799 Read or write additional signal information.
800
060871df
PA
801* Removed remote protocol undocumented extension
802
803 An undocumented extension to the remote protocol's `S' stop reply
804 packet that permited the stub to pass a process id was removed.
805 Remote servers should use the `T' stop reply packet instead.
806
c055b101 807* GDB now supports multiple function calling conventions according to the
a0ef4274 808DWARF-2 DW_AT_calling_convention function attribute.
c055b101
CV
809
810* The SH target utilizes the aforementioned change to distinguish between gcc
a0ef4274
DJ
811and Renesas calling convention. It also adds the new CLI commands
812`set/show sh calling-convention'.
c055b101 813
31fffb02
CS
814* GDB can now read compressed debug sections, as produced by GNU gold
815with the --compress-debug-sections=zlib flag.
816
88d8a8e0
JB
817* 64-bit core files are now supported on AIX.
818
7f99b190
JB
819* Thread switching is now supported on Tru64.
820
ccd213ac
DJ
821* Watchpoints can now be set on unreadable memory locations, e.g. addresses
822which will be allocated using malloc later in program execution.
823
1fddbabb 824* The qXfer:libraries:read remote procotol packet now allows passing a
31fffb02 825list of section offsets.
1fddbabb 826
a0ef4274
DJ
827* On GNU/Linux, GDB can now attach to stopped processes. Several race
828conditions handling signals delivered during attach or thread creation
829have also been fixed.
830
bfb8797a 831* GDB now supports the use of DWARF boolean types for Ada's type Boolean.
158c7665
PH
832From the user's standpoint, all unqualified instances of True and False
833are treated as the standard definitions, regardless of context.
bfb8797a 834
71c25dea
TT
835* GDB now parses C++ symbol and type names more flexibly. For
836example, given:
837
838 template<typename T> class C { };
839 C<char const *> c;
840
841GDB will now correctly handle all of:
842
843 ptype C<char const *>
844 ptype C<char const*>
845 ptype C<const char *>
846 ptype C<const char*>
847
ccd213ac
DJ
848* New features in the GDB remote stub, gdbserver
849
850 - The "--wrapper" command-line argument tells gdbserver to use a
851 wrapper program to launch programs for debugging.
852
7ae0e2a2
UW
853 - On PowerPC and S/390 targets, it is now possible to use a single
854 gdbserver executable to debug both 32-bit and 64-bit programs.
855 (This requires gdbserver itself to be built as a 64-bit executable.)
856
a6f3e723
SL
857 - gdbserver uses the new noack protocol mode for TCP connections to
858 reduce communications latency, if also supported and enabled in GDB.
859
da8bd9a3
DJ
860 - Support for the sparc64-linux-gnu target is now included in
861 gdbserver.
862
d70e31dd
DE
863 - The amd64-linux build of gdbserver now supports debugging both
864 32-bit and 64-bit programs.
865
866 - The i386-linux, amd64-linux, and i386-win32 builds of gdbserver
867 now support hardware watchpoints, and will use them automatically
868 as appropriate.
869
d57a3c85
TJB
870* Python scripting
871
872 GDB now has support for scripting using Python. Whether this is
873 available is determined at configure time.
874
d8906c6f
TJB
875 New GDB commands can now be written in Python.
876
aadc346a
JB
877* Ada tasking support
878
879 Ada tasks can now be inspected in GDB. The following commands have
880 been introduced:
881
882 info tasks
883 Print the list of Ada tasks.
884 info task N
885 Print detailed information about task number N.
886 task
887 Print the task number of the current task.
888 task N
889 Switch the context of debugging to task number N.
890
adb483fe
DJ
891* Support for user-defined prefixed commands. The "define" command can
892add new commands to existing prefixes, e.g. "target".
893
2277426b
PA
894* Multi-inferior, multi-process debugging.
895
896 GDB now has generalized support for multi-inferior debugging. See
897 "Debugging Multiple Inferiors" in the manual for more information.
898 Although availability still depends on target support, the command
899 set is more uniform now. The GNU/Linux specific multi-forks support
900 has been migrated to this new framework. This implied some user
901 visible changes; see "New commands" and also "Removed commands"
902 below.
903
08d16641
PA
904* Target descriptions can now describe the target OS ABI. See the
905"Target Description Format" section in the user manual for more
906information.
907
e35359c5
UW
908* Target descriptions can now describe "compatible" architectures
909to indicate that the target can execute applications for a different
910architecture in addition to those for the main target architecture.
911See the "Target Description Format" section in the user manual for
912more information.
913
85e747d2
UW
914* Multi-architecture debugging.
915
916 GDB now includes general supports for debugging applications on
917 hybrid systems that use more than one single processor architecture
918 at the same time. Each such hybrid architecture still requires
919 specific support to be added. The only hybrid architecture supported
920 in this version of GDB is the Cell Broadband Engine.
921
922* GDB now supports integrated debugging of Cell/B.E. applications that
923use both the PPU and SPU architectures. To enable support for hybrid
924Cell/B.E. debugging, you need to configure GDB to support both the
925powerpc-linux or powerpc64-linux and the spu-elf targets, using the
926--enable-targets configure option.
927
11ade57a
PA
928* Non-stop mode debugging.
929
930 For some targets, GDB now supports an optional mode of operation in
931 which you can examine stopped threads while other threads continue
932 to execute freely. This is referred to as non-stop mode, with the
933 old mode referred to as all-stop mode. See the "Non-Stop Mode"
934 section in the user manual for more information.
935
936 To be able to support remote non-stop debugging, a remote stub needs
937 to implement the non-stop mode remote protocol extensions, as
938 described in the "Remote Non-Stop" section of the user manual. The
939 GDB remote stub, gdbserver, has been adjusted to support these
940 extensions on linux targets.
941
d7713ae0 942* New commands (for set/show, see "New options" below)
75feb17d 943
a96d9b2e
SDJ
944catch syscall [NAME(S) | NUMBER(S)]
945 Catch system calls. Arguments, which should be names of system
946 calls or their numbers, mean catch only those syscalls. Without
947 arguments, every syscall will be caught. When the inferior issues
948 any of the specified syscalls, GDB will stop and announce the system
949 call, both when it is called and when its call returns. This
950 feature is currently available with a native GDB running on the
951 Linux Kernel, under the following architectures: x86, x86_64,
952 PowerPC and PowerPC64.
953
08388c79
DE
954find [/size-char] [/max-count] start-address, end-address|+search-space-size,
955 val1 [, val2, ...]
956 Search memory for a sequence of bytes.
957
d57a3c85
TJB
958maint set python print-stack
959maint show python print-stack
960 Show a stack trace when an error is encountered in a Python script.
961
962python [CODE]
963 Invoke CODE by passing it to the Python interpreter.
964
d7713ae0
EZ
965macro define
966macro list
967macro undef
968 These allow macros to be defined, undefined, and listed
969 interactively.
970
971info os processes
972 Show operating system information about processes.
973
2277426b
PA
974info inferiors
975 List the inferiors currently under GDB's control.
976
977inferior NUM
978 Switch focus to inferior number NUM.
979
980detach inferior NUM
981 Detach from inferior number NUM.
982
983kill inferior NUM
984 Kill inferior number NUM.
985
d7713ae0
EZ
986* New options
987
3285f3fe
UW
988set spu stop-on-load
989show spu stop-on-load
990 Control whether to stop for new SPE threads during Cell/B.E. debugging.
991
ff1a52c6
UW
992set spu auto-flush-cache
993show spu auto-flush-cache
994 Control whether to automatically flush the software-managed cache
995 during Cell/B.E. debugging.
996
d7713ae0
EZ
997set sh calling-convention
998show sh calling-convention
999 Control the calling convention used when calling SH target functions.
1000
e0a3ce09 1001set debug timestamp
75feb17d 1002show debug timestamp
d7713ae0
EZ
1003 Control display of timestamps with GDB debugging output.
1004
1005set disassemble-next-line
1006show disassemble-next-line
1007 Control display of disassembled source lines or instructions when
1008 the debuggee stops.
1009
1010set remote noack-packet
1011show remote noack-packet
1012 Set/show the use of remote protocol QStartNoAckMode packet. See above
1013 under "New remote packets."
1014
1015set remote query-attached-packet
1016show remote query-attached-packet
1017 Control use of remote protocol `qAttached' (query-attached) packet.
1018
1019set remote read-siginfo-object
1020show remote read-siginfo-object
1021 Control use of remote protocol `qXfer:siginfo:read' (read-siginfo-object)
1022 packet.
1023
1024set remote write-siginfo-object
1025show remote write-siginfo-object
1026 Control use of remote protocol `qXfer:siginfo:write' (write-siginfo-object)
1027 packet.
1028
40ab02ce
MS
1029set remote reverse-continue
1030show remote reverse-continue
1031 Control use of remote protocol 'bc' (reverse-continue) packet.
1032
1033set remote reverse-step
1034show remote reverse-step
1035 Control use of remote protocol 'bs' (reverse-step) packet.
1036
d7713ae0
EZ
1037set displaced-stepping
1038show displaced-stepping
1039 Control displaced stepping mode. Displaced stepping is a way to
1040 single-step over breakpoints without removing them from the debuggee.
1041 Also known as "out-of-line single-stepping".
1042
1043set debug displaced
1044show debug displaced
1045 Control display of debugging info for displaced stepping.
1046
1047maint set internal-error
1048maint show internal-error
1049 Control what GDB does when an internal error is detected.
1050
1051maint set internal-warning
1052maint show internal-warning
1053 Control what GDB does when an internal warning is detected.
75feb17d 1054
ccd213ac
DJ
1055set exec-wrapper
1056show exec-wrapper
1057unset exec-wrapper
1058 Use a wrapper program to launch programs for debugging.
fa4727a6 1059
aad4b048
JB
1060set multiple-symbols (all|ask|cancel)
1061show multiple-symbols
1062 The value of this variable can be changed to adjust the debugger behavior
1063 when an expression or a breakpoint location contains an ambiguous symbol
1064 name (an overloaded function name, for instance).
1065
74960c60
VP
1066set breakpoint always-inserted
1067show breakpoint always-inserted
1068 Keep breakpoints always inserted in the target, as opposed to inserting
1069 them when resuming the target, and removing them when the target stops.
1070 This option can improve debugger performance on slow remote targets.
1071
0428b8f5
DJ
1072set arm fallback-mode (arm|thumb|auto)
1073show arm fallback-mode
1074set arm force-mode (arm|thumb|auto)
1075show arm force-mode
1076 These commands control how ARM GDB determines whether instructions
1077 are ARM or Thumb. The default for both settings is auto, which uses
1078 the current CPSR value for instructions without symbols; previous
1079 versions of GDB behaved as if "set arm fallback-mode arm".
1080
10568435
JK
1081set disable-randomization
1082show disable-randomization
1083 Standalone programs run with the virtual address space randomization enabled
1084 by default on some platforms. This option keeps the addresses stable across
1085 multiple debugging sessions.
1086
d7713ae0
EZ
1087set non-stop
1088show non-stop
1089 Control whether other threads are stopped or not when some thread hits
1090 a breakpoint.
1091
b3eb342c 1092set target-async
d7713ae0 1093show target-async
b3eb342c
VP
1094 Requests that asynchronous execution is enabled in the target, if available.
1095 In this case, it's possible to resume target in the background, and interact
1096 with GDB while the target is running. "show target-async" displays the
1097 current state of asynchronous execution of the target.
1098
6c7a06a3
TT
1099set target-wide-charset
1100show target-wide-charset
1101 The target-wide-charset is the name of the character set that GDB
1102 uses when printing characters whose type is wchar_t.
1103
84603566
SL
1104set tcp auto-retry (on|off)
1105show tcp auto-retry
1106set tcp connect-timeout
1107show tcp connect-timeout
1108 These commands allow GDB to retry failed TCP connections to a remote stub
1109 with a specified timeout period; this is useful if the stub is launched
1110 in parallel with GDB but may not be ready to accept connections immediately.
1111
17a37d48
PP
1112set libthread-db-search-path
1113show libthread-db-search-path
1114 Control list of directories which GDB will search for appropriate
1115 libthread_db.
1116
d4db2f36
PA
1117set schedule-multiple (on|off)
1118show schedule-multiple
1119 Allow GDB to resume all threads of all processes or only threads of
1120 the current process.
1121
4e5d721f
DE
1122set stack-cache
1123show stack-cache
1124 Use more aggressive caching for accesses to the stack. This improves
1125 performance of remote debugging (particularly backtraces) without
1126 affecting correctness.
1127
910c5da8
JB
1128set interactive-mode (on|off|auto)
1129show interactive-mode
1130 Control whether GDB runs in interactive mode (on) or not (off).
1131 When in interactive mode, GDB waits for the user to answer all
1132 queries. Otherwise, GDB does not wait and assumes the default
1133 answer. When set to auto (the default), GDB determines which
1134 mode to use based on the stdin settings.
1135
2277426b
PA
1136* Removed commands
1137
1138info forks
1139 For program forks, this is replaced by the new more generic `info
1140 inferiors' command. To list checkpoints, you can still use the
1141 `info checkpoints' command, which was an alias for the `info forks'
1142 command.
1143
1144fork NUM
1145 Replaced by the new `inferior' command. To switch between
1146 checkpoints, you can still use the `restart' command, which was an
1147 alias for the `fork' command.
1148
1149process PID
1150 This is removed, since some targets don't have a notion of
1151 processes. To switch between processes, you can still use the
1152 `inferior' command using GDB's own inferior number.
1153
1154delete fork NUM
1155 For program forks, this is replaced by the new more generic `kill
1156 inferior' command. To delete a checkpoint, you can still use the
1157 `delete checkpoint' command, which was an alias for the `delete
1158 fork' command.
1159
1160detach fork NUM
1161 For program forks, this is replaced by the new more generic `detach
1162 inferior' command. To detach a checkpoint, you can still use the
1163 `detach checkpoint' command, which was an alias for the `detach
1164 fork' command.
1165
a80b95ba
TG
1166* New native configurations
1167
1168x86/x86_64 Darwin i[34567]86-*-darwin*
1169
b8bfd3ed
JB
1170x86_64 MinGW x86_64-*-mingw*
1171
75a2d5e7
TT
1172* New targets
1173
c28c63d8 1174Lattice Mico32 lm32-*
75a2d5e7 1175x86 DICOS i[34567]86-*-dicos*
4c1d2973 1176x86_64 DICOS x86_64-*-dicos*
5f814c3b 1177S+core 3 score-*-*
75a2d5e7 1178
6de3146c
PA
1179* The GDB remote stub, gdbserver, now supports x86 Windows CE
1180 (mingw32ce) debugging.
1181
d5cbbe6e
JB
1182* Removed commands
1183
1184catch load
1185catch unload
1186 These commands were actually not implemented on any target.
1187
75feb17d 1188*** Changes in GDB 6.8
f9ed52be 1189
af5ca30d
NH
1190* New native configurations
1191
1192NetBSD/hppa hppa*-*netbsd*
94a0e877 1193Xtensa GNU/Linux xtensa*-*-linux*
af5ca30d
NH
1194
1195* New targets
1196
1197NetBSD/hppa hppa*-*-netbsd*
94a0e877 1198Xtensa GNU/Lunux xtensa*-*-linux*
af5ca30d 1199
7a404eba
PA
1200* Change in command line behavior -- corefiles vs. process ids.
1201
1202 When the '-p NUMBER' or '--pid NUMBER' options are used, and
1203 attaching to process NUMBER fails, GDB no longer attempts to open a
1204 core file named NUMBER. Attaching to a program using the -c option
1205 is no longer supported. Instead, use the '-p' or '--pid' options.
1206
430ebac9
PA
1207* GDB can now be built as a native debugger for debugging Windows x86
1208(mingw32) Portable Executable (PE) programs.
1209
fe6fbf8b 1210* Pending breakpoints no longer change their number when their address
8d5f9c6f 1211is resolved.
fe6fbf8b
VP
1212
1213* GDB now supports breakpoints with multiple locations,
8d5f9c6f
DJ
1214including breakpoints on C++ constructors, inside C++ templates,
1215and in inlined functions.
fe6fbf8b 1216
10665d76
JB
1217* GDB's ability to debug optimized code has been improved. GDB more
1218accurately identifies function bodies and lexical blocks that occupy
1219more than one contiguous range of addresses.
1220
7cc46491
DJ
1221* Target descriptions can now describe registers for PowerPC.
1222
d71340b8
DJ
1223* The GDB remote stub, gdbserver, now supports the AltiVec and SPE
1224registers on PowerPC targets.
1225
523c4513
DJ
1226* The GDB remote stub, gdbserver, now supports thread debugging on GNU/Linux
1227targets even when the libthread_db library is not available.
1228
a6b151f1
DJ
1229* The GDB remote stub, gdbserver, now supports the new file transfer
1230commands (remote put, remote get, and remote delete).
1231
2d717e4f
DJ
1232* The GDB remote stub, gdbserver, now supports run and attach in
1233extended-remote mode.
1234
24a836bd 1235* hppa*64*-*-hpux11* target broken
d001be7a
DJ
1236The debugger is unable to start a program and fails with the following
1237error: "Error trying to get information about dynamic linker".
1238The gdb-6.7 release is also affected.
24a836bd 1239
d0c678e6
UW
1240* GDB now supports the --enable-targets= configure option to allow
1241building a single GDB executable that supports multiple remote
1242target architectures.
1243
d64a946d
TJB
1244* GDB now supports debugging C and C++ programs which use the
1245Decimal Floating Point extension. In addition, the PowerPC target
1246now has a set of pseudo-registers to inspect decimal float values
1247stored in two consecutive float registers.
1248
ee163bf5
VP
1249* The -break-insert MI command can optionally create pending
1250breakpoints now.
1251
b93b6ca7 1252* Improved support for debugging Ada
d001be7a
DJ
1253Many improvements to the Ada language support have been made. These
1254include:
b93b6ca7
JB
1255 - Better support for Ada2005 interface types
1256 - Improved handling of arrays and slices in general
1257 - Better support for Taft-amendment types
1258 - The '{type} ADDRESS' expression is now allowed on the left hand-side
1259 of an assignment
1260 - Improved command completion in Ada
1261 - Several bug fixes
1262
d001be7a
DJ
1263* GDB on GNU/Linux and HP/UX can now debug through "exec" of a new
1264process.
1265
a6b151f1
DJ
1266* New commands
1267
6d53d0af
JB
1268set print frame-arguments (all|scalars|none)
1269show print frame-arguments
1270 The value of this variable can be changed to control which argument
1271 values should be printed by the debugger when displaying a frame.
1272
a6b151f1
DJ
1273remote put
1274remote get
1275remote delete
1276 Transfer files to and from a remote target, and delete remote files.
1277
1278* New MI commands
1279
1280-target-file-put
1281-target-file-get
1282-target-file-delete
1283 Transfer files to and from a remote target, and delete remote files.
1284
1285* New remote packets
1286
1287vFile:open:
1288vFile:close:
1289vFile:pread:
1290vFile:pwrite:
1291vFile:unlink:
1292 Open, close, read, write, and delete files on the remote system.
d0c678e6 1293
2d717e4f
DJ
1294vAttach
1295 Attach to an existing process on the remote system, in extended-remote
1296 mode.
1297
1298vRun
1299 Run a new process on the remote system, in extended-remote mode.
1300
8d5f9c6f 1301*** Changes in GDB 6.7
6dd09645 1302
19d378fc
MS
1303* Resolved 101 resource leaks, null pointer dereferences, etc. in gdb,
1304bfd, libiberty and opcodes, as revealed by static analysis donated by
1305Coverity, Inc. (http://scan.coverity.com).
1306
3a40aaa0
UW
1307* When looking up multiply-defined global symbols, GDB will now prefer the
1308symbol definition in the current shared library if it was built using the
1309-Bsymbolic linker option.
1310
a6ec25f2
BW
1311* When the Text User Interface (TUI) is not configured, GDB will now
1312recognize the -tui command-line option and print a message that the TUI
1313is not supported.
1314
6dd09645
JB
1315* The GDB remote stub, gdbserver, now has lower overhead for high
1316frequency signals (e.g. SIGALRM) via the QPassSignals packet.
1317
c9bb8148
DJ
1318* GDB for MIPS targets now autodetects whether a remote target provides
131932-bit or 64-bit register values.
1320
0d5de010
DJ
1321* Support for C++ member pointers has been improved.
1322
23181151
DJ
1323* GDB now understands XML target descriptions, which specify the
1324target's overall architecture. GDB can read a description from
1325a local file or over the remote serial protocol.
1326
ea37ba09
DJ
1327* Vectors of single-byte data use a new integer type which is not
1328automatically displayed as character or string data.
1329
1330* The /s format now works with the print command. It displays
1331arrays of single-byte integers and pointers to single-byte integers
1332as strings.
e1f48ead 1333
123dc839
DJ
1334* Target descriptions can now describe target-specific registers,
1335for architectures which have implemented the support (currently
8d5f9c6f 1336only ARM, M68K, and MIPS).
123dc839 1337
05a4558a
DJ
1338* GDB and the GDB remote stub, gdbserver, now support the XScale
1339iWMMXt coprocessor.
fb1e4ffc 1340
7c963485
PA
1341* The GDB remote stub, gdbserver, has been updated to support
1342ARM Windows CE (mingw32ce) debugging, and GDB Windows CE support
1343has been rewritten to use the standard GDB remote protocol.
1344
b18be20d
DJ
1345* GDB can now step into C++ functions which are called through thunks.
1346
0ca420ce
UW
1347* GDB for the Cell/B.E. SPU now supports overlay debugging.
1348
31d99776
DJ
1349* The GDB remote protocol "qOffsets" packet can now honor ELF segment
1350layout. It also supports a TextSeg= and DataSeg= response when only
1351segment base addresses (rather than offsets) are available.
1352
a4642986
MR
1353* The /i format now outputs any trailing branch delay slot instructions
1354immediately following the last instruction within the count specified.
1355
cfa9d6d9
DJ
1356* The GDB remote protocol "T" stop reply packet now supports a
1357"library" response. Combined with the new "qXfer:libraries:read"
1358packet, this response allows GDB to debug shared libraries on targets
1359where the operating system manages the list of loaded libraries (e.g.
1360Windows and SymbianOS).
255e7678
DJ
1361
1362* The GDB remote stub, gdbserver, now supports dynamic link libraries
1363(DLLs) on Windows and Windows CE targets.
f5db8714
JK
1364
1365* GDB now supports a faster verification that a .debug file matches its binary
1366according to its build-id signature, if the signature is present.
cfa9d6d9 1367
c9bb8148
DJ
1368* New commands
1369
23776285
MR
1370set remoteflow
1371show remoteflow
1372 Enable or disable hardware flow control (RTS/CTS) on the serial port
1373 when debugging using remote targets.
1374
c9bb8148
DJ
1375set mem inaccessible-by-default
1376show mem inaccessible-by-default
1377 If the target supplies a memory map, for instance via the remote
1378 protocol's "qXfer:memory-map:read" packet, setting this variable
1379 prevents GDB from accessing memory outside the memory map. This
1380 is useful for targets with memory mapped registers or which react
1381 badly to accesses of unmapped address space.
1382
1383set breakpoint auto-hw
1384show breakpoint auto-hw
1385 If the target supplies a memory map, for instance via the remote
1386 protocol's "qXfer:memory-map:read" packet, setting this variable
1387 lets GDB use hardware breakpoints automatically for memory regions
1388 where it can not use software breakpoints. This covers both the
1389 "break" command and internal breakpoints used for other commands
1390 including "next" and "finish".
1391
0e420bd8
JB
1392catch exception
1393catch exception unhandled
1394 Stop the program execution when Ada exceptions are raised.
1395
1396catch assert
1397 Stop the program execution when an Ada assertion failed.
1398
f822c95b
DJ
1399set sysroot
1400show sysroot
1401 Set an alternate system root for target files. This is a more
1402 general version of "set solib-absolute-prefix", which is now
1403 an alias to "set sysroot".
1404
83cc5c53
UW
1405info spu
1406 Provide extended SPU facility status information. This set of
1407 commands is available only when debugging the Cell/B.E. SPU
1408 architecture.
1409
bd372731
MK
1410* New native configurations
1411
1412OpenBSD/sh sh*-*openbsd*
1413
23181151
DJ
1414set tdesc filename
1415unset tdesc filename
1416show tdesc filename
1417 Use the specified local file as an XML target description, and do
1418 not query the target for its built-in description.
1419
c9bb8148
DJ
1420* New targets
1421
54fe9172 1422OpenBSD/sh sh*-*-openbsd*
c9bb8148 1423MIPS64 GNU/Linux (gdbserver) mips64-linux-gnu
c077150c 1424Toshiba Media Processor mep-elf
c9bb8148 1425
6dd09645
JB
1426* New remote packets
1427
1428QPassSignals:
1429 Ignore the specified signals; pass them directly to the debugged program
1430 without stopping other threads or reporting them to GDB.
1431
23181151
DJ
1432qXfer:features:read:
1433 Read an XML target description from the target, which describes its
1434 features.
6dd09645 1435
83cc5c53
UW
1436qXfer:spu:read:
1437qXfer:spu:write:
1438 Read or write contents of an spufs file on the target system. These
1439 packets are available only on the Cell/B.E. SPU architecture.
1440
cfa9d6d9
DJ
1441qXfer:libraries:read:
1442 Report the loaded shared libraries. Combined with new "T" packet
1443 response, this packet allows GDB to debug shared libraries on
1444 targets where the operating system manages the list of loaded
1445 libraries (e.g. Windows and SymbianOS).
1446
483367ee
DJ
1447* Removed targets
1448
1449Support for these obsolete configurations has been removed.
1450
d08950c4
UW
1451alpha*-*-osf1*
1452alpha*-*-osf2*
7ce59000 1453d10v-*-*
483367ee
DJ
1454hppa*-*-hiux*
1455i[34567]86-ncr-*
1456i[34567]86-*-dgux*
1457i[34567]86-*-lynxos*
1458i[34567]86-*-netware*
1459i[34567]86-*-sco3.2v5*
1460i[34567]86-*-sco3.2v4*
1461i[34567]86-*-sco*
1462i[34567]86-*-sysv4.2*
1463i[34567]86-*-sysv4*
1464i[34567]86-*-sysv5*
1465i[34567]86-*-unixware2*
1466i[34567]86-*-unixware*
1467i[34567]86-*-sysv*
1468i[34567]86-*-isc*
1469m68*-cisco*-*
1470m68*-tandem-*
ad527d2e 1471mips*-*-pe
483367ee 1472rs6000-*-lynxos*
ad527d2e 1473sh*-*-pe
483367ee 1474
7ce59000
DJ
1475* Other removed features
1476
1477target abug
1478target cpu32bug
1479target est
1480target rom68k
1481
1482 Various m68k-only ROM monitors.
1483
ea35711c
DJ
1484target hms
1485target e7000
1486target sh3
1487target sh3e
1488
1489 Various Renesas ROM monitors and debugging interfaces for SH and
1490 H8/300.
1491
1492target ocd
1493
1494 Support for a Macraigor serial interface to on-chip debugging.
1495 GDB does not directly support the newer parallel or USB
1496 interfaces.
1497
7ce59000
DJ
1498DWARF 1 support
1499
1500 A debug information format. The predecessor to DWARF 2 and
1501 DWARF 3, which are still supported.
1502
54d61198
DJ
1503Support for the HP aCC compiler on HP-UX/PA-RISC
1504
1505 SOM-encapsulated symbolic debugging information, automatic
1506 invocation of pxdb, and the aCC custom C++ ABI. This does not
1507 affect HP-UX for Itanium or GCC for HP-UX/PA-RISC. Code compiled
1508 with aCC can still be debugged on an assembly level.
1509
ea35711c
DJ
1510MIPS ".pdr" sections
1511
1512 A MIPS-specific format used to describe stack frame layout
1513 in debugging information.
1514
1515Scheme support
1516
1517 GDB could work with an older version of Guile to debug
1518 the interpreter and Scheme programs running in it.
1519
1a69e1e4
DJ
1520set mips stack-arg-size
1521set mips saved-gpreg-size
1522
1523 Use "set mips abi" to control parameter passing for MIPS.
1524
6dd09645 1525*** Changes in GDB 6.6
e374b601 1526
ca3bf3bd
DJ
1527* New targets
1528
1529Xtensa xtensa-elf
9c309e77 1530Cell Broadband Engine SPU spu-elf
ca3bf3bd 1531
6aec2e11
DJ
1532* GDB can now be configured as a cross-debugger targeting native Windows
1533(mingw32) or Cygwin. It can communicate with a remote debugging stub
1534running on a Windows system over TCP/IP to debug Windows programs.
1535
1536* The GDB remote stub, gdbserver, has been updated to support Windows and
1537Cygwin debugging. Both single-threaded and multi-threaded programs are
1538supported.
1539
17218d91
DJ
1540* The "set trust-readonly-sections" command works again. This command was
1541broken in GDB 6.3, 6.4, and 6.5.
1542
9ebce043
DJ
1543* The "load" command now supports writing to flash memory, if the remote
1544stub provides the required support.
1545
7d3d3ece
DJ
1546* Support for GNU/Linux Thread Local Storage (TLS, per-thread variables) no
1547longer requires symbolic debug information (e.g. DWARF-2).
1548
4f8253f3
JB
1549* New commands
1550
1551set substitute-path
1552unset substitute-path
1553show substitute-path
1554 Manage a list of substitution rules that GDB uses to rewrite the name
1555 of the directories where the sources are located. This can be useful
1556 for instance when the sources were moved to a different location
1557 between compilation and debugging.
1558
9fa66fd7
AS
1559set trace-commands
1560show trace-commands
1561 Print each CLI command as it is executed. Each command is prefixed with
1562 a number of `+' symbols representing the nesting depth.
1563 The source command now has a `-v' option to enable the same feature.
1564
1f5befc1
DJ
1565* REMOVED features
1566
1567The ARM Demon monitor support (RDP protocol, "target rdp").
1568
2ec3381a
DJ
1569Kernel Object Display, an embedded debugging feature which only worked with
1570an obsolete version of Cisco IOS.
1571
3d00d119
DJ
1572The 'set download-write-size' and 'show download-write-size' commands.
1573
be2a5f71
DJ
1574* New remote packets
1575
1576qSupported:
1577 Tell a stub about GDB client features, and request remote target features.
1578 The first feature implemented is PacketSize, which allows the target to
1579 specify the size of packets it can handle - to minimize the number of
1580 packets required and improve performance when connected to a remote
1581 target.
1582
0876f84a
DJ
1583qXfer:auxv:read:
1584 Fetch an OS auxilliary vector from the remote stub. This packet is a
1585 more efficient replacement for qPart:auxv:read.
1586
9ebce043
DJ
1587qXfer:memory-map:read:
1588 Fetch a memory map from the remote stub, including information about
1589 RAM, ROM, and flash memory devices.
1590
1591vFlashErase:
1592vFlashWrite:
1593vFlashDone:
1594 Erase and program a flash memory device.
1595
0876f84a
DJ
1596* Removed remote packets
1597
1598qPart:auxv:read:
1599 This packet has been replaced by qXfer:auxv:read. Only GDB 6.4 and 6.5
1600 used it, and only gdbserver implemented it.
1601
e374b601 1602*** Changes in GDB 6.5
53e5f3cf 1603
96309189
MS
1604* New targets
1605
1606Renesas M32C/M16C m32c-elf
1607
1608Morpho Technologies ms1 ms1-elf
1609
53e5f3cf
AS
1610* New commands
1611
1612init-if-undefined Initialize a convenience variable, but
1613 only if it doesn't already have a value.
1614
ac264b3b
MS
1615The following commands are presently only implemented for native GNU/Linux:
1616
1617checkpoint Save a snapshot of the program state.
1618
1619restart <n> Return the program state to a
1620 previously saved state.
1621
1622info checkpoints List currently saved checkpoints.
1623
1624delete-checkpoint <n> Delete a previously saved checkpoint.
1625
1626set|show detach-on-fork Tell gdb whether to detach from a newly
1627 forked process, or to keep debugging it.
1628
1629info forks List forks of the user program that
1630 are available to be debugged.
1631
1632fork <n> Switch to debugging one of several
1633 forks of the user program that are
1634 available to be debugged.
1635
1636delete-fork <n> Delete a fork from the list of forks
1637 that are available to be debugged (and
1638 kill the forked process).
1639
1640detach-fork <n> Delete a fork from the list of forks
1641 that are available to be debugged (and
1642 allow the process to continue).
1643
3950dc3f
NS
1644* New architecture
1645
1646Morpho Technologies ms2 ms1-elf
1647
0ea3f30e
DJ
1648* Improved Windows host support
1649
1650GDB now builds as a cross debugger hosted on i686-mingw32, including
1651native console support, and remote communications using either
1652network sockets or serial ports.
1653
f79daebb
GM
1654* Improved Modula-2 language support
1655
1656GDB can now print most types in the Modula-2 syntax. This includes:
1657basic types, set types, record types, enumerated types, range types,
1658pointer types and ARRAY types. Procedure var parameters are correctly
1659printed and hexadecimal addresses and character constants are also
1660written in the Modula-2 syntax. Best results can be obtained by using
1661GNU Modula-2 together with the -gdwarf-2 command line option.
1662
acab6ab2
MM
1663* REMOVED features
1664
1665The ARM rdi-share module.
1666
f4267320
DJ
1667The Netware NLM debug server.
1668
53e5f3cf 1669*** Changes in GDB 6.4
156a53ca 1670
e0ecbda1
MK
1671* New native configurations
1672
02a677ac 1673OpenBSD/arm arm*-*-openbsd*
e0ecbda1
MK
1674OpenBSD/mips64 mips64-*-openbsd*
1675
d64a6579
KB
1676* New targets
1677
1678Morpho Technologies ms1 ms1-elf
1679
b33a6190
AS
1680* New command line options
1681
1682--batch-silent As for --batch, but totally silent.
1683--return-child-result The debugger will exist with the same value
1684 the child (debugged) program exited with.
1685--eval-command COMMAND, -ex COMMAND
1686 Execute a single GDB CLI command. This may be
1687 specified multiple times and in conjunction
1688 with the --command (-x) option.
1689
11dced61
AC
1690* Deprecated commands removed
1691
1692The following commands, that were deprecated in 2000, have been
1693removed:
1694
1695 Command Replacement
1696 set|show arm disassembly-flavor set|show arm disassembler
1697 othernames set arm disassembler
1698 set|show remotedebug set|show debug remote
1699 set|show archdebug set|show debug arch
1700 set|show eventdebug set|show debug event
1701 regs info registers
1702
6fe85783
MK
1703* New BSD user-level threads support
1704
1705It is now possible to debug programs using the user-level threads
1706library on OpenBSD and FreeBSD. Currently supported (target)
1707configurations are:
1708
1709FreeBSD/amd64 x86_64-*-freebsd*
1710FreeBSD/i386 i386-*-freebsd*
1711OpenBSD/i386 i386-*-openbsd*
1712
1713Note that the new kernel threads libraries introduced in FreeBSD 5.x
1714are not yet supported.
1715
5260ca71
MS
1716* New support for Matsushita MN10300 w/sim added
1717(Work in progress). mn10300-elf.
1718
e84ecc99
AC
1719* REMOVED configurations and files
1720
1721VxWorks and the XDR protocol *-*-vxworks
9445aa30 1722Motorola MCORE mcore-*-*
9445aa30 1723National Semiconductor NS32000 ns32k-*-*
156a53ca 1724
31e35378
JB
1725* New "set print array-indexes" command
1726
1727After turning this setting "on", GDB prints the index of each element
1728when displaying arrays. The default is "off" to preserve the previous
1729behavior.
1730
e85e5c83
MK
1731* VAX floating point support
1732
1733GDB now supports the not-quite-ieee VAX F and D floating point formats.
1734
d91e9901
AS
1735* User-defined command support
1736
1737In addition to using $arg0..$arg9 for argument passing, it is now possible
1738to use $argc to determine now many arguments have been passed. See the
1739section on user-defined commands in the user manual for more information.
1740
f2cb65ca
MC
1741*** Changes in GDB 6.3:
1742
f47b1503
AS
1743* New command line option
1744
1745GDB now accepts -l followed by a number to set the timeout for remote
1746debugging.
1747
f2cb65ca
MC
1748* GDB works with GCC -feliminate-dwarf2-dups
1749
1750GDB now supports a more compact representation of DWARF-2 debug
1751information using DW_FORM_ref_addr references. These are produced
1752by GCC with the option -feliminate-dwarf2-dups and also by some
1753proprietary compilers. With GCC, you must use GCC 3.3.4 or later
1754to use -feliminate-dwarf2-dups.
860660cb 1755
d08c0230
AC
1756* Internationalization
1757
1758When supported by the host system, GDB will be built with
1759internationalization (libintl). The task of marking up the sources is
1760continued, we're looking forward to our first translation.
1761
117ea3cf
PH
1762* Ada
1763
1764Initial support for debugging programs compiled with the GNAT
1765implementation of the Ada programming language has been integrated
1766into GDB. In this release, support is limited to expression evaluation.
1767
d08c0230
AC
1768* New native configurations
1769
1770GNU/Linux/m32r m32r-*-linux-gnu
1771
1772* Remote 'p' packet
1773
1774GDB's remote protocol now includes support for the 'p' packet. This
1775packet is used to fetch individual registers from a remote inferior.
1776
1777* END-OF-LIFE registers[] compatibility module
1778
1779GDB's internal register infrastructure has been completely rewritten.
1780The new infrastructure making possible the implementation of key new
1781features including 32x64 (e.g., 64-bit amd64 GDB debugging a 32-bit
1782i386 application).
1783
1784GDB 6.3 will be the last release to include the the registers[]
1785compatibility module that allowed out-of-date configurations to
1786continue to work. This change directly impacts the following
1787configurations:
1788
1789hppa-*-hpux
1790ia64-*-aix
1791mips-*-irix*
1792*-*-lynx
1793mips-*-linux-gnu
1794sds protocol
1795xdr protocol
1796powerpc bdm protocol
1797
1798Unless there is activity to revive these configurations, they will be
1799made OBSOLETE in GDB 6.4, and REMOVED from GDB 6.5.
1800
1801* OBSOLETE configurations and files
1802
1803Configurations that have been declared obsolete in this release have
1804been commented out. Unless there is activity to revive these
1805configurations, the next release of GDB will have their sources
1806permanently REMOVED.
1807
1808h8300-*-*
1809mcore-*-*
1810mn10300-*-*
1811ns32k-*-*
1812sh64-*-*
1813v850-*-*
1814
ebb7c577
AC
1815*** Changes in GDB 6.2.1:
1816
1817* MIPS `break main; run' gave an heuristic-fence-post warning
1818
1819When attempting to run even a simple program, a warning about
1820heuristic-fence-post being hit would be reported. This problem has
1821been fixed.
1822
1823* MIPS IRIX 'long double' crashed GDB
1824
1825When examining a long double variable, GDB would get a segmentation
1826fault. The crash has been fixed (but GDB 6.2 cannot correctly examine
1827IRIX long double values).
1828
1829* VAX and "next"
1830
1831A bug in the VAX stack code was causing problems with the "next"
1832command. This problem has been fixed.
1833
860660cb 1834*** Changes in GDB 6.2:
faae5abe 1835
0dea2468
AC
1836* Fix for ``many threads''
1837
1838On GNU/Linux systems that use the NPTL threads library, a program
1839rapidly creating and deleting threads would confuse GDB leading to the
1840error message:
1841
1842 ptrace: No such process.
1843 thread_db_get_info: cannot get thread info: generic error
1844
1845This problem has been fixed.
1846
2c07db7a
AC
1847* "-async" and "-noasync" options removed.
1848
1849Support for the broken "-noasync" option has been removed (it caused
1850GDB to dump core).
1851
c23968a2
JB
1852* New ``start'' command.
1853
1854This command runs the program until the begining of the main procedure.
1855
71009278
MK
1856* New BSD Kernel Data Access Library (libkvm) interface
1857
1858Using ``target kvm'' it is now possible to debug kernel core dumps and
1859live kernel memory images on various FreeBSD, NetBSD and OpenBSD
1860platforms. Currently supported (native-only) configurations are:
1861
1862FreeBSD/amd64 x86_64-*-freebsd*
1863FreeBSD/i386 i?86-*-freebsd*
1864NetBSD/i386 i?86-*-netbsd*
1865NetBSD/m68k m68*-*-netbsd*
1866NetBSD/sparc sparc-*-netbsd*
1867OpenBSD/amd64 x86_64-*-openbsd*
1868OpenBSD/i386 i?86-*-openbsd*
1869OpenBSD/m68k m68*-openbsd*
1870OpenBSD/sparc sparc-*-openbsd*
1871
3c0b7db2
AC
1872* Signal trampoline code overhauled
1873
1874Many generic problems with GDB's signal handling code have been fixed.
1875These include: backtraces through non-contiguous stacks; recognition
1876of sa_sigaction signal trampolines; backtrace from a NULL pointer
1877call; backtrace through a signal trampoline; step into and out of
1878signal handlers; and single-stepping in the signal trampoline.
1879
73cc75f3
AC
1880Please note that kernel bugs are a limiting factor here. These
1881features have been shown to work on an s390 GNU/Linux system that
1882include a 2.6.8-rc1 kernel. Ref PR breakpoints/1702.
3c0b7db2 1883
7243600a
BF
1884* Cygwin support for DWARF 2 added.
1885
6f606e1c
MK
1886* New native configurations
1887
97dc871c 1888GNU/Linux/hppa hppa*-*-linux*
0e56aeaf 1889OpenBSD/hppa hppa*-*-openbsd*
bf2ca189
MK
1890OpenBSD/m68k m68*-*-openbsd*
1891OpenBSD/m88k m88*-*-openbsd*
d195bc9f 1892OpenBSD/powerpc powerpc-*-openbsd*
6f606e1c 1893NetBSD/vax vax-*-netbsd*
9f076e7a 1894OpenBSD/vax vax-*-openbsd*
6f606e1c 1895
a1b461bf
AC
1896* END-OF-LIFE frame compatibility module
1897
1898GDB's internal frame infrastructure has been completely rewritten.
1899The new infrastructure making it possible to support key new features
1900including DWARF 2 Call Frame Information. To aid in the task of
1901migrating old configurations to this new infrastructure, a
1902compatibility module, that allowed old configurations to continue to
1903work, was also included.
1904
1905GDB 6.2 will be the last release to include this frame compatibility
1906module. This change directly impacts the following configurations:
1907
1908h8300-*-*
1909mcore-*-*
1910mn10300-*-*
1911ns32k-*-*
1912sh64-*-*
1913v850-*-*
1914xstormy16-*-*
1915
1916Unless there is activity to revive these configurations, they will be
1917made OBSOLETE in GDB 6.3, and REMOVED from GDB 6.4.
1918
3c7012f5
AC
1919* REMOVED configurations and files
1920
1921Sun 3, running SunOS 3 m68*-*-sunos3*
1922Sun 3, running SunOS 4 m68*-*-sunos4*
1923Sun 2, running SunOS 3 m68000-*-sunos3*
1924Sun 2, running SunOS 4 m68000-*-sunos4*
1925Motorola 680x0 running LynxOS m68*-*-lynxos*
1926AT&T 3b1/Unix pc m68*-att-*
1927Bull DPX2 (68k, System V release 3) m68*-bull-sysv*
1928decstation mips-dec-* mips-little-*
1929riscos mips-*-riscos* mips-*-sysv*
1930sonymips mips-sony-*
1931sysv mips*-*-sysv4* (IRIX 5/6 not included)
1932
e5fe55f7
AC
1933*** Changes in GDB 6.1.1:
1934
1935* TUI (Text-mode User Interface) built-in (also included in GDB 6.1)
1936
1937The TUI (Text-mode User Interface) is now built as part of a default
1938GDB configuration. It is enabled by either selecting the TUI with the
1939command line option "-i=tui" or by running the separate "gdbtui"
1940program. For more information on the TUI, see the manual "Debugging
1941with GDB".
1942
1943* Pending breakpoint support (also included in GDB 6.1)
1944
1945Support has been added to allow you to specify breakpoints in shared
1946libraries that have not yet been loaded. If a breakpoint location
1947cannot be found, and the "breakpoint pending" option is set to auto,
1948GDB queries you if you wish to make the breakpoint pending on a future
1949shared-library load. If and when GDB resolves the breakpoint symbol,
1950the pending breakpoint is removed as one or more regular breakpoints
1951are created.
1952
1953Pending breakpoints are very useful for GCJ Java debugging.
1954
1955* Fixed ISO-C build problems
1956
1957The files bfd/elf-bfd.h, gdb/dictionary.c and gdb/types.c contained
1958non ISO-C code that stopped them being built using a more strict ISO-C
1959compiler (e.g., IBM's C compiler).
1960
1961* Fixed build problem on IRIX 5
1962
1963Due to header problems with <sys/proc.h>, the file gdb/proc-api.c
1964wasn't able to compile compile on an IRIX 5 system.
1965
1966* Added execute permission to gdb/gdbserver/configure
1967
1968The shell script gdb/testsuite/gdb.stabs/configure lacked execute
1969permission. This bug would cause configure to fail on a number of
1970systems (Solaris, IRIX). Ref: server/519.
1971
1972* Fixed build problem on hpux2.0w-hp-hpux11.00 using the HP ANSI C compiler
1973
1974Older HPUX ANSI C compilers did not accept variable array sizes. somsolib.c
1975has been updated to use constant array sizes.
1976
1977* Fixed a panic in the DWARF Call Frame Info code on Solaris 2.7
1978
1979GCC 3.3.2, on Solaris 2.7, includes the DW_EH_PE_funcrel encoding in
1980its generated DWARF Call Frame Info. This encoding was causing GDB to
1981panic, that panic has been fixed. Ref: gdb/1628.
1982
1983* Fixed a problem when examining parameters in shared library code.
1984
1985When examining parameters in optimized shared library code generated
1986by a mainline GCC, GDB would incorrectly report ``Variable "..." is
1987not available''. GDB now correctly displays the variable's value.
1988
faae5abe 1989*** Changes in GDB 6.1:
f2c06f52 1990
9175c9a3
MC
1991* Removed --with-mmalloc
1992
1993Support for the mmalloc memory manager has been removed, as it
1994conflicted with the internal gdb byte cache.
1995
3cc87ec0
MK
1996* Changes in AMD64 configurations
1997
1998The AMD64 target now includes the %cs and %ss registers. As a result
1999the AMD64 remote protocol has changed; this affects the floating-point
2000and SSE registers. If you rely on those registers for your debugging,
2001you should upgrade gdbserver on the remote side.
2002
f0424ef6
MK
2003* Revised SPARC target
2004
2005The SPARC target has been completely revised, incorporating the
2006FreeBSD/sparc64 support that was added for GDB 6.0. As a result
03cebad2
MK
2007support for LynxOS and SunOS 4 has been dropped. Calling functions
2008from within GDB on operating systems with a non-executable stack
2009(Solaris, OpenBSD) now works.
f0424ef6 2010
59659be2
ILT
2011* New C++ demangler
2012
2013GDB has a new C++ demangler which does a better job on the mangled
2014names generated by current versions of g++. It also runs faster, so
2015with this and other changes gdb should now start faster on large C++
2016programs.
2017
9e08b29b
DJ
2018* DWARF 2 Location Expressions
2019
2020GDB support for location expressions has been extended to support function
2021arguments and frame bases. Older versions of GDB could crash when they
2022encountered these.
2023
8dfe8985
DC
2024* C++ nested types and namespaces
2025
2026GDB's support for nested types and namespaces in C++ has been
2027improved, especially if you use the DWARF 2 debugging format. (This
2028is the default for recent versions of GCC on most platforms.)
2029Specifically, if you have a class "Inner" defined within a class or
2030namespace "Outer", then GDB realizes that the class's name is
2031"Outer::Inner", not simply "Inner". This should greatly reduce the
2032frequency of complaints about not finding RTTI symbols. In addition,
2033if you are stopped at inside of a function defined within a namespace,
2034GDB modifies its name lookup accordingly.
2035
cced5e27
MK
2036* New native configurations
2037
2038NetBSD/amd64 x86_64-*-netbsd*
27d1e716 2039OpenBSD/amd64 x86_64-*-openbsd*
2031c21a 2040OpenBSD/alpha alpha*-*-openbsd*
f2cab569
MK
2041OpenBSD/sparc sparc-*-openbsd*
2042OpenBSD/sparc64 sparc64-*-openbsd*
cced5e27 2043
b4b4b794
KI
2044* New debugging protocols
2045
2046M32R with SDI protocol m32r-*-elf*
2047
7989c619
AC
2048* "set prompt-escape-char" command deleted.
2049
2050The command "set prompt-escape-char" has been deleted. This command,
2051and its very obscure effet on GDB's prompt, was never documented,
2052tested, nor mentioned in the NEWS file.
2053
5994185b
AC
2054* OBSOLETE configurations and files
2055
2056Configurations that have been declared obsolete in this release have
2057been commented out. Unless there is activity to revive these
2058configurations, the next release of GDB will have their sources
2059permanently REMOVED.
2060
2061Sun 3, running SunOS 3 m68*-*-sunos3*
2062Sun 3, running SunOS 4 m68*-*-sunos4*
2063Sun 2, running SunOS 3 m68000-*-sunos3*
2064Sun 2, running SunOS 4 m68000-*-sunos4*
2065Motorola 680x0 running LynxOS m68*-*-lynxos*
2066AT&T 3b1/Unix pc m68*-att-*
2067Bull DPX2 (68k, System V release 3) m68*-bull-sysv*
0748d941
AC
2068decstation mips-dec-* mips-little-*
2069riscos mips-*-riscos* mips-*-sysv*
2070sonymips mips-sony-*
2071sysv mips*-*-sysv4* (IRIX 5/6 not included)
5994185b 2072
0ddabb4c
AC
2073* REMOVED configurations and files
2074
2075SGI Irix-4.x mips-sgi-irix4 or iris4
2076SGI Iris (MIPS) running Irix V3: mips-sgi-irix or iris
4a8269c0
AC
2077Z8000 simulator z8k-zilog-none or z8ksim
2078Matsushita MN10200 w/simulator mn10200-*-*
2079H8/500 simulator h8500-hitachi-hms or h8500hms
2080HP/PA running BSD hppa*-*-bsd*
2081HP/PA running OSF/1 hppa*-*-osf*
2082HP/PA Pro target hppa*-*-pro*
2083PMAX (MIPS) running Mach 3.0 mips*-*-mach3*
cf7c5c23 2084386BSD i[3456]86-*-bsd*
4a8269c0
AC
2085Sequent family i[3456]86-sequent-sysv4*
2086 i[3456]86-sequent-sysv*
2087 i[3456]86-sequent-bsd*
f0424ef6
MK
2088SPARC running LynxOS sparc-*-lynxos*
2089SPARC running SunOS 4 sparc-*-sunos4*
4a8269c0
AC
2090Tsqware Sparclet sparclet-*-*
2091Fujitsu SPARClite sparclite-fujitsu-none or sparclite
0ddabb4c 2092
c7f1390e
DJ
2093*** Changes in GDB 6.0:
2094
1fe43d45
AC
2095* Objective-C
2096
2097Support for debugging the Objective-C programming language has been
2098integrated into GDB.
2099
e6beb428
AC
2100* New backtrace mechanism (includes DWARF 2 Call Frame Information).
2101
2102DWARF 2's Call Frame Information makes available compiler generated
2103information that more exactly describes the program's run-time stack.
2104By using this information, GDB is able to provide more robust stack
2105backtraces.
2106
2107The i386, amd64 (nee, x86-64), Alpha, m68hc11, ia64, and m32r targets
2108have been updated to use a new backtrace mechanism which includes
2109DWARF 2 CFI support.
2110
2111* Hosted file I/O.
2112
2113GDB's remote protocol has been extended to include support for hosted
2114file I/O (where the remote target uses GDB's file system). See GDB's
2115remote protocol documentation for details.
2116
2117* All targets using the new architecture framework.
2118
2119All of GDB's targets have been updated to use the new internal
2120architecture framework. The way is now open for future GDB releases
2121to include cross-architecture native debugging support (i386 on amd64,
2122ppc32 on ppc64).
2123
2124* GNU/Linux's Thread Local Storage (TLS)
2125
2126GDB now includes support for for the GNU/Linux implementation of
2127per-thread variables.
2128
2129* GNU/Linux's Native POSIX Thread Library (NPTL)
2130
2131GDB's thread code has been updated to work with either the new
2132GNU/Linux NPTL thread library or the older "LinuxThreads" library.
2133
2134* Separate debug info.
2135
2136GDB, in conjunction with BINUTILS, now supports a mechanism for
2137automatically loading debug information from a separate file. Instead
2138of shipping full debug and non-debug versions of system libraries,
2139system integrators can now instead ship just the stripped libraries
2140and optional debug files.
2141
2142* DWARF 2 Location Expressions
2143
2144DWARF 2 Location Expressions allow the compiler to more completely
2145describe the location of variables (even in optimized code) to the
2146debugger.
2147
2148GDB now includes preliminary support for location expressions (support
2149for DW_OP_piece is still missing).
2150
2151* Java
2152
2153A number of long standing bugs that caused GDB to die while starting a
2154Java application have been fixed. GDB's Java support is now
2155considered "useable".
2156
85f8f974
DJ
2157* GNU/Linux support for fork, vfork, and exec.
2158
2159The "catch fork", "catch exec", "catch vfork", and "set follow-fork-mode"
2160commands are now implemented for GNU/Linux. They require a 2.5.x or later
2161kernel.
2162
0fac0b41
DJ
2163* GDB supports logging output to a file
2164
2165There are two new commands, "set logging" and "show logging", which can be
2166used to capture GDB's output to a file.
f2c06f52 2167
6ad8ae5c
DJ
2168* The meaning of "detach" has changed for gdbserver
2169
2170The "detach" command will now resume the application, as documented. To
2171disconnect from gdbserver and leave it stopped, use the new "disconnect"
2172command.
2173
e286caf2 2174* d10v, m68hc11 `regs' command deprecated
5f601589
AC
2175
2176The `info registers' command has been updated so that it displays the
2177registers using a format identical to the old `regs' command.
2178
d28f9cdf
DJ
2179* Profiling support
2180
2181A new command, "maint set profile on/off", has been added. This command can
2182be used to enable or disable profiling while running GDB, to profile a
2183session or a set of commands. In addition there is a new configure switch,
2184"--enable-profiling", which will cause GDB to be compiled with profiling
2185data, for more informative profiling results.
2186
da0f9dcd
AC
2187* Default MI syntax changed to "mi2".
2188
2189The default MI (machine interface) syntax, enabled by the command line
2190option "-i=mi", has been changed to "mi2". The previous MI syntax,
b68767c1 2191"mi1", can be enabled by specifying the option "-i=mi1".
da0f9dcd
AC
2192
2193Support for the original "mi0" syntax (included in GDB 5.0) has been
2194removed.
2195
fb9b6b35
JJ
2196Fix for gdb/192: removed extraneous space when displaying frame level.
2197Fix for gdb/672: update changelist is now output in mi list format.
2198Fix for gdb/702: a -var-assign that updates the value now shows up
2199 in a subsequent -var-update.
2200
954a4db8
MK
2201* New native configurations.
2202
2203FreeBSD/amd64 x86_64-*-freebsd*
2204
6760f9e6
JB
2205* Multi-arched targets.
2206
b4263afa 2207HP/PA HPUX11 hppa*-*-hpux*
85a453d5 2208Renesas M32R/D w/simulator m32r-*-elf*
6760f9e6 2209
1b831c93
AC
2210* OBSOLETE configurations and files
2211
2212Configurations that have been declared obsolete in this release have
2213been commented out. Unless there is activity to revive these
2214configurations, the next release of GDB will have their sources
2215permanently REMOVED.
2216
8b0e5691 2217Z8000 simulator z8k-zilog-none or z8ksim
67f16606 2218Matsushita MN10200 w/simulator mn10200-*-*
fd2299bd 2219H8/500 simulator h8500-hitachi-hms or h8500hms
56056df7
AC
2220HP/PA running BSD hppa*-*-bsd*
2221HP/PA running OSF/1 hppa*-*-osf*
2222HP/PA Pro target hppa*-*-pro*
78c43945 2223PMAX (MIPS) running Mach 3.0 mips*-*-mach3*
2fbce691
AC
2224Sequent family i[3456]86-sequent-sysv4*
2225 i[3456]86-sequent-sysv*
2226 i[3456]86-sequent-bsd*
f81824a9
AC
2227Tsqware Sparclet sparclet-*-*
2228Fujitsu SPARClite sparclite-fujitsu-none or sparclite
fd2299bd 2229
5835abe7
NC
2230* REMOVED configurations and files
2231
2232V850EA ISA
1b831c93
AC
2233Motorola Delta 88000 running Sys V m88k-motorola-sysv or delta88
2234IBM AIX PS/2 i[3456]86-*-aix
2235i386 running Mach 3.0 i[3456]86-*-mach3*
2236i386 running Mach i[3456]86-*-mach*
2237i386 running OSF/1 i[3456]86-*osf1mk*
2238HP/Apollo 68k Family m68*-apollo*-sysv*,
2239 m68*-apollo*-bsd*,
2240 m68*-hp-bsd*, m68*-hp-hpux*
2241Argonaut Risc Chip (ARC) arc-*-*
2242Mitsubishi D30V d30v-*-*
2243Fujitsu FR30 fr30-*-elf*
2244OS/9000 i[34]86-*-os9k
2245I960 with MON960 i960-*-coff
5835abe7 2246
a094c6fb
AC
2247* MIPS $fp behavior changed
2248
2249The convenience variable $fp, for the MIPS, now consistently returns
2250the address of the current frame's base. Previously, depending on the
2251context, $fp could refer to either $sp or the current frame's base
2252address. See ``8.10 Registers'' in the manual ``Debugging with GDB:
2253The GNU Source-Level Debugger''.
2254
299ffc64 2255*** Changes in GDB 5.3:
37057839 2256
46248966
AC
2257* GNU/Linux shared library multi-threaded performance improved.
2258
2259When debugging a multi-threaded application on GNU/Linux, GDB now uses
2260`/proc', in preference to `ptrace' for memory reads. This may result
2261in an improvement in the start-up time of multi-threaded, shared
2262library applications when run under GDB. One GDB user writes: ``loads
2263shared libs like mad''.
2264
b9d14705 2265* ``gdbserver'' now supports multi-threaded applications on some targets
6da02953 2266
b9d14705
DJ
2267Support for debugging multi-threaded applications which use
2268the GNU/Linux LinuxThreads package has been added for
2269arm*-*-linux*-gnu*, i[3456]86-*-linux*-gnu*, mips*-*-linux*-gnu*,
2270powerpc*-*-linux*-gnu*, and sh*-*-linux*-gnu*.
6da02953 2271
e0e9281e
JB
2272* GDB now supports C/C++ preprocessor macros.
2273
2274GDB now expands preprocessor macro invocations in C/C++ expressions,
2275and provides various commands for showing macro definitions and how
2276they expand.
2277
dd73b9bb
AC
2278The new command `macro expand EXPRESSION' expands any macro
2279invocations in expression, and shows the result.
2280
2281The new command `show macro MACRO-NAME' shows the definition of the
2282macro named MACRO-NAME, and where it was defined.
2283
e0e9281e
JB
2284Most compilers don't include information about macros in the debugging
2285information by default. In GCC 3.1, for example, you need to compile
2286your program with the options `-gdwarf-2 -g3'. If the macro
2287information is present in the executable, GDB will read it.
2288
2250ee0c
CV
2289* Multi-arched targets.
2290
6e3ba3b8
JT
2291DEC Alpha (partial) alpha*-*-*
2292DEC VAX (partial) vax-*-*
2250ee0c 2293NEC V850 v850-*-*
6e3ba3b8 2294National Semiconductor NS32000 (partial) ns32k-*-*
a1789893
GS
2295Motorola 68000 (partial) m68k-*-*
2296Motorola MCORE mcore-*-*
2250ee0c 2297
cd9bfe15 2298* New targets.
e33ce519 2299
456f8b9d
DB
2300Fujitsu FRV architecture added by Red Hat frv*-*-*
2301
e33ce519 2302
da8ca43d
JT
2303* New native configurations
2304
2305Alpha NetBSD alpha*-*-netbsd*
029923d4 2306SH NetBSD sh*-*-netbsdelf*
45888261 2307MIPS NetBSD mips*-*-netbsd*
9ce5c36a 2308UltraSPARC NetBSD sparc64-*-netbsd*
da8ca43d 2309
cd9bfe15
AC
2310* OBSOLETE configurations and files
2311
2312Configurations that have been declared obsolete in this release have
2313been commented out. Unless there is activity to revive these
2314configurations, the next release of GDB will have their sources
2315permanently REMOVED.
2316
92eb23c5 2317Mitsubishi D30V d30v-*-*
a99a9e1b 2318OS/9000 i[34]86-*-os9k
1c7cc583 2319IBM AIX PS/2 i[3456]86-*-aix
7a3085c1 2320Fujitsu FR30 fr30-*-elf*
7fb623f7 2321Motorola Delta 88000 running Sys V m88k-motorola-sysv or delta88
eb4c54a2 2322Argonaut Risc Chip (ARC) arc-*-*
d8ee244c
MK
2323i386 running Mach 3.0 i[3456]86-*-mach3*
2324i386 running Mach i[3456]86-*-mach*
2325i386 running OSF/1 i[3456]86-*osf1mk*
822e978b
AC
2326HP/Apollo 68k Family m68*-apollo*-sysv*,
2327 m68*-apollo*-bsd*,
2328 m68*-hp-bsd*, m68*-hp-hpux*
4d210288 2329I960 with MON960 i960-*-coff
92eb23c5 2330
db034ac5
AC
2331* OBSOLETE languages
2332
2333CHILL, a Pascal like language used by telecommunications companies.
2334
cd9bfe15
AC
2335* REMOVED configurations and files
2336
2337AMD 29k family via UDI a29k-amd-udi, udi29k
2338A29K VxWorks a29k-*-vxworks
2339AMD 29000 embedded, using EBMON a29k-none-none
2340AMD 29000 embedded with COFF a29k-none-coff
2341AMD 29000 embedded with a.out a29k-none-aout
2342
2343testsuite/gdb.hp/gdb.threads-hp/ directory
2344
20f01a46
DH
2345* New command "set max-user-call-depth <nnn>"
2346
2347This command allows the user to limit the call depth of user-defined
2348commands. The default is 1024.
2349
a5941fbf
MK
2350* Changes in FreeBSD/i386 native debugging.
2351
2352Support for the "generate-core-file" has been added.
2353
89743e04
MS
2354* New commands "dump", "append", and "restore".
2355
2356These commands allow data to be copied from target memory
2357to a bfd-format or binary file (dump and append), and back
2358from a file into memory (restore).
37057839 2359
9fb14e79
JB
2360* Improved "next/step" support on multi-processor Alpha Tru64.
2361
2362The previous single-step mechanism could cause unpredictable problems,
2363including the random appearance of SIGSEGV or SIGTRAP signals. The use
2364of a software single-step mechanism prevents this.
2365
2037aebb
AC
2366*** Changes in GDB 5.2.1:
2367
2368* New targets.
2369
2370Atmel AVR avr*-*-*
2371
2372* Bug fixes
2373
2374gdb/182: gdb/323: gdb/237: On alpha, gdb was reporting:
2375mdebugread.c:2443: gdb-internal-error: sect_index_data not initialized
2376Fix, by Joel Brobecker imported from mainline.
2377
2378gdb/439: gdb/291: On some ELF object files, gdb was reporting:
2379dwarf2read.c:1072: gdb-internal-error: sect_index_text not initialize
2380Fix, by Fred Fish, imported from mainline.
2381
2382Dwarf2 .debug_frame & .eh_frame handler improved in many ways.
2383Surprisingly enough, it works now.
2384By Michal Ludvig, imported from mainline.
2385
2386i386 hardware watchpoint support:
2387avoid misses on second run for some targets.
2388By Pierre Muller, imported from mainline.
2389
37057839 2390*** Changes in GDB 5.2:
eb7cedd9 2391
1a703748
MS
2392* New command "set trust-readonly-sections on[off]".
2393
2394This command is a hint that tells gdb that read-only sections
2395really are read-only (ie. that their contents will not change).
2396In this mode, gdb will go to the object file rather than the
2397target to read memory from read-only sections (such as ".text").
2398This can be a significant performance improvement on some
2399(notably embedded) targets.
2400
cefd4ef5
MS
2401* New command "generate-core-file" (or "gcore").
2402
55241689
AC
2403This new gdb command allows the user to drop a core file of the child
2404process state at any time. So far it's been implemented only for
2405GNU/Linux and Solaris, but should be relatively easily ported to other
2406hosts. Argument is core file name (defaults to core.<pid>).
cefd4ef5 2407
352ed7b4
MS
2408* New command line option
2409
2410GDB now accepts --pid or -p followed by a process id.
2411
2412* Change in command line behavior -- corefiles vs. process ids.
2413
2414There is a subtle behavior in the way in which GDB handles
2415command line arguments. The first non-flag argument is always
2416a program to debug, but the second non-flag argument may either
2417be a corefile or a process id. Previously, GDB would attempt to
2418open the second argument as a corefile, and if that failed, would
2419issue a superfluous error message and then attempt to attach it as
2420a process. Now, if the second argument begins with a non-digit,
2421it will be treated as a corefile. If it begins with a digit,
2422GDB will attempt to attach it as a process, and if no such process
2423is found, will then attempt to open it as a corefile.
2424
fe419ffc
RE
2425* Changes in ARM configurations.
2426
2427Multi-arch support is enabled for all ARM configurations. The ARM/NetBSD
2428configuration is fully multi-arch.
2429
eb7cedd9
MK
2430* New native configurations
2431
fe419ffc 2432ARM NetBSD arm*-*-netbsd*
eb7cedd9 2433x86 OpenBSD i[3456]86-*-openbsd*
55241689 2434AMD x86-64 running GNU/Linux x86_64-*-linux-*
768f0842 2435Sparc64 running FreeBSD sparc64-*-freebsd*
eb7cedd9 2436
c9f63e6b
CV
2437* New targets
2438
2439Sanyo XStormy16 xstormy16-elf
2440
9b4ff276
AC
2441* OBSOLETE configurations and files
2442
2443Configurations that have been declared obsolete in this release have
2444been commented out. Unless there is activity to revive these
2445configurations, the next release of GDB will have their sources
2446permanently REMOVED.
2447
2448AMD 29k family via UDI a29k-amd-udi, udi29k
2449A29K VxWorks a29k-*-vxworks
2450AMD 29000 embedded, using EBMON a29k-none-none
2451AMD 29000 embedded with COFF a29k-none-coff
2452AMD 29000 embedded with a.out a29k-none-aout
2453
b4ceaee6 2454testsuite/gdb.hp/gdb.threads-hp/ directory
9b4ff276 2455
e2caac18
AC
2456* REMOVED configurations and files
2457
2458TI TMS320C80 tic80-*-*
7bc65f05 2459WDC 65816 w65-*-*
7768dd6c
AC
2460PowerPC Solaris powerpcle-*-solaris*
2461PowerPC Windows NT powerpcle-*-cygwin32
2462PowerPC Netware powerpc-*-netware*
5e734e1f 2463Harris/CXUX m88k m88*-harris-cxux*
1406caf7
AC
2464Most ns32k hosts and targets ns32k-*-mach3* ns32k-umax-*
2465 ns32k-utek-sysv* ns32k-utek-*
7e24f0b1 2466SunOS 4.0.Xi on i386 i[3456]86-*-sunos*
9b567150 2467Ultracomputer (29K) running Sym1 a29k-nyu-sym1 a29k-*-kern*
3680c638
AC
2468Sony NEWS (68K) running NEWSOS 3.x m68*-sony-sysv news
2469ISI Optimum V (3.05) under 4.3bsd. m68*-isi-*
a752853e 2470Apple Macintosh (MPW) host and target N/A host, powerpc-*-macos*
e2caac18 2471
c2a727fa
TT
2472* Changes to command line processing
2473
2474The new `--args' feature can be used to specify command-line arguments
2475for the inferior from gdb's command line.
2476
467d8519
TT
2477* Changes to key bindings
2478
2479There is a new `operate-and-get-next' function bound to `C-o'.
2480
7072a954
AC
2481*** Changes in GDB 5.1.1
2482
2483Fix compile problem on DJGPP.
2484
2485Fix a problem with floating-point registers on the i386 being
2486corrupted.
2487
2488Fix to stop GDB crashing on .debug_str debug info.
2489
2490Numerous documentation fixes.
2491
2492Numerous testsuite fixes.
2493
34f47bc4 2494*** Changes in GDB 5.1:
139760b7
MK
2495
2496* New native configurations
2497
2498Alpha FreeBSD alpha*-*-freebsd*
2499x86 FreeBSD 3.x and 4.x i[3456]86*-freebsd[34]*
55241689 2500MIPS GNU/Linux mips*-*-linux*
e23194cb
EZ
2501MIPS SGI Irix 6.x mips*-sgi-irix6*
2502ia64 AIX ia64-*-aix*
55241689 2503s390 and s390x GNU/Linux {s390,s390x}-*-linux*
139760b7 2504
bf64bfd6
AC
2505* New targets
2506
def90278 2507Motorola 68HC11 and 68HC12 m68hc11-elf
24be5c34 2508CRIS cris-axis
55241689 2509UltraSparc running GNU/Linux sparc64-*-linux*
def90278 2510
17e78a56 2511* OBSOLETE configurations and files
bf64bfd6
AC
2512
2513x86 FreeBSD before 2.2 i[3456]86*-freebsd{1,2.[01]}*,
9b9c068d 2514Harris/CXUX m88k m88*-harris-cxux*
bb19ff3b
AC
2515Most ns32k hosts and targets ns32k-*-mach3* ns32k-umax-*
2516 ns32k-utek-sysv* ns32k-utek-*
76f4ea53
AC
2517TI TMS320C80 tic80-*-*
2518WDC 65816 w65-*-*
4a1968f4 2519Ultracomputer (29K) running Sym1 a29k-nyu-sym1 a29k-*-kern*
1b2b2c16
AC
2520PowerPC Solaris powerpcle-*-solaris*
2521PowerPC Windows NT powerpcle-*-cygwin32
2522PowerPC Netware powerpc-*-netware*
24f89b68 2523SunOS 4.0.Xi on i386 i[3456]86-*-sunos*
514e603d
AC
2524Sony NEWS (68K) running NEWSOS 3.x m68*-sony-sysv news
2525ISI Optimum V (3.05) under 4.3bsd. m68*-isi-*
d036b4d9 2526Apple Macintosh (MPW) host N/A
bf64bfd6 2527
17e78a56
AC
2528stuff.c (Program to stuff files into a specially prepared space in kdb)
2529kdb-start.c (Main loop for the standalone kernel debugger)
2530
7fcca85b
AC
2531Configurations that have been declared obsolete in this release have
2532been commented out. Unless there is activity to revive these
2533configurations, the next release of GDB will have their sources
2534permanently REMOVED.
2535
a196c81c 2536* REMOVED configurations and files
7fcca85b
AC
2537
2538Altos 3068 m68*-altos-*
2539Convex c1-*-*, c2-*-*
2540Pyramid pyramid-*-*
2541ARM RISCix arm-*-* (as host)
2542Tahoe tahoe-*-*
a196c81c 2543ser-ocd.c *-*-*
bf64bfd6 2544
6d6b80e5 2545* GDB has been converted to ISO C.
e23194cb 2546
6d6b80e5 2547GDB's source code has been converted to ISO C. In particular, the
e23194cb
EZ
2548sources are fully protoized, and rely on standard headers being
2549present.
2550
bf64bfd6
AC
2551* Other news:
2552
e23194cb
EZ
2553* "info symbol" works on platforms which use COFF, ECOFF, XCOFF, and NLM.
2554
2555* The MI enabled by default.
2556
2557The new machine oriented interface (MI) introduced in GDB 5.0 has been
2558revised and enabled by default. Packages which use GDB as a debugging
2559engine behind a UI or another front end are encouraged to switch to
2560using the GDB/MI interface, instead of the old annotations interface
2561which is now deprecated.
2562
2563* Support for debugging Pascal programs.
2564
2565GDB now includes support for debugging Pascal programs. The following
2566main features are supported:
2567
2568 - Pascal-specific data types such as sets;
2569
2570 - automatic recognition of Pascal sources based on file-name
2571 extension;
2572
2573 - Pascal-style display of data types, variables, and functions;
2574
2575 - a Pascal expression parser.
2576
2577However, some important features are not yet supported.
2578
2579 - Pascal string operations are not supported at all;
2580
2581 - there are some problems with boolean types;
2582
2583 - Pascal type hexadecimal constants are not supported
2584 because they conflict with the internal variables format;
2585
2586 - support for Pascal objects and classes is not full yet;
2587
2588 - unlike Pascal, GDB is case-sensitive for symbol names.
2589
2590* Changes in completion.
2591
2592Commands such as `shell', `run' and `set args', which pass arguments
2593to inferior programs, now complete on file names, similar to what
2594users expect at the shell prompt.
2595
2596Commands which accept locations, such as `disassemble', `print',
2597`breakpoint', `until', etc. now complete on filenames as well as
2598program symbols. Thus, if you type "break foob TAB", and the source
2599files linked into the programs include `foobar.c', that file name will
2600be one of the candidates for completion. However, file names are not
2601considered for completion after you typed a colon that delimits a file
2602name from a name of a function in that file, as in "break foo.c:bar".
2603
2604`set demangle-style' completes on available demangling styles.
2605
2606* New platform-independent commands:
2607
2608It is now possible to define a post-hook for a command as well as a
2609hook that runs before the command. For more details, see the
2610documentation of `hookpost' in the GDB manual.
2611
2612* Changes in GNU/Linux native debugging.
2613
d7275149
MK
2614Support for debugging multi-threaded programs has been completely
2615revised for all platforms except m68k and sparc. You can now debug as
2616many threads as your system allows you to have.
2617
e23194cb
EZ
2618Attach/detach is supported for multi-threaded programs.
2619
d7275149
MK
2620Support for SSE registers was added for x86. This doesn't work for
2621multi-threaded programs though.
e23194cb
EZ
2622
2623* Changes in MIPS configurations.
bf64bfd6
AC
2624
2625Multi-arch support is enabled for all MIPS configurations.
2626
e23194cb
EZ
2627GDB can now be built as native debugger on SGI Irix 6.x systems for
2628debugging n32 executables. (Debugging 64-bit executables is not yet
2629supported.)
2630
2631* Unified support for hardware watchpoints in all x86 configurations.
2632
2633Most (if not all) native x86 configurations support hardware-assisted
2634breakpoints and watchpoints in a unified manner. This support
2635implements debug register sharing between watchpoints, which allows to
2636put a virtually infinite number of watchpoints on the same address,
2637and also supports watching regions up to 16 bytes with several debug
2638registers.
2639
2640The new maintenance command `maintenance show-debug-regs' toggles
2641debugging print-outs in functions that insert, remove, and test
2642watchpoints and hardware breakpoints.
2643
2644* Changes in the DJGPP native configuration.
2645
2646New command ``info dos sysinfo'' displays assorted information about
2647the CPU, OS, memory, and DPMI server.
2648
2649New commands ``info dos gdt'', ``info dos ldt'', and ``info dos idt''
2650display information about segment descriptors stored in GDT, LDT, and
2651IDT.
2652
2653New commands ``info dos pde'' and ``info dos pte'' display entries
2654from Page Directory and Page Tables (for now works with CWSDPMI only).
2655New command ``info dos address-pte'' displays the Page Table entry for
2656a given linear address.
2657
2658GDB can now pass command lines longer than 126 characters to the
2659program being debugged (requires an update to the libdbg.a library
2660which is part of the DJGPP development kit).
2661
2662DWARF2 debug info is now supported.
2663
6c56c069
EZ
2664It is now possible to `step' and `next' through calls to `longjmp'.
2665
e23194cb
EZ
2666* Changes in documentation.
2667
2668All GDB documentation was converted to GFDL, the GNU Free
2669Documentation License.
2670
2671Tracepoints-related commands are now fully documented in the GDB
2672manual.
2673
2674TUI, the Text-mode User Interface, is now documented in the manual.
2675
2676Tracepoints-related commands are now fully documented in the GDB
2677manual.
2678
2679The "GDB Internals" manual now has an index. It also includes
2680documentation of `ui_out' functions, GDB coding standards, x86
2681hardware watchpoints, and memory region attributes.
2682
5d6640b1
AC
2683* GDB's version number moved to ``version.in''
2684
2685The Makefile variable VERSION has been replaced by the file
2686``version.in''. People creating GDB distributions should update the
2687contents of this file.
2688
1a1d8446
AC
2689* gdba.el deleted
2690
2691GUD support is now a standard part of the EMACS distribution.
139760b7 2692
9debab2f 2693*** Changes in GDB 5.0:
7a292a7a 2694
c63ce875
EZ
2695* Improved support for debugging FP programs on x86 targets
2696
2697Unified and much-improved support for debugging floating-point
2698programs on all x86 targets. In particular, ``info float'' now
2699displays the FP registers in the same format on all x86 targets, with
2700greater level of detail.
2701
2702* Improvements and bugfixes in hardware-assisted watchpoints
2703
2704It is now possible to watch array elements, struct members, and
2705bitfields with hardware-assisted watchpoints. Data-read watchpoints
2706on x86 targets no longer erroneously trigger when the address is
2707written.
2708
2709* Improvements in the native DJGPP version of GDB
2710
2711The distribution now includes all the scripts and auxiliary files
2712necessary to build the native DJGPP version on MS-DOS/MS-Windows
2713machines ``out of the box''.
2714
2715The DJGPP version can now debug programs that use signals. It is
2716possible to catch signals that happened in the debuggee, deliver
2717signals to it, interrupt it with Ctrl-C, etc. (Previously, a signal
2718would kill the program being debugged.) Programs that hook hardware
2719interrupts (keyboard, timer, etc.) can also be debugged.
2720
2721It is now possible to debug DJGPP programs that redirect their
2722standard handles or switch them to raw (as opposed to cooked) mode, or
2723even close them. The command ``run < foo > bar'' works as expected,
2724and ``info terminal'' reports useful information about the debuggee's
2725terminal, including raw/cooked mode, redirection, etc.
2726
2727The DJGPP version now uses termios functions for console I/O, which
2728enables debugging graphics programs. Interrupting GDB with Ctrl-C
2729also works.
2730
2731DOS-style file names with drive letters are now fully supported by
2732GDB.
2733
2734It is now possible to debug DJGPP programs that switch their working
2735directory. It is also possible to rerun the debuggee any number of
2736times without restarting GDB; thus, you can use the same setup,
2737breakpoints, etc. for many debugging sessions.
2738
ed9a39eb
JM
2739* New native configurations
2740
2741ARM GNU/Linux arm*-*-linux*
afc05dd4 2742PowerPC GNU/Linux powerpc-*-linux*
ed9a39eb 2743
7a292a7a
SS
2744* New targets
2745
96baa820 2746Motorola MCore mcore-*-*
adf40b2e
JM
2747x86 VxWorks i[3456]86-*-vxworks*
2748PowerPC VxWorks powerpc-*-vxworks*
7a292a7a
SS
2749TI TMS320C80 tic80-*-*
2750
085dd6e6
JM
2751* OBSOLETE configurations
2752
2753Altos 3068 m68*-altos-*
2754Convex c1-*-*, c2-*-*
9846de1b 2755Pyramid pyramid-*-*
ed9a39eb 2756ARM RISCix arm-*-* (as host)
104c1213 2757Tahoe tahoe-*-*
7a292a7a 2758
9debab2f
AC
2759Configurations that have been declared obsolete will be commented out,
2760but the code will be left in place. If there is no activity to revive
2761these configurations before the next release of GDB, the sources will
2762be permanently REMOVED.
2763
5330533d
SS
2764* Gould support removed
2765
2766Support for the Gould PowerNode and NP1 has been removed.
2767
bc9e5bbf
AC
2768* New features for SVR4
2769
2770On SVR4 native platforms (such as Solaris), if you attach to a process
2771without first loading a symbol file, GDB will now attempt to locate and
2772load symbols from the running process's executable file.
2773
2774* Many C++ enhancements
2775
2776C++ support has been greatly improved. Overload resolution now works properly
2777in almost all cases. RTTI support is on the way.
2778
adf40b2e
JM
2779* Remote targets can connect to a sub-program
2780
2781A popen(3) style serial-device has been added. This device starts a
2782sub-process (such as a stand-alone simulator) and then communicates
2783with that. The sub-program to run is specified using the syntax
2784``|<program> <args>'' vis:
2785
2786 (gdb) set remotedebug 1
2787 (gdb) target extended-remote |mn10300-elf-sim program-args
2788
43e526b9
JM
2789* MIPS 64 remote protocol
2790
2791A long standing bug in the mips64 remote protocol where by GDB
2792expected certain 32 bit registers (ex SR) to be transfered as 32
2793instead of 64 bits has been fixed.
2794
2795The command ``set remote-mips64-transfers-32bit-regs on'' has been
2796added to provide backward compatibility with older versions of GDB.
2797
96baa820
JM
2798* ``set remotebinarydownload'' replaced by ``set remote X-packet''
2799
2800The command ``set remotebinarydownload'' command has been replaced by
2801``set remote X-packet''. Other commands in ``set remote'' family
2802include ``set remote P-packet''.
2803
11cf8741
JM
2804* Breakpoint commands accept ranges.
2805
2806The breakpoint commands ``enable'', ``disable'', and ``delete'' now
2807accept a range of breakpoints, e.g. ``5-7''. The tracepoint command
2808``tracepoint passcount'' also accepts a range of tracepoints.
2809
7876dd43
DB
2810* ``apropos'' command added.
2811
2812The ``apropos'' command searches through command names and
2813documentation strings, printing out matches, making it much easier to
2814try to find a command that does what you are looking for.
2815
bc9e5bbf
AC
2816* New MI interface
2817
2818A new machine oriented interface (MI) has been added to GDB. This
2819interface is designed for debug environments running GDB as a separate
7162c0ca
EZ
2820process. This is part of the long term libGDB project. See the
2821"GDB/MI" chapter of the GDB manual for further information. It can be
2822enabled by configuring with:
bc9e5bbf
AC
2823
2824 .../configure --enable-gdbmi
2825
c906108c
SS
2826*** Changes in GDB-4.18:
2827
2828* New native configurations
2829
2830HP-UX 10.20 hppa*-*-hpux10.20
2831HP-UX 11.x hppa*-*-hpux11.0*
55241689 2832M68K GNU/Linux m68*-*-linux*
c906108c
SS
2833
2834* New targets
2835
2836Fujitsu FR30 fr30-*-elf*
2837Intel StrongARM strongarm-*-*
2838Mitsubishi D30V d30v-*-*
2839
2840* OBSOLETE configurations
2841
2842Gould PowerNode, NP1 np1-*-*, pn-*-*
2843
2844Configurations that have been declared obsolete will be commented out,
2845but the code will be left in place. If there is no activity to revive
2846these configurations before the next release of GDB, the sources will
2847be permanently REMOVED.
2848
2849* ANSI/ISO C
2850
2851As a compatibility experiment, GDB's source files buildsym.h and
2852buildsym.c have been converted to pure standard C, no longer
2853containing any K&R compatibility code. We believe that all systems in
2854use today either come with a standard C compiler, or have a GCC port
2855available. If this is not true, please report the affected
2856configuration to bug-gdb@gnu.org immediately. See the README file for
2857information about getting a standard C compiler if you don't have one
2858already.
2859
2860* Readline 2.2
2861
2862GDB now uses readline 2.2.
2863
2864* set extension-language
2865
2866You can now control the mapping between filename extensions and source
2867languages by using the `set extension-language' command. For instance,
2868you can ask GDB to treat .c files as C++ by saying
2869 set extension-language .c c++
2870The command `info extensions' lists all of the recognized extensions
2871and their associated languages.
2872
2873* Setting processor type for PowerPC and RS/6000
2874
2875When GDB is configured for a powerpc*-*-* or an rs6000*-*-* target,
2876you can use the `set processor' command to specify what variant of the
2877PowerPC family you are debugging. The command
2878
2879 set processor NAME
2880
2881sets the PowerPC/RS6000 variant to NAME. GDB knows about the
2882following PowerPC and RS6000 variants:
2883
2884 ppc-uisa PowerPC UISA - a PPC processor as viewed by user-level code
2885 rs6000 IBM RS6000 ("POWER") architecture, user-level view
2886 403 IBM PowerPC 403
2887 403GC IBM PowerPC 403GC
2888 505 Motorola PowerPC 505
2889 860 Motorola PowerPC 860 or 850
2890 601 Motorola PowerPC 601
2891 602 Motorola PowerPC 602
2892 603 Motorola/IBM PowerPC 603 or 603e
2893 604 Motorola PowerPC 604 or 604e
2894 750 Motorola/IBM PowerPC 750 or 750
2895
2896At the moment, this command just tells GDB what to name the
2897special-purpose processor registers. Since almost all the affected
2898registers are inaccessible to user-level programs, this command is
2899only useful for remote debugging in its present form.
2900
2901* HP-UX support
2902
2903Thanks to a major code donation from Hewlett-Packard, GDB now has much
2904more extensive support for HP-UX. Added features include shared
2905library support, kernel threads and hardware watchpoints for 11.00,
2906support for HP's ANSI C and C++ compilers, and a compatibility mode
2907for xdb and dbx commands.
2908
2909* Catchpoints
2910
2911HP's donation includes the new concept of catchpoints, which is a
2912generalization of the old catch command. On HP-UX, it is now possible
2913to catch exec, fork, and vfork, as well as library loading.
2914
2915This means that the existing catch command has changed; its first
2916argument now specifies the type of catch to be set up. See the
2917output of "help catch" for a list of catchpoint types.
2918
2919* Debugging across forks
2920
2921On HP-UX, you can choose which process to debug when a fork() happens
2922in the inferior.
2923
2924* TUI
2925
2926HP has donated a curses-based terminal user interface (TUI). To get
2927it, build with --enable-tui. Although this can be enabled for any
2928configuration, at present it only works for native HP debugging.
2929
2930* GDB remote protocol additions
2931
2932A new protocol packet 'X' that writes binary data is now available.
2933Default behavior is to try 'X', then drop back to 'M' if the stub
2934fails to respond. The settable variable `remotebinarydownload'
2935allows explicit control over the use of 'X'.
2936
2937For 64-bit targets, the memory packets ('M' and 'm') can now contain a
2938full 64-bit address. The command
2939
2940 set remoteaddresssize 32
2941
2942can be used to revert to the old behaviour. For existing remote stubs
2943the change should not be noticed, as the additional address information
2944will be discarded.
2945
2946In order to assist in debugging stubs, you may use the maintenance
2947command `packet' to send any text string to the stub. For instance,
2948
2949 maint packet heythere
2950
2951sends the packet "$heythere#<checksum>". Note that it is very easy to
2952disrupt a debugging session by sending the wrong packet at the wrong
2953time.
2954
2955The compare-sections command allows you to compare section data on the
2956target to what is in the executable file without uploading or
2957downloading, by comparing CRC checksums.
2958
2959* Tracing can collect general expressions
2960
2961You may now collect general expressions at tracepoints. This requires
2962further additions to the target-side stub; see tracepoint.c and
2963doc/agentexpr.texi for further details.
2964
2965* mask-address variable for Mips
2966
2967For Mips targets, you may control the zeroing of the upper 32 bits of
2968a 64-bit address by entering `set mask-address on'. This is mainly
2969of interest to users of embedded R4xxx and R5xxx processors.
2970
2971* Higher serial baud rates
2972
2973GDB's serial code now allows you to specify baud rates 57600, 115200,
2974230400, and 460800 baud. (Note that your host system may not be able
2975to achieve all of these rates.)
2976
2977* i960 simulator
2978
2979The i960 configuration now includes an initial implementation of a
2980builtin simulator, contributed by Jim Wilson.
2981
2982
2983*** Changes in GDB-4.17:
2984
2985* New native configurations
2986
2987Alpha GNU/Linux alpha*-*-linux*
2988Unixware 2.x i[3456]86-unixware2*
2989Irix 6.x mips*-sgi-irix6*
2990PowerPC GNU/Linux powerpc-*-linux*
2991PowerPC Solaris powerpcle-*-solaris*
2992Sparc GNU/Linux sparc-*-linux*
2993Motorola sysV68 R3V7.1 m68k-motorola-sysv
2994
2995* New targets
2996
2997Argonaut Risc Chip (ARC) arc-*-*
2998Hitachi H8/300S h8300*-*-*
2999Matsushita MN10200 w/simulator mn10200-*-*
3000Matsushita MN10300 w/simulator mn10300-*-*
3001MIPS NEC VR4100 mips64*vr4100*{,el}-*-elf*
3002MIPS NEC VR5000 mips64*vr5000*{,el}-*-elf*
3003MIPS Toshiba TX39 mips64*tx39*{,el}-*-elf*
3004Mitsubishi D10V w/simulator d10v-*-*
3005Mitsubishi M32R/D w/simulator m32r-*-elf*
3006Tsqware Sparclet sparclet-*-*
3007NEC V850 w/simulator v850-*-*
3008
3009* New debugging protocols
3010
3011ARM with RDI protocol arm*-*-*
3012M68K with dBUG monitor m68*-*-{aout,coff,elf}
3013DDB and LSI variants of PMON protocol mips*-*-*
3014PowerPC with DINK32 monitor powerpc{,le}-*-eabi
3015PowerPC with SDS protocol powerpc{,le}-*-eabi
3016Macraigor OCD (Wiggler) devices powerpc{,le}-*-eabi
3017
3018* DWARF 2
3019
3020All configurations can now understand and use the DWARF 2 debugging
3021format. The choice is automatic, if the symbol file contains DWARF 2
3022information.
3023
3024* Java frontend
3025
3026GDB now includes basic Java language support. This support is
3027only useful with Java compilers that produce native machine code.
3028
3029* solib-absolute-prefix and solib-search-path
3030
3031For SunOS and SVR4 shared libraries, you may now set the prefix for
3032loading absolute shared library symbol files, and the search path for
3033locating non-absolute shared library symbol files.
3034
3035* Live range splitting
3036
3037GDB can now effectively debug code for which GCC has performed live
3038range splitting as part of its optimization. See gdb/doc/LRS for
3039more details on the expected format of the stabs information.
3040
3041* Hurd support
3042
3043GDB's support for the GNU Hurd, including thread debugging, has been
3044updated to work with current versions of the Hurd.
3045
3046* ARM Thumb support
3047
3048GDB's ARM target configuration now handles the ARM7T (Thumb) 16-bit
3049instruction set. ARM GDB automatically detects when Thumb
3050instructions are in use, and adjusts disassembly and backtracing
3051accordingly.
3052
3053* MIPS16 support
3054
3055GDB's MIPS target configurations now handle the MIP16 16-bit
3056instruction set.
3057
3058* Overlay support
3059
3060GDB now includes support for overlays; if an executable has been
3061linked such that multiple sections are based at the same address, GDB
3062will decide which section to use for symbolic info. You can choose to
3063control the decision manually, using overlay commands, or implement
3064additional target-side support and use "overlay load-target" to bring
3065in the overlay mapping. Do "help overlay" for more detail.
3066
3067* info symbol
3068
3069The command "info symbol <address>" displays information about
3070the symbol at the specified address.
3071
3072* Trace support
3073
3074The standard remote protocol now includes an extension that allows
3075asynchronous collection and display of trace data. This requires
3076extensive support in the target-side debugging stub. Tracing mode
3077includes a new interaction mode in GDB and new commands: see the
3078file tracepoint.c for more details.
3079
3080* MIPS simulator
3081
3082Configurations for embedded MIPS now include a simulator contributed
3083by Cygnus Solutions. The simulator supports the instruction sets
3084of most MIPS variants.
3085
3086* Sparc simulator
3087
3088Sparc configurations may now include the ERC32 simulator contributed
3089by the European Space Agency. The simulator is not built into
3090Sparc targets by default; configure with --enable-sim to include it.
3091
3092* set architecture
3093
3094For target configurations that may include multiple variants of a
3095basic architecture (such as MIPS and SH), you may now set the
3096architecture explicitly. "set arch" sets, "info arch" lists
3097the possible architectures.
3098
3099*** Changes in GDB-4.16:
3100
3101* New native configurations
3102
3103Windows 95, x86 Windows NT i[345]86-*-cygwin32
3104M68K NetBSD m68k-*-netbsd*
3105PowerPC AIX 4.x powerpc-*-aix*
3106PowerPC MacOS powerpc-*-macos*
3107PowerPC Windows NT powerpcle-*-cygwin32
3108RS/6000 AIX 4.x rs6000-*-aix4*
3109
3110* New targets
3111
3112ARM with RDP protocol arm-*-*
3113I960 with MON960 i960-*-coff
3114MIPS VxWorks mips*-*-vxworks*
3115MIPS VR4300 with PMON mips64*vr4300{,el}-*-elf*
3116PowerPC with PPCBUG monitor powerpc{,le}-*-eabi*
3117Hitachi SH3 sh-*-*
3118Matra Sparclet sparclet-*-*
3119
3120* PowerPC simulator
3121
3122The powerpc-eabi configuration now includes the PSIM simulator,
3123contributed by Andrew Cagney, with assistance from Mike Meissner.
3124PSIM is a very elaborate model of the PowerPC, including not only
3125basic instruction set execution, but also details of execution unit
3126performance and I/O hardware. See sim/ppc/README for more details.
3127
3128* Solaris 2.5
3129
3130GDB now works with Solaris 2.5.
3131
3132* Windows 95/NT native
3133
3134GDB will now work as a native debugger on Windows 95 and Windows NT.
3135To build it from source, you must use the "gnu-win32" environment,
3136which uses a DLL to emulate enough of Unix to run the GNU tools.
3137Further information, binaries, and sources are available at
3138ftp.cygnus.com, under pub/gnu-win32.
3139
3140* dont-repeat command
3141
3142If a user-defined command includes the command `dont-repeat', then the
3143command will not be repeated if the user just types return. This is
3144useful if the command is time-consuming to run, so that accidental
3145extra keystrokes don't run the same command many times.
3146
3147* Send break instead of ^C
3148
3149The standard remote protocol now includes an option to send a break
3150rather than a ^C to the target in order to interrupt it. By default,
3151GDB will send ^C; to send a break, set the variable `remotebreak' to 1.
3152
3153* Remote protocol timeout
3154
3155The standard remote protocol includes a new variable `remotetimeout'
3156that allows you to set the number of seconds before GDB gives up trying
3157to read from the target. The default value is 2.
3158
3159* Automatic tracking of dynamic object loading (HPUX and Solaris only)
3160
3161By default GDB will automatically keep track of objects as they are
3162loaded and unloaded by the dynamic linker. By using the command `set
3163stop-on-solib-events 1' you can arrange for GDB to stop the inferior
3164when shared library events occur, thus allowing you to set breakpoints
3165in shared libraries which are explicitly loaded by the inferior.
3166
3167Note this feature does not work on hpux8. On hpux9 you must link
3168/usr/lib/end.o into your program. This feature should work
3169automatically on hpux10.
3170
3171* Irix 5.x hardware watchpoint support
3172
3173Irix 5 configurations now support the use of hardware watchpoints.
3174
3175* Mips protocol "SYN garbage limit"
3176
3177When debugging a Mips target using the `target mips' protocol, you
3178may set the number of characters that GDB will ignore by setting
3179the `syn-garbage-limit'. A value of -1 means that GDB will ignore
3180every character. The default value is 1050.
3181
3182* Recording and replaying remote debug sessions
3183
3184If you set `remotelogfile' to the name of a file, gdb will write to it
3185a recording of a remote debug session. This recording may then be
3186replayed back to gdb using "gdbreplay". See gdbserver/README for
3187details. This is useful when you have a problem with GDB while doing
3188remote debugging; you can make a recording of the session and send it
3189to someone else, who can then recreate the problem.
3190
3191* Speedups for remote debugging
3192
3193GDB includes speedups for downloading and stepping MIPS systems using
3194the IDT monitor, fast downloads to the Hitachi SH E7000 emulator,
3195and more efficient S-record downloading.
3196
3197* Memory use reductions and statistics collection
3198
3199GDB now uses less memory and reports statistics about memory usage.
3200Try the `maint print statistics' command, for example.
3201
3202*** Changes in GDB-4.15:
3203
3204* Psymtabs for XCOFF
3205
3206The symbol reader for AIX GDB now uses partial symbol tables. This
3207can greatly improve startup time, especially for large executables.
3208
3209* Remote targets use caching
3210
3211Remote targets now use a data cache to speed up communication with the
3212remote side. The data cache could lead to incorrect results because
3213it doesn't know about volatile variables, thus making it impossible to
3214debug targets which use memory mapped I/O devices. `set remotecache
3215off' turns the the data cache off.
3216
3217* Remote targets may have threads
3218
3219The standard remote protocol now includes support for multiple threads
3220in the target system, using new protocol commands 'H' and 'T'. See
3221gdb/remote.c for details.
3222
3223* NetROM support
3224
3225If GDB is configured with `--enable-netrom', then it will include
3226support for the NetROM ROM emulator from XLNT Designs. The NetROM
3227acts as though it is a bank of ROM on the target board, but you can
3228write into it over the network. GDB's support consists only of
3229support for fast loading into the emulated ROM; to debug, you must use
3230another protocol, such as standard remote protocol. The usual
3231sequence is something like
3232
3233 target nrom <netrom-hostname>
3234 load <prog>
3235 target remote <netrom-hostname>:1235
3236
3237* Macintosh host
3238
3239GDB now includes support for the Apple Macintosh, as a host only. It
3240may be run as either an MPW tool or as a standalone application, and
3241it can debug through the serial port. All the usual GDB commands are
3242available, but to the target command, you must supply "serial" as the
3243device type instead of "/dev/ttyXX". See mpw-README in the main
3244directory for more information on how to build. The MPW configuration
3245scripts */mpw-config.in support only a few targets, and only the
3246mips-idt-ecoff target has been tested.
3247
3248* Autoconf
3249
3250GDB configuration now uses autoconf. This is not user-visible,
3251but does simplify configuration and building.
3252
3253* hpux10
3254
3255GDB now supports hpux10.
3256
3257*** Changes in GDB-4.14:
3258
3259* New native configurations
3260
3261x86 FreeBSD i[345]86-*-freebsd
3262x86 NetBSD i[345]86-*-netbsd
3263NS32k NetBSD ns32k-*-netbsd
3264Sparc NetBSD sparc-*-netbsd
3265
3266* New targets
3267
3268A29K VxWorks a29k-*-vxworks
3269HP PA PRO embedded (WinBond W89K & Oki OP50N) hppa*-*-pro*
3270CPU32 EST-300 emulator m68*-*-est*
3271PowerPC ELF powerpc-*-elf
3272WDC 65816 w65-*-*
3273
3274* Alpha OSF/1 support for procfs
3275
3276GDB now supports procfs under OSF/1-2.x and higher, which makes it
3277possible to attach to running processes. As the mounting of the /proc
3278filesystem is optional on the Alpha, GDB automatically determines
3279the availability of /proc during startup. This can lead to problems
3280if /proc is unmounted after GDB has been started.
3281
3282* Arguments to user-defined commands
3283
3284User commands may accept up to 10 arguments separated by whitespace.
3285Arguments are accessed within the user command via $arg0..$arg9. A
3286trivial example:
3287define adder
3288 print $arg0 + $arg1 + $arg2
3289
3290To execute the command use:
3291adder 1 2 3
3292
3293Defines the command "adder" which prints the sum of its three arguments.
3294Note the arguments are text substitutions, so they may reference variables,
3295use complex expressions, or even perform inferior function calls.
3296
3297* New `if' and `while' commands
3298
3299This makes it possible to write more sophisticated user-defined
3300commands. Both commands take a single argument, which is the
3301expression to evaluate, and must be followed by the commands to
3302execute, one per line, if the expression is nonzero, the list being
3303terminated by the word `end'. The `if' command list may include an
3304`else' word, which causes the following commands to be executed only
3305if the expression is zero.
3306
3307* Fortran source language mode
3308
3309GDB now includes partial support for Fortran 77. It will recognize
3310Fortran programs and can evaluate a subset of Fortran expressions, but
3311variables and functions may not be handled correctly. GDB will work
3312with G77, but does not yet know much about symbols emitted by other
3313Fortran compilers.
3314
3315* Better HPUX support
3316
3317Most debugging facilities now work on dynamic executables for HPPAs
3318running hpux9 or later. You can attach to running dynamically linked
3319processes, but by default the dynamic libraries will be read-only, so
3320for instance you won't be able to put breakpoints in them. To change
3321that behavior do the following before running the program:
3322
3323 adb -w a.out
3324 __dld_flags?W 0x5
3325 control-d
3326
3327This will cause the libraries to be mapped private and read-write.
3328To revert to the normal behavior, do this:
3329
3330 adb -w a.out
3331 __dld_flags?W 0x4
3332 control-d
3333
3334You cannot set breakpoints or examine data in the library until after
3335the library is loaded if the function/data symbols do not have
3336external linkage.
3337
3338GDB can now also read debug symbols produced by the HP C compiler on
3339HPPAs (sorry, no C++, Fortran or 68k support).
3340
3341* Target byte order now dynamically selectable
3342
3343You can choose which byte order to use with a target system, via the
3344commands "set endian big" and "set endian little", and you can see the
3345current setting by using "show endian". You can also give the command
3346"set endian auto", in which case GDB will use the byte order
3347associated with the executable. Currently, only embedded MIPS
3348configurations support dynamic selection of target byte order.
3349
3350* New DOS host serial code
3351
3352This version uses DPMI interrupts to handle buffered I/O, so you
3353no longer need to run asynctsr when debugging boards connected to
3354a PC's serial port.
3355
3356*** Changes in GDB-4.13:
3357
3358* New "complete" command
3359
3360This lists all the possible completions for the rest of the line, if it
3361were to be given as a command itself. This is intended for use by emacs.
3362
3363* Trailing space optional in prompt
3364
3365"set prompt" no longer adds a space for you after the prompt you set. This
3366allows you to set a prompt which ends in a space or one that does not.
3367
3368* Breakpoint hit counts
3369
3370"info break" now displays a count of the number of times the breakpoint
3371has been hit. This is especially useful in conjunction with "ignore"; you
3372can ignore a large number of breakpoint hits, look at the breakpoint info
3373to see how many times the breakpoint was hit, then run again, ignoring one
3374less than that number, and this will get you quickly to the last hit of
3375that breakpoint.
3376
3377* Ability to stop printing at NULL character
3378
3379"set print null-stop" will cause GDB to stop printing the characters of
3380an array when the first NULL is encountered. This is useful when large
3381arrays actually contain only short strings.
3382
3383* Shared library breakpoints
3384
3385In SunOS 4.x, SVR4, and Alpha OSF/1 configurations, you can now set
3386breakpoints in shared libraries before the executable is run.
3387
3388* Hardware watchpoints
3389
3390There is a new hardware breakpoint for the watch command for sparclite
3391targets. See gdb/sparclite/hw_breakpoint.note.
3392
55241689 3393Hardware watchpoints are also now supported under GNU/Linux.
c906108c
SS
3394
3395* Annotations
3396
3397Annotations have been added. These are for use with graphical interfaces,
3398and are still experimental. Currently only gdba.el uses these.
3399
3400* Improved Irix 5 support
3401
3402GDB now works properly with Irix 5.2.
3403
3404* Improved HPPA support
3405
3406GDB now works properly with the latest GCC and GAS.
3407
3408* New native configurations
3409
3410Sequent PTX4 i[34]86-sequent-ptx4
3411HPPA running OSF/1 hppa*-*-osf*
3412Atari TT running SVR4 m68*-*-sysv4*
3413RS/6000 LynxOS rs6000-*-lynxos*
3414
3415* New targets
3416
3417OS/9000 i[34]86-*-os9k
3418MIPS R4000 mips64*{,el}-*-{ecoff,elf}
3419Sparc64 sparc64-*-*
3420
3421* Hitachi SH7000 and E7000-PC ICE support
3422
3423There is now support for communicating with the Hitachi E7000-PC ICE.
3424This is available automatically when GDB is configured for the SH.
3425
3426* Fixes
3427
3428As usual, a variety of small fixes and improvements, both generic
3429and configuration-specific. See the ChangeLog for more detail.
3430
3431*** Changes in GDB-4.12:
3432
3433* Irix 5 is now supported
3434
3435* HPPA support
3436
3437GDB-4.12 on the HPPA has a number of changes which make it unable
3438to debug the output from the currently released versions of GCC and
3439GAS (GCC 2.5.8 and GAS-2.2 or PAGAS-1.36). Until the next major release
3440of GCC and GAS, versions of these tools designed to work with GDB-4.12
3441can be retrieved via anonymous ftp from jaguar.cs.utah.edu:/dist.
3442
3443
3444*** Changes in GDB-4.11:
3445
3446* User visible changes:
3447
3448* Remote Debugging
3449
3450The "set remotedebug" option is now consistent between the mips remote
3451target, remote targets using the gdb-specific protocol, UDI (AMD's
3452debug protocol for the 29k) and the 88k bug monitor. It is now an
3453integer specifying a debug level (normally 0 or 1, but 2 means more
3454debugging info for the mips target).
3455
3456* DEC Alpha native support
3457
3458GDB now works on the DEC Alpha. GCC 2.4.5 does not produce usable
3459debug info, but GDB works fairly well with the DEC compiler and should
3460work with a future GCC release. See the README file for a few
3461Alpha-specific notes.
3462
3463* Preliminary thread implementation
3464
3465GDB now has preliminary thread support for both SGI/Irix and LynxOS.
3466
3467* LynxOS native and target support for 386
3468
3469This release has been hosted on LynxOS 2.2, and also can be configured
3470to remotely debug programs running under LynxOS (see gdb/gdbserver/README
3471for details).
3472
3473* Improvements in C++ mangling/demangling.
3474
3475This release has much better g++ debugging, specifically in name
3476mangling/demangling, virtual function calls, print virtual table,
3477call methods, ...etc.
3478
3479*** Changes in GDB-4.10:
3480
3481 * User visible changes:
3482
3483Remote debugging using the GDB-specific (`target remote') protocol now
3484supports the `load' command. This is only useful if you have some
3485other way of getting the stub to the target system, and you can put it
3486somewhere in memory where it won't get clobbered by the download.
3487
3488Filename completion now works.
3489
3490When run under emacs mode, the "info line" command now causes the
3491arrow to point to the line specified. Also, "info line" prints
3492addresses in symbolic form (as well as hex).
3493
3494All vxworks based targets now support a user settable option, called
3495vxworks-timeout. This option represents the number of seconds gdb
3496should wait for responses to rpc's. You might want to use this if
3497your vxworks target is, perhaps, a slow software simulator or happens
3498to be on the far side of a thin network line.
3499
3500 * DEC alpha support
3501
3502This release contains support for using a DEC alpha as a GDB host for
3503cross debugging. Native alpha debugging is not supported yet.
3504
3505
3506*** Changes in GDB-4.9:
3507
3508 * Testsuite
3509
3510This is the first GDB release which is accompanied by a matching testsuite.
3511The testsuite requires installation of dejagnu, which should be available
3512via ftp from most sites that carry GNU software.
3513
3514 * C++ demangling
3515
3516'Cfront' style demangling has had its name changed to 'ARM' style, to
3517emphasize that it was written from the specifications in the C++ Annotated
3518Reference Manual, not necessarily to be compatible with AT&T cfront. Despite
3519disclaimers, it still generated too much confusion with users attempting to
3520use gdb with AT&T cfront.
3521
3522 * Simulators
3523
3524GDB now uses a standard remote interface to a simulator library.
3525So far, the library contains simulators for the Zilog Z8001/2, the
3526Hitachi H8/300, H8/500 and Super-H.
3527
3528 * New targets supported
3529
3530H8/300 simulator h8300-hitachi-hms or h8300hms
3531H8/500 simulator h8500-hitachi-hms or h8500hms
3532SH simulator sh-hitachi-hms or sh
3533Z8000 simulator z8k-zilog-none or z8ksim
3534IDT MIPS board over serial line mips-idt-ecoff
3535
3536Cross-debugging to GO32 targets is supported. It requires a custom
3537version of the i386-stub.c module which is integrated with the
3538GO32 memory extender.
3539
3540 * New remote protocols
3541
3542MIPS remote debugging protocol.
3543
3544 * New source languages supported
3545
3546This version includes preliminary support for Chill, a Pascal like language
3547used by telecommunications companies. Chill support is also being integrated
3548into the GNU compiler, but we don't know when it will be publically available.
3549
3550
3551*** Changes in GDB-4.8:
3552
3553 * HP Precision Architecture supported
3554
3555GDB now supports HP PA-RISC machines running HPUX. A preliminary
3556version of this support was available as a set of patches from the
3557University of Utah. GDB does not support debugging of programs
3558compiled with the HP compiler, because HP will not document their file
3559format. Instead, you must use GCC (version 2.3.2 or later) and PA-GAS
3560(as available from jaguar.cs.utah.edu:/dist/pa-gas.u4.tar.Z).
3561
3562Many problems in the preliminary version have been fixed.
3563
3564 * Faster and better demangling
3565
3566We have improved template demangling and fixed numerous bugs in the GNU style
3567demangler. It can now handle type modifiers such as `static' or `const'. Wide
3568character types (wchar_t) are now supported. Demangling of each symbol is now
3569only done once, and is cached when the symbol table for a file is read in.
3570This results in a small increase in memory usage for C programs, a moderate
3571increase in memory usage for C++ programs, and a fantastic speedup in
3572symbol lookups.
3573
3574`Cfront' style demangling still doesn't work with AT&T cfront. It was written
3575from the specifications in the Annotated Reference Manual, which AT&T's
3576compiler does not actually implement.
3577
3578 * G++ multiple inheritance compiler problem
3579
3580In the 2.3.2 release of gcc/g++, how the compiler resolves multiple
3581inheritance lattices was reworked to properly discover ambiguities. We
3582recently found an example which causes this new algorithm to fail in a
3583very subtle way, producing bad debug information for those classes.
3584The file 'gcc.patch' (in this directory) can be applied to gcc to
3585circumvent the problem. A future GCC release will contain a complete
3586fix.
3587
3588The previous G++ debug info problem (mentioned below for the gdb-4.7
3589release) is fixed in gcc version 2.3.2.
3590
3591 * Improved configure script
3592
3593The `configure' script will now attempt to guess your system type if
3594you don't supply a host system type. The old scheme of supplying a
3595host system triplet is preferable over using this. All the magic is
3596done in the new `config.guess' script. Examine it for details.
3597
3598We have also brought our configure script much more in line with the FSF's
3599version. It now supports the --with-xxx options. In particular,
3600`--with-minimal-bfd' can be used to make the GDB binary image smaller.
3601The resulting GDB will not be able to read arbitrary object file formats --
3602only the format ``expected'' to be used on the configured target system.
3603We hope to make this the default in a future release.
3604
3605 * Documentation improvements
3606
3607There's new internal documentation on how to modify GDB, and how to
3608produce clean changes to the code. We implore people to read it
3609before submitting changes.
3610
3611The GDB manual uses new, sexy Texinfo conditionals, rather than arcane
3612M4 macros. The new texinfo.tex is provided in this release. Pre-built
3613`info' files are also provided. To build `info' files from scratch,
3614you will need the latest `makeinfo' release, which will be available in
3615a future texinfo-X.Y release.
3616
3617*NOTE* The new texinfo.tex can cause old versions of TeX to hang.
3618We're not sure exactly which versions have this problem, but it has
3619been seen in 3.0. We highly recommend upgrading to TeX version 3.141
3620or better. If that isn't possible, there is a patch in
3621`texinfo/tex3patch' that will modify `texinfo/texinfo.tex' to work
3622around this problem.
3623
3624 * New features
3625
3626GDB now supports array constants that can be used in expressions typed in by
3627the user. The syntax is `{element, element, ...}'. Ie: you can now type
3628`print {1, 2, 3}', and it will build up an array in memory malloc'd in
3629the target program.
3630
3631The new directory `gdb/sparclite' contains a program that demonstrates
3632how the sparc-stub.c remote stub runs on a Fujitsu SPARClite processor.
3633
3634 * New native hosts supported
3635
3636HP/PA-RISC under HPUX using GNU tools hppa1.1-hp-hpux
3637386 CPUs running SCO Unix 3.2v4 i386-unknown-sco3.2v4
3638
3639 * New targets supported
3640
3641AMD 29k family via UDI a29k-amd-udi or udi29k
3642
3643 * New file formats supported
3644
3645BFD now supports reading HP/PA-RISC executables (SOM file format?),
3646HPUX core files, and SCO 3.2v2 core files.
3647
3648 * Major bug fixes
3649
3650Attaching to processes now works again; thanks for the many bug reports.
3651
3652We have also stomped on a bunch of core dumps caused by
3653printf_filtered("%s") problems.
3654
3655We eliminated a copyright problem on the rpc and ptrace header files
3656for VxWorks, which was discovered at the last minute during the 4.7
3657release. You should now be able to build a VxWorks GDB.
3658
3659You can now interrupt gdb while an attached process is running. This
3660will cause the attached process to stop, and give control back to GDB.
3661
3662We fixed problems caused by using too many file descriptors
3663for reading symbols from object files and libraries. This was
3664especially a problem for programs that used many (~100) shared
3665libraries.
3666
3667The `step' command now only enters a subroutine if there is line number
3668information for the subroutine. Otherwise it acts like the `next'
3669command. Previously, `step' would enter subroutines if there was
3670any debugging information about the routine. This avoids problems
3671when using `cc -g1' on MIPS machines.
3672
3673 * Internal improvements
3674
3675GDB's internal interfaces have been improved to make it easier to support
3676debugging of multiple languages in the future.
3677
3678GDB now uses a common structure for symbol information internally.
3679Minimal symbols (derived from linkage symbols in object files), partial
3680symbols (from a quick scan of debug information), and full symbols
3681contain a common subset of information, making it easier to write
3682shared code that handles any of them.
3683
3684 * New command line options
3685
3686We now accept --silent as an alias for --quiet.
3687
3688 * Mmalloc licensing
3689
3690The memory-mapped-malloc library is now licensed under the GNU Library
3691General Public License.
3692
3693*** Changes in GDB-4.7:
3694
3695 * Host/native/target split
3696
3697GDB has had some major internal surgery to untangle the support for
3698hosts and remote targets. Now, when you configure GDB for a remote
3699target, it will no longer load in all of the support for debugging
3700local programs on the host. When fully completed and tested, this will
3701ensure that arbitrary host/target combinations are possible.
3702
3703The primary conceptual shift is to separate the non-portable code in
3704GDB into three categories. Host specific code is required any time GDB
3705is compiled on that host, regardless of the target. Target specific
3706code relates to the peculiarities of the target, but can be compiled on
3707any host. Native specific code is everything else: it can only be
3708built when the host and target are the same system. Child process
3709handling and core file support are two common `native' examples.
3710
3711GDB's use of /proc for controlling Unix child processes is now cleaner.
3712It has been split out into a single module under the `target_ops' vector,
3713plus two native-dependent functions for each system that uses /proc.
3714
3715 * New hosts supported
3716
3717HP/Apollo 68k (under the BSD domain) m68k-apollo-bsd or apollo68bsd
3718386 CPUs running various BSD ports i386-unknown-bsd or 386bsd
3719386 CPUs running SCO Unix i386-unknown-scosysv322 or i386sco
3720
3721 * New targets supported
3722
3723Fujitsu SPARClite sparclite-fujitsu-none or sparclite
372468030 and CPU32 m68030-*-*, m68332-*-*
3725
3726 * New native hosts supported
3727
3728386 CPUs running various BSD ports i386-unknown-bsd or 386bsd
3729 (386bsd is not well tested yet)
3730386 CPUs running SCO Unix i386-unknown-scosysv322 or sco
3731
3732 * New file formats supported
3733
3734BFD now supports COFF files for the Zilog Z8000 microprocessor. It
3735supports reading of `a.out.adobe' object files, which are an a.out
3736format extended with minimal information about multiple sections.
3737
3738 * New commands
3739
3740`show copying' is the same as the old `info copying'.
3741`show warranty' is the same as `info warrantee'.
3742These were renamed for consistency. The old commands continue to work.
3743
3744`info handle' is a new alias for `info signals'.
3745
3746You can now define pre-command hooks, which attach arbitrary command
3747scripts to any command. The commands in the hook will be executed
3748prior to the user's command. You can also create a hook which will be
3749executed whenever the program stops. See gdb.texinfo.
3750
3751 * C++ improvements
3752
3753We now deal with Cfront style name mangling, and can even extract type
3754info from mangled symbols. GDB can automatically figure out which
3755symbol mangling style your C++ compiler uses.
3756
3757Calling of methods and virtual functions has been improved as well.
3758
3759 * Major bug fixes
3760
3761The crash that occured when debugging Sun Ansi-C compiled binaries is
3762fixed. This was due to mishandling of the extra N_SO stabs output
3763by the compiler.
3764
3765We also finally got Ultrix 4.2 running in house, and fixed core file
3766support, with help from a dozen people on the net.
3767
3768John M. Farrell discovered that the reason that single-stepping was so
3769slow on all of the Mips based platforms (primarily SGI and DEC) was
3770that we were trying to demangle and lookup a symbol used for internal
3771purposes on every instruction that was being stepped through. Changing
3772the name of that symbol so that it couldn't be mistaken for a C++
3773mangled symbol sped things up a great deal.
3774
3775Rich Pixley sped up symbol lookups in general by getting much smarter
3776about when C++ symbol mangling is necessary. This should make symbol
3777completion (TAB on the command line) much faster. It's not as fast as
3778we'd like, but it's significantly faster than gdb-4.6.
3779
3780 * AMD 29k support
3781
3782A new user controllable variable 'call_scratch_address' can
3783specify the location of a scratch area to be used when GDB
3784calls a function in the target. This is necessary because the
3785usual method of putting the scratch area on the stack does not work
3786in systems that have separate instruction and data spaces.
3787
3788We integrated changes to support the 29k UDI (Universal Debugger
3789Interface), but discovered at the last minute that we didn't have all
3790of the appropriate copyright paperwork. We are working with AMD to
3791resolve this, and hope to have it available soon.
3792
3793 * Remote interfaces
3794
3795We have sped up the remote serial line protocol, especially for targets
3796with lots of registers. It now supports a new `expedited status' ('T')
3797message which can be used in place of the existing 'S' status message.
3798This allows the remote stub to send only the registers that GDB
3799needs to make a quick decision about single-stepping or conditional
3800breakpoints, eliminating the need to fetch the entire register set for
3801each instruction being stepped through.
3802
3803The GDB remote serial protocol now implements a write-through cache for
3804registers, only re-reading the registers if the target has run.
3805
3806There is also a new remote serial stub for SPARC processors. You can
3807find it in gdb-4.7/gdb/sparc-stub.c. This was written to support the
3808Fujitsu SPARClite processor, but will run on any stand-alone SPARC
3809processor with a serial port.
3810
3811 * Configuration
3812
3813Configure.in files have become much easier to read and modify. A new
3814`table driven' format makes it more obvious what configurations are
3815supported, and what files each one uses.
3816
3817 * Library changes
3818
3819There is a new opcodes library which will eventually contain all of the
3820disassembly routines and opcode tables. At present, it only contains
3821Sparc and Z8000 routines. This will allow the assembler, debugger, and
3822disassembler (binutils/objdump) to share these routines.
3823
3824The libiberty library is now copylefted under the GNU Library General
3825Public License. This allows more liberal use, and was done so libg++
3826can use it. This makes no difference to GDB, since the Library License
3827grants all the rights from the General Public License.
3828
3829 * Documentation
3830
3831The file gdb-4.7/gdb/doc/stabs.texinfo is a (relatively) complete
3832reference to the stabs symbol info used by the debugger. It is (as far
3833as we know) the only published document on this fascinating topic. We
3834encourage you to read it, compare it to the stabs information on your
3835system, and send improvements on the document in general (to
3836bug-gdb@prep.ai.mit.edu).
3837
3838And, of course, many bugs have been fixed.
3839
3840
3841*** Changes in GDB-4.6:
3842
3843 * Better support for C++ function names
3844
3845GDB now accepts as input the "demangled form" of C++ overloaded function
3846names and member function names, and can do command completion on such names
3847(using TAB, TAB-TAB, and ESC-?). The names have to be quoted with a pair of
3848single quotes. Examples are 'func (int, long)' and 'obj::operator==(obj&)'.
3849Make use of command completion, it is your friend.
3850
3851GDB also now accepts a variety of C++ mangled symbol formats. They are
3852the GNU g++ style, the Cfront (ARM) style, and the Lucid (lcc) style.
3853You can tell GDB which format to use by doing a 'set demangle-style {gnu,
3854lucid, cfront, auto}'. 'gnu' is the default. Do a 'set demangle-style foo'
3855for the list of formats.
3856
3857 * G++ symbol mangling problem
3858
3859Recent versions of gcc have a bug in how they emit debugging information for
3860C++ methods (when using dbx-style stabs). The file 'gcc.patch' (in this
3861directory) can be applied to gcc to fix the problem. Alternatively, if you
3862can't fix gcc, you can #define GCC_MANGLE_BUG when compling gdb/symtab.c. The
3863usual symptom is difficulty with setting breakpoints on methods. GDB complains
3864about the method being non-existent. (We believe that version 2.2.2 of GCC has
3865this problem.)
3866
3867 * New 'maintenance' command
3868
3869All of the commands related to hacking GDB internals have been moved out of
3870the main command set, and now live behind the 'maintenance' command. This
3871can also be abbreviated as 'mt'. The following changes were made:
3872
3873 dump-me -> maintenance dump-me
3874 info all-breakpoints -> maintenance info breakpoints
3875 printmsyms -> maintenance print msyms
3876 printobjfiles -> maintenance print objfiles
3877 printpsyms -> maintenance print psymbols
3878 printsyms -> maintenance print symbols
3879
3880The following commands are new:
3881
3882 maintenance demangle Call internal GDB demangler routine to
3883 demangle a C++ link name and prints the result.
3884 maintenance print type Print a type chain for a given symbol
3885
3886 * Change to .gdbinit file processing
3887
3888We now read the $HOME/.gdbinit file before processing the argv arguments
3889(e.g. reading symbol files or core files). This allows global parameters to
3890be set, which will apply during the symbol reading. The ./.gdbinit is still
3891read after argv processing.
3892
3893 * New hosts supported
3894
3895Solaris-2.0 !!! sparc-sun-solaris2 or sun4sol2
3896
55241689 3897GNU/Linux support i386-unknown-linux or linux
c906108c
SS
3898
3899We are also including code to support the HP/PA running BSD and HPUX. This
3900is almost guaranteed not to work, as we didn't have time to test or build it
3901for this release. We are including it so that the more adventurous (or
3902masochistic) of you can play with it. We also had major problems with the
3903fact that the compiler that we got from HP doesn't support the -g option.
3904It costs extra.
3905
3906 * New targets supported
3907
3908Hitachi H8/300 h8300-hitachi-hms or h8300hms
3909
3910 * More smarts about finding #include files
3911
3912GDB now remembers the compilation directory for all include files, and for
3913all files from which C is generated (like yacc and lex sources). This
3914greatly improves GDB's ability to find yacc/lex sources, and include files,
3915especially if you are debugging your program from a directory different from
3916the one that contains your sources.
3917
3918We also fixed a bug which caused difficulty with listing and setting
3919breakpoints in include files which contain C code. (In the past, you had to
3920try twice in order to list an include file that you hadn't looked at before.)
3921
3922 * Interesting infernals change
3923
3924GDB now deals with arbitrary numbers of sections, where the symbols for each
3925section must be relocated relative to that section's landing place in the
3926target's address space. This work was needed to support ELF with embedded
3927stabs used by Solaris-2.0.
3928
3929 * Bug fixes (of course!)
3930
3931There have been loads of fixes for the following things:
3932 mips, rs6000, 29k/udi, m68k, g++, type handling, elf/dwarf, m88k,
3933 i960, stabs, DOS(GO32), procfs, etc...
3934
3935See the ChangeLog for details.
3936
3937*** Changes in GDB-4.5:
3938
3939 * New machines supported (host and target)
3940
3941IBM RS6000 running AIX rs6000-ibm-aix or rs6000
3942
3943SGI Irix-4.x mips-sgi-irix4 or iris4
3944
3945 * New malloc package
3946
3947GDB now uses a new memory manager called mmalloc, based on gmalloc.
3948Mmalloc is capable of handling mutiple heaps of memory. It is also
3949capable of saving a heap to a file, and then mapping it back in later.
3950This can be used to greatly speedup the startup of GDB by using a
3951pre-parsed symbol table which lives in a mmalloc managed heap. For
3952more details, please read mmalloc/mmalloc.texi.
3953
3954 * info proc
3955
3956The 'info proc' command (SVR4 only) has been enhanced quite a bit. See
3957'help info proc' for details.
3958
3959 * MIPS ecoff symbol table format
3960
3961The code that reads MIPS symbol table format is now supported on all hosts.
3962Thanks to MIPS for releasing the sym.h and symconst.h files to make this
3963possible.
3964
3965 * File name changes for MS-DOS
3966
3967Many files in the config directories have been renamed to make it easier to
3968support GDB on MS-DOSe systems (which have very restrictive file name
3969conventions :-( ). MS-DOSe host support (under DJ Delorie's GO32
3970environment) is close to working but has some remaining problems. Note
3971that debugging of DOS programs is not supported, due to limitations
3972in the ``operating system'', but it can be used to host cross-debugging.
3973
3974 * Cross byte order fixes
3975
3976Many fixes have been made to support cross debugging of Sparc and MIPS
3977targets from hosts whose byte order differs.
3978
3979 * New -mapped and -readnow options
3980
3981If memory-mapped files are available on your system through the 'mmap'
3982system call, you can use the -mapped option on the `file' or
3983`symbol-file' commands to cause GDB to write the symbols from your
3984program into a reusable file. If the program you are debugging is
3985called `/path/fred', the mapped symbol file will be `./fred.syms'.
3986Future GDB debugging sessions will notice the presence of this file,
3987and will quickly map in symbol information from it, rather than reading
3988the symbol table from the executable program. Using the '-mapped'
3989option in a GDB `file' or `symbol-file' command has the same effect as
3990starting GDB with the '-mapped' command-line option.
3991
3992You can cause GDB to read the entire symbol table immediately by using
3993the '-readnow' option with any of the commands that load symbol table
3994information (or on the GDB command line). This makes the command
3995slower, but makes future operations faster.
3996
3997The -mapped and -readnow options are typically combined in order to
3998build a `fred.syms' file that contains complete symbol information.
3999A simple GDB invocation to do nothing but build a `.syms' file for future
4000use is:
4001
4002 gdb -batch -nx -mapped -readnow programname
4003
4004The `.syms' file is specific to the host machine on which GDB is run.
4005It holds an exact image of GDB's internal symbol table. It cannot be
4006shared across multiple host platforms.
4007
4008 * longjmp() handling
4009
4010GDB is now capable of stepping and nexting over longjmp(), _longjmp(), and
4011siglongjmp() without losing control. This feature has not yet been ported to
4012all systems. It currently works on many 386 platforms, all MIPS-based
4013platforms (SGI, DECstation, etc), and Sun3/4.
4014
4015 * Solaris 2.0
4016
4017Preliminary work has been put in to support the new Solaris OS from Sun. At
4018this time, it can control and debug processes, but it is not capable of
4019reading symbols.
4020
4021 * Bug fixes
4022
4023As always, many many bug fixes. The major areas were with g++, and mipsread.
4024People using the MIPS-based platforms should experience fewer mysterious
4025crashes and trashed symbol tables.
4026
4027*** Changes in GDB-4.4:
4028
4029 * New machines supported (host and target)
4030
4031SCO Unix on i386 IBM PC clones i386-sco-sysv or i386sco
4032 (except core files)
4033BSD Reno on Vax vax-dec-bsd
4034Ultrix on Vax vax-dec-ultrix
4035
4036 * New machines supported (target)
4037
4038AMD 29000 embedded, using EBMON a29k-none-none
4039
4040 * C++ support
4041
4042GDB continues to improve its handling of C++. `References' work better.
4043The demangler has also been improved, and now deals with symbols mangled as
4044per the Annotated C++ Reference Guide.
4045
4046GDB also now handles `stabs' symbol information embedded in MIPS
4047`ecoff' symbol tables. Since the ecoff format was not easily
4048extensible to handle new languages such as C++, this appeared to be a
4049good way to put C++ debugging info into MIPS binaries. This option
4050will be supported in the GNU C compiler, version 2, when it is
4051released.
4052
4053 * New features for SVR4
4054
4055GDB now handles SVR4 shared libraries, in the same fashion as SunOS
4056shared libraries. Debugging dynamically linked programs should present
4057only minor differences from debugging statically linked programs.
4058
4059The `info proc' command will print out information about any process
4060on an SVR4 system (including the one you are debugging). At the moment,
4061it prints the address mappings of the process.
4062
4063If you bring up GDB on another SVR4 system, please send mail to
4064bug-gdb@prep.ai.mit.edu to let us know what changes were reqired (if any).
4065
4066 * Better dynamic linking support in SunOS
4067
4068Reading symbols from shared libraries which contain debugging symbols
4069now works properly. However, there remain issues such as automatic
4070skipping of `transfer vector' code during function calls, which
4071make it harder to debug code in a shared library, than to debug the
4072same code linked statically.
4073
4074 * New Getopt
4075
4076GDB is now using the latest `getopt' routines from the FSF. This
4077version accepts the -- prefix for options with long names. GDB will
4078continue to accept the old forms (-option and +option) as well.
4079Various single letter abbreviations for options have been explicity
4080added to the option table so that they won't get overshadowed in the
4081future by other options that begin with the same letter.
4082
4083 * Bugs fixed
4084
4085The `cleanup_undefined_types' bug that many of you noticed has been squashed.
4086Many assorted bugs have been handled. Many more remain to be handled.
4087See the various ChangeLog files (primarily in gdb and bfd) for details.
4088
4089
4090*** Changes in GDB-4.3:
4091
4092 * New machines supported (host and target)
4093
4094Amiga 3000 running Amix m68k-cbm-svr4 or amix
4095NCR 3000 386 running SVR4 i386-ncr-svr4 or ncr3000
4096Motorola Delta 88000 running Sys V m88k-motorola-sysv or delta88
4097
4098 * Almost SCO Unix support
4099
4100We had hoped to support:
4101SCO Unix on i386 IBM PC clones i386-sco-sysv or i386sco
4102(except for core file support), but we discovered very late in the release
4103that it has problems with process groups that render gdb unusable. Sorry
4104about that. I encourage people to fix it and post the fixes.
4105
4106 * Preliminary ELF and DWARF support
4107
4108GDB can read ELF object files on System V Release 4, and can handle
4109debugging records for C, in DWARF format, in ELF files. This support
4110is preliminary. If you bring up GDB on another SVR4 system, please
4111send mail to bug-gdb@prep.ai.mit.edu to let us know what changes were
4112reqired (if any).
4113
4114 * New Readline
4115
4116GDB now uses the latest `readline' library. One user-visible change
4117is that two tabs will list possible command completions, which previously
4118required typing M-? (meta-question mark, or ESC ?).
4119
4120 * Bugs fixed
4121
4122The `stepi' bug that many of you noticed has been squashed.
4123Many bugs in C++ have been handled. Many more remain to be handled.
4124See the various ChangeLog files (primarily in gdb and bfd) for details.
4125
4126 * State of the MIPS world (in case you wondered):
4127
4128GDB can understand the symbol tables emitted by the compilers
4129supplied by most vendors of MIPS-based machines, including DEC. These
4130symbol tables are in a format that essentially nobody else uses.
4131
4132Some versions of gcc come with an assembler post-processor called
4133mips-tfile. This program is required if you want to do source-level
4134debugging of gcc-compiled programs. I believe FSF does not ship
4135mips-tfile with gcc version 1, but it will eventually come with gcc
4136version 2.
4137
4138Debugging of g++ output remains a problem. g++ version 1.xx does not
4139really support it at all. (If you're lucky, you should be able to get
4140line numbers and stack traces to work, but no parameters or local
4141variables.) With some work it should be possible to improve the
4142situation somewhat.
4143
4144When gcc version 2 is released, you will have somewhat better luck.
4145However, even then you will get confusing results for inheritance and
4146methods.
4147
4148We will eventually provide full debugging of g++ output on
4149DECstations. This will probably involve some kind of stabs-in-ecoff
4150encapulation, but the details have not been worked out yet.
4151
4152
4153*** Changes in GDB-4.2:
4154
4155 * Improved configuration
4156
4157Only one copy of `configure' exists now, and it is not self-modifying.
4158Porting BFD is simpler.
4159
4160 * Stepping improved
4161
4162The `step' and `next' commands now only stop at the first instruction
4163of a source line. This prevents the multiple stops that used to occur
4164in switch statements, for-loops, etc. `Step' continues to stop if a
4165function that has debugging information is called within the line.
4166
4167 * Bug fixing
4168
4169Lots of small bugs fixed. More remain.
4170
4171 * New host supported (not target)
4172
4173Intel 386 PC clone running Mach i386-none-mach
4174
4175
4176*** Changes in GDB-4.1:
4177
4178 * Multiple source language support
4179
4180GDB now has internal scaffolding to handle several source languages.
4181It determines the type of each source file from its filename extension,
4182and will switch expression parsing and number formatting to match the
4183language of the function in the currently selected stack frame.
4184You can also specifically set the language to be used, with
4185`set language c' or `set language modula-2'.
4186
4187 * GDB and Modula-2
4188
4189GDB now has preliminary support for the GNU Modula-2 compiler,
4190currently under development at the State University of New York at
4191Buffalo. Development of both GDB and the GNU Modula-2 compiler will
4192continue through the fall of 1991 and into 1992.
4193
4194Other Modula-2 compilers are currently not supported, and attempting to
4195debug programs compiled with them will likely result in an error as the
4196symbol table is read. Feel free to work on it, though!
4197
4198There are hooks in GDB for strict type checking and range checking,
4199in the `Modula-2 philosophy', but they do not currently work.
4200
4201 * set write on/off
4202
4203GDB can now write to executable and core files (e.g. patch
4204a variable's value). You must turn this switch on, specify
4205the file ("exec foo" or "core foo"), *then* modify it, e.g.
4206by assigning a new value to a variable. Modifications take
4207effect immediately.
4208
4209 * Automatic SunOS shared library reading
4210
4211When you run your program, GDB automatically determines where its
4212shared libraries (if any) have been loaded, and reads their symbols.
4213The `share' command is no longer needed. This also works when
4214examining core files.
4215
4216 * set listsize
4217
4218You can specify the number of lines that the `list' command shows.
4219The default is 10.
4220
4221 * New machines supported (host and target)
4222
4223SGI Iris (MIPS) running Irix V3: mips-sgi-irix or iris
4224Sony NEWS (68K) running NEWSOS 3.x: m68k-sony-sysv or news
4225Ultracomputer (29K) running Sym1: a29k-nyu-sym1 or ultra3
4226
4227 * New hosts supported (not targets)
4228
4229IBM RT/PC: romp-ibm-aix or rtpc
4230
4231 * New targets supported (not hosts)
4232
4233AMD 29000 embedded with COFF a29k-none-coff
4234AMD 29000 embedded with a.out a29k-none-aout
4235Ultracomputer remote kernel debug a29k-nyu-kern
4236
4237 * New remote interfaces
4238
4239AMD 29000 Adapt
4240AMD 29000 Minimon
4241
4242
4243*** Changes in GDB-4.0:
4244
4245 * New Facilities
4246
4247Wide output is wrapped at good places to make the output more readable.
4248
4249Gdb now supports cross-debugging from a host machine of one type to a
4250target machine of another type. Communication with the target system
4251is over serial lines. The ``target'' command handles connecting to the
4252remote system; the ``load'' command will download a program into the
4253remote system. Serial stubs for the m68k and i386 are provided. Gdb
4254also supports debugging of realtime processes running under VxWorks,
4255using SunRPC Remote Procedure Calls over TCP/IP to talk to a debugger
4256stub on the target system.
4257
4258New CPUs supported include the AMD 29000 and Intel 960.
4259
4260GDB now reads object files and symbol tables via a ``binary file''
4261library, which allows a single copy of GDB to debug programs of multiple
4262object file types such as a.out and coff.
4263
4264There is now a GDB reference card in "doc/refcard.tex". (Make targets
4265refcard.dvi and refcard.ps are available to format it).
4266
4267
4268 * Control-Variable user interface simplified
4269
4270All variables that control the operation of the debugger can be set
4271by the ``set'' command, and displayed by the ``show'' command.
4272
4273For example, ``set prompt new-gdb=>'' will change your prompt to new-gdb=>.
4274``Show prompt'' produces the response:
4275Gdb's prompt is new-gdb=>.
4276
4277What follows are the NEW set commands. The command ``help set'' will
4278print a complete list of old and new set commands. ``help set FOO''
4279will give a longer description of the variable FOO. ``show'' will show
4280all of the variable descriptions and their current settings.
4281
4282confirm on/off: Enables warning questions for operations that are
4283 hard to recover from, e.g. rerunning the program while
4284 it is already running. Default is ON.
4285
4286editing on/off: Enables EMACS style command line editing
4287 of input. Previous lines can be recalled with
4288 control-P, the current line can be edited with control-B,
4289 you can search for commands with control-R, etc.
4290 Default is ON.
4291
4292history filename NAME: NAME is where the gdb command history
4293 will be stored. The default is .gdb_history,
4294 or the value of the environment variable
4295 GDBHISTFILE.
4296
4297history size N: The size, in commands, of the command history. The
4298 default is 256, or the value of the environment variable
4299 HISTSIZE.
4300
4301history save on/off: If this value is set to ON, the history file will
4302 be saved after exiting gdb. If set to OFF, the
4303 file will not be saved. The default is OFF.
4304
4305history expansion on/off: If this value is set to ON, then csh-like
4306 history expansion will be performed on
4307 command line input. The default is OFF.
4308
4309radix N: Sets the default radix for input and output. It can be set
4310 to 8, 10, or 16. Note that the argument to "radix" is interpreted
4311 in the current radix, so "set radix 10" is always a no-op.
4312
4313height N: This integer value is the number of lines on a page. Default
4314 is 24, the current `stty rows'' setting, or the ``li#''
4315 setting from the termcap entry matching the environment
4316 variable TERM.
4317
4318width N: This integer value is the number of characters on a line.
4319 Default is 80, the current `stty cols'' setting, or the ``co#''
4320 setting from the termcap entry matching the environment
4321 variable TERM.
4322
4323Note: ``set screensize'' is obsolete. Use ``set height'' and
4324``set width'' instead.
4325
4326print address on/off: Print memory addresses in various command displays,
4327 such as stack traces and structure values. Gdb looks
4328 more ``symbolic'' if you turn this off; it looks more
4329 ``machine level'' with it on. Default is ON.
4330
4331print array on/off: Prettyprint arrays. New convenient format! Default
4332 is OFF.
4333
4334print demangle on/off: Print C++ symbols in "source" form if on,
4335 "raw" form if off.
4336
4337print asm-demangle on/off: Same, for assembler level printouts
4338 like instructions.
4339
4340print vtbl on/off: Prettyprint C++ virtual function tables. Default is OFF.
4341
4342
4343 * Support for Epoch Environment.
4344
4345The epoch environment is a version of Emacs v18 with windowing. One
4346new command, ``inspect'', is identical to ``print'', except that if you
4347are running in the epoch environment, the value is printed in its own
4348window.
4349
4350
4351 * Support for Shared Libraries
4352
4353GDB can now debug programs and core files that use SunOS shared libraries.
4354Symbols from a shared library cannot be referenced
4355before the shared library has been linked with the program (this
4356happens after you type ``run'' and before the function main() is entered).
4357At any time after this linking (including when examining core files
4358from dynamically linked programs), gdb reads the symbols from each
4359shared library when you type the ``sharedlibrary'' command.
4360It can be abbreviated ``share''.
4361
4362sharedlibrary REGEXP: Load shared object library symbols for files
4363 matching a unix regular expression. No argument
4364 indicates to load symbols for all shared libraries.
4365
4366info sharedlibrary: Status of loaded shared libraries.
4367
4368
4369 * Watchpoints
4370
4371A watchpoint stops execution of a program whenever the value of an
4372expression changes. Checking for this slows down execution
4373tremendously whenever you are in the scope of the expression, but is
4374quite useful for catching tough ``bit-spreader'' or pointer misuse
4375problems. Some machines such as the 386 have hardware for doing this
4376more quickly, and future versions of gdb will use this hardware.
4377
4378watch EXP: Set a watchpoint (breakpoint) for an expression.
4379
4380info watchpoints: Information about your watchpoints.
4381
4382delete N: Deletes watchpoint number N (same as breakpoints).
4383disable N: Temporarily turns off watchpoint number N (same as breakpoints).
4384enable N: Re-enables watchpoint number N (same as breakpoints).
4385
4386
4387 * C++ multiple inheritance
4388
4389When used with a GCC version 2 compiler, GDB supports multiple inheritance
4390for C++ programs.
4391
4392 * C++ exception handling
4393
4394Gdb now supports limited C++ exception handling. Besides the existing
4395ability to breakpoint on an exception handler, gdb can breakpoint on
4396the raising of an exception (before the stack is peeled back to the
4397handler's context).
4398
4399catch FOO: If there is a FOO exception handler in the dynamic scope,
4400 set a breakpoint to catch exceptions which may be raised there.
4401 Multiple exceptions (``catch foo bar baz'') may be caught.
4402
4403info catch: Lists all exceptions which may be caught in the
4404 current stack frame.
4405
4406
4407 * Minor command changes
4408
4409The command ``call func (arg, arg, ...)'' now acts like the print
4410command, except it does not print or save a value if the function's result
4411is void. This is similar to dbx usage.
4412
4413The ``up'' and ``down'' commands now always print the frame they end up
4414at; ``up-silently'' and `down-silently'' can be used in scripts to change
4415frames without printing.
4416
4417 * New directory command
4418
4419'dir' now adds directories to the FRONT of the source search path.
4420The path starts off empty. Source files that contain debug information
4421about the directory in which they were compiled can be found even
4422with an empty path; Sun CC and GCC include this information. If GDB can't
4423find your source file in the current directory, type "dir .".
4424
4425 * Configuring GDB for compilation
4426
4427For normal use, type ``./configure host''. See README or gdb.texinfo
4428for more details.
4429
4430GDB now handles cross debugging. If you are remotely debugging between
4431two different machines, type ``./configure host -target=targ''.
4432Host is the machine where GDB will run; targ is the machine
4433where the program that you are debugging will run.
This page took 0.75773 seconds and 4 git commands to generate.