* NEWS: Document exception-handling change.
[deliverable/binutils-gdb.git] / gdb / NEWS
1 What has changed in GDB?
2 (Organized release by release)
3
4 *** Changes since GDB 7.2
5
6 * New command line options
7
8 -data-directory DIR Specify DIR as the "data-directory".
9 This is mostly for testing purposes.
10
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
15 * OpenCL C
16 Initial support for the OpenCL C language (http://www.khronos.org/opencl)
17 has been integrated into GDB.
18
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
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
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
41 ** gdb.parameter("directories") is now available.
42
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
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
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
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
76 * The "watch" command now accepts an optional "-location" argument.
77 When used, this causes GDB to watch the memory referred to by the
78 expression. Such a watchpoint is never deleted due to it going out
79 of scope.
80
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
106 * New features in the GDB remote stub, GDBserver
107
108 ** GDBserver is now supported on PowerPC LynxOS (versions 4.x and 5.x),
109 and i686 LynxOS (version 5.x).
110
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
116 * Guile support was removed.
117
118 *** Changes in GDB 7.2
119
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
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
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
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
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
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
212 * New remote packets
213
214 qGetTIBAddr
215
216 Return the address of the Windows Thread Information Block of a given thread.
217
218 qRelocInsn
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
227 qTfSTM, qTsSTM
228
229 List static tracepoint markers in the target program.
230
231 qTSTMat
232
233 List static tracepoint markers at a given address in the target
234 program.
235
236 qXfer: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
242 QAllow
243
244 Send the current settings of GDB's permission flags.
245
246 QTDPsrc
247
248 Send part of the source (textual) form of a tracepoint definition,
249 which includes location, conditional, and action list.
250
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
255 * New features in the GDB remote stub, GDBserver
256
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.
272
273 - GDBserver now supports x86_64 Windows 64-bit debugging.
274
275 * GDB now sends xmlRegisters= in qSupported packet to indicate that
276 it understands register description.
277
278 * The --batch flag now disables pagination and queries.
279
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
288 * The `commands' command now accepts a range of breakpoints to modify.
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).
294
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
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
310 * New commands
311
312 eval 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
316 set target-file-system-kind unix|dos-based|auto
317 show target-file-system-kind
318 Set or show the assumed file system kind for target reported file
319 names.
320
321 save 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
327 is now deprecated.
328
329 info static-tracepoint-markers
330 Display information about static tracepoint markers in the target.
331
332 strace 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
336 set observer on|off
337 show observer
338 Enable and disable observer mode.
339
340 set may-write-registers on|off
341 set may-write-memory on|off
342 set may-insert-breakpoints on|off
343 set may-insert-tracepoints on|off
344 set may-insert-fast-tracepoints on|off
345 set 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
354 set record memory-query on|off
355 show record memory-query
356 Control whether to stop the inferior if memory changes caused
357 by an instruction cannot be recorded.
358
359 * Changed commands
360
361 disassemble
362 The disassemble command now supports "start,+length" form of two arguments.
363
364 * Python scripting
365
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
372 ** The GDB Python API now has access to breakpoints, symbols, symbol
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.
376
377 ** New functions gdb.target_charset, gdb.target_wide_charset,
378 gdb.progspaces, gdb.current_progspace, and gdb.string_to_argv.
379
380 ** New exception gdb.GdbError.
381
382 ** Pretty-printers are now also looked up in the current program space.
383
384 ** Pretty-printers can now be individually enabled and disabled.
385
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
390 * Tracepoint actions were unified with breakpoint commands. In particular,
391 there are no longer differences in "info break" output for breakpoints and
392 tracepoints and the "commands" command can be used for both tracepoints and
393 regular breakpoints.
394
395 * New targets
396
397 ARM Symbian arm*-*-symbianelf*
398
399 * D language support.
400 GDB now supports debugging programs written in the D programming
401 language.
402
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
418 *** Changes in GDB 7.1
419
420 * C++ Improvements
421
422 ** Namespace Support
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
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
441 * New targets
442
443 Xilinx MicroBlaze microblaze-*-*
444 Renesas RX rx-*-elf
445
446 * New Simulators
447
448 Xilinx MicroBlaze microblaze
449 Renesas RX rx
450
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
462 * New tracing features
463
464 GDB's tracepoint facility now includes several new features:
465
466 ** Trace state variables
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.
478
479 ** Fast tracepoints
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
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
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>".
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
516 * Changed commands
517
518 disassemble
519 The disassemble command, when invoked with two arguments, now requires
520 the arguments to be comma-separated.
521
522 info variables
523 The info variables command now displays variable definitions. Files
524 which only declare a variable are not shown.
525
526 source
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
534 * New commands (for set/show, see "New options" below)
535
536 record 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
540 record restore <FILENAME>
541 Restore the process record execution log that was saved at an
542 earlier time, for replay debugging.
543
544 add-inferior [-copies <N>] [-exec <FILENAME>]
545 Add a new inferior.
546
547 clone-inferior [-copies <N>] [ID]
548 Make a new inferior ready to execute the same program another
549 inferior has loaded.
550
551 remove-inferior ID
552 Remove an inferior.
553
554 maint info program-spaces
555 List the program spaces loaded into GDB.
556
557 set remote interrupt-sequence [Ctrl-C | BREAK | BREAK-g]
558 show 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
565 set remote interrupt-on-connect [on | off]
566 show 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
571 set remotebreak [on | off]
572 show remotebreak
573 Deprecated. Use "set/show remote interrupt-sequence" instead.
574
575 tvariable $NAME [ = EXP ]
576 Create or modify a trace state variable.
577
578 info tvariables
579 List trace state variables and their values.
580
581 delete tvariable $NAME ...
582 Delete one or more trace state variables.
583
584 teval EXPR, ...
585 Evaluate the given expressions without collecting anything into the
586 trace buffer. (Valid in tracepoint actions only.)
587
588 ftrace FN / FILE:LINE / *ADDR
589 Define a fast tracepoint at the given function, line, or address.
590
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
596 * New options
597
598 set follow-exec-mode new|same
599 show 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
604 set default-collect EXPR, ...
605 show 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
610 set disconnected-tracing
611 show 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
616 set circular-trace-buffer
617 show 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
623 set script-extension off|soft|strict
624 show 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
632 set ada trust-PAD-over-XVS on|off
633 show 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
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
655 * New remote packets
656
657 QTDV
658 Define a trace state variable.
659
660 qTV
661 Get the current value of a trace state variable.
662
663 QTDisconnected
664 Set desired tracing behavior upon disconnection.
665
666 QTBuffer:circular
667 Set the trace buffer to be linear or circular.
668
669 qTfP, qTsP
670 Get data about the tracepoints currently in use.
671
672 * Bug fixes
673
674 Process record now works correctly with hardware watchpoints.
675
676 Multiple bug fixes have been made to the mips-irix port, making it
677 much 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
694 PIE (Position Independent Executable) programs debugging is now supported.
695 This includes debugging execution of PIC (Position Independent Code) shared
696 libraries although for that, it should be possible to run such libraries as an
697 executable program.
698
699 *** Changes in GDB 7.0
700
701 * GDB now has an interface for JIT compilation. Applications that
702 dynamically generate code can create symbol files in memory and register
703 them with GDB. For users, the feature should work transparently, and
704 for JIT developers, the interface is documented in the GDB manual in the
705 "JIT Compilation Interface" chapter.
706
707 * Tracepoints may now be conditional. The syntax is as for
708 breakpoints; either an "if" clause appended to the "trace" command,
709 or the "condition" command is available. GDB sends the condition to
710 the target for evaluation using the same bytecode format as is used
711 for tracepoint actions.
712
713 * The disassemble command now supports: an optional /r modifier, print the
714 raw instructions in hex as well as in symbolic form, and an optional /m
715 modifier to print mixed source+assembly.
716
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
724 * Reverse debugging: GDB now has new commands reverse-continue, reverse-
725 step, reverse-next, reverse-finish, reverse-stepi, reverse-nexti, and
726 set execution-direction {forward|reverse}, for targets that support
727 reverse execution.
728
729 * GDB now supports hardware watchpoints on MIPS/Linux systems. This
730 feature is available with a native GDB running on kernel version
731 2.6.28 or later.
732
733 * GDB now has support for multi-byte and wide character sets on the
734 target. Strings whose character type is wchar_t, char16_t, or
735 char32_t are now correctly printed. GDB supports wide- and unicode-
736 literals in C, that is, L'x', L"string", u'x', u"string", U'x', and
737 U"string" syntax. And, GDB allows the "%ls" and "%lc" formats in
738 `printf'. This feature requires iconv to work properly; if your
739 system does not have a working iconv, GDB can use GNU libiconv. See
740 the installation instructions for more information.
741
742 * GDB now supports automatic retrieval of shared library files from
743 remote targets. To use this feature, specify a system root that begins
744 with the `remote:' prefix, either via the `set sysroot' command or via
745 the `--with-sysroot' configure-time option.
746
747 * "info sharedlibrary" now takes an optional regex of libraries to show,
748 and it now reports if a shared library has no debugging information.
749
750 * Commands `set debug-file-directory', `set solib-search-path' and `set args'
751 now complete on file names.
752
753 * When completing in expressions, gdb will attempt to limit
754 completions to allowable structure or union fields, where appropriate.
755 For instance, consider:
756
757 # struct example { int f1; double f2; };
758 # struct example variable;
759 (gdb) p variable.
760
761 If the user types TAB at the end of this command line, the available
762 completions will be "f1" and "f2".
763
764 * Inlined functions are now supported. They show up in backtraces, and
765 the "step", "next", and "finish" commands handle them automatically.
766
767 * GDB now supports the token-splicing (##) and stringification (#)
768 operators when expanding macros. It also supports variable-arity
769 macros.
770
771 * GDB now supports inspecting extra signal information, exported by
772 the new $_siginfo convenience variable. The feature is currently
773 implemented on linux ARM, i386 and amd64.
774
775 * GDB can now display the VFP floating point registers and NEON vector
776 registers on ARM targets. Both ARM GNU/Linux native GDB and gdbserver
777 can provide these registers (requires Linux 2.6.30 or later). Remote
778 and simulator targets may also provide them.
779
780 * New remote packets
781
782 qSearch:memory:
783 Search memory for a sequence of bytes.
784
785 QStartNoAckMode
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
790 vKill
791 Kill the process with the specified process ID. Use this in preference
792 to `k' when multiprocess protocol extensions are supported.
793
794 qXfer:osdata:read
795 Obtains additional operating system information
796
797 qXfer:siginfo:read
798 qXfer:siginfo:write
799 Read or write additional signal information.
800
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
807 * GDB now supports multiple function calling conventions according to the
808 DWARF-2 DW_AT_calling_convention function attribute.
809
810 * The SH target utilizes the aforementioned change to distinguish between gcc
811 and Renesas calling convention. It also adds the new CLI commands
812 `set/show sh calling-convention'.
813
814 * GDB can now read compressed debug sections, as produced by GNU gold
815 with the --compress-debug-sections=zlib flag.
816
817 * 64-bit core files are now supported on AIX.
818
819 * Thread switching is now supported on Tru64.
820
821 * Watchpoints can now be set on unreadable memory locations, e.g. addresses
822 which will be allocated using malloc later in program execution.
823
824 * The qXfer:libraries:read remote procotol packet now allows passing a
825 list of section offsets.
826
827 * On GNU/Linux, GDB can now attach to stopped processes. Several race
828 conditions handling signals delivered during attach or thread creation
829 have also been fixed.
830
831 * GDB now supports the use of DWARF boolean types for Ada's type Boolean.
832 From the user's standpoint, all unqualified instances of True and False
833 are treated as the standard definitions, regardless of context.
834
835 * GDB now parses C++ symbol and type names more flexibly. For
836 example, given:
837
838 template<typename T> class C { };
839 C<char const *> c;
840
841 GDB 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
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
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
857 - gdbserver uses the new noack protocol mode for TCP connections to
858 reduce communications latency, if also supported and enabled in GDB.
859
860 - Support for the sparc64-linux-gnu target is now included in
861 gdbserver.
862
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
870 * Python scripting
871
872 GDB now has support for scripting using Python. Whether this is
873 available is determined at configure time.
874
875 New GDB commands can now be written in Python.
876
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
891 * Support for user-defined prefixed commands. The "define" command can
892 add new commands to existing prefixes, e.g. "target".
893
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
904 * Target descriptions can now describe the target OS ABI. See the
905 "Target Description Format" section in the user manual for more
906 information.
907
908 * Target descriptions can now describe "compatible" architectures
909 to indicate that the target can execute applications for a different
910 architecture in addition to those for the main target architecture.
911 See the "Target Description Format" section in the user manual for
912 more information.
913
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
923 use both the PPU and SPU architectures. To enable support for hybrid
924 Cell/B.E. debugging, you need to configure GDB to support both the
925 powerpc-linux or powerpc64-linux and the spu-elf targets, using the
926 --enable-targets configure option.
927
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
942 * New commands (for set/show, see "New options" below)
943
944 catch 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
954 find [/size-char] [/max-count] start-address, end-address|+search-space-size,
955 val1 [, val2, ...]
956 Search memory for a sequence of bytes.
957
958 maint set python print-stack
959 maint show python print-stack
960 Show a stack trace when an error is encountered in a Python script.
961
962 python [CODE]
963 Invoke CODE by passing it to the Python interpreter.
964
965 macro define
966 macro list
967 macro undef
968 These allow macros to be defined, undefined, and listed
969 interactively.
970
971 info os processes
972 Show operating system information about processes.
973
974 info inferiors
975 List the inferiors currently under GDB's control.
976
977 inferior NUM
978 Switch focus to inferior number NUM.
979
980 detach inferior NUM
981 Detach from inferior number NUM.
982
983 kill inferior NUM
984 Kill inferior number NUM.
985
986 * New options
987
988 set spu stop-on-load
989 show spu stop-on-load
990 Control whether to stop for new SPE threads during Cell/B.E. debugging.
991
992 set spu auto-flush-cache
993 show spu auto-flush-cache
994 Control whether to automatically flush the software-managed cache
995 during Cell/B.E. debugging.
996
997 set sh calling-convention
998 show sh calling-convention
999 Control the calling convention used when calling SH target functions.
1000
1001 set debug timestamp
1002 show debug timestamp
1003 Control display of timestamps with GDB debugging output.
1004
1005 set disassemble-next-line
1006 show disassemble-next-line
1007 Control display of disassembled source lines or instructions when
1008 the debuggee stops.
1009
1010 set remote noack-packet
1011 show remote noack-packet
1012 Set/show the use of remote protocol QStartNoAckMode packet. See above
1013 under "New remote packets."
1014
1015 set remote query-attached-packet
1016 show remote query-attached-packet
1017 Control use of remote protocol `qAttached' (query-attached) packet.
1018
1019 set remote read-siginfo-object
1020 show remote read-siginfo-object
1021 Control use of remote protocol `qXfer:siginfo:read' (read-siginfo-object)
1022 packet.
1023
1024 set remote write-siginfo-object
1025 show remote write-siginfo-object
1026 Control use of remote protocol `qXfer:siginfo:write' (write-siginfo-object)
1027 packet.
1028
1029 set remote reverse-continue
1030 show remote reverse-continue
1031 Control use of remote protocol 'bc' (reverse-continue) packet.
1032
1033 set remote reverse-step
1034 show remote reverse-step
1035 Control use of remote protocol 'bs' (reverse-step) packet.
1036
1037 set displaced-stepping
1038 show 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
1043 set debug displaced
1044 show debug displaced
1045 Control display of debugging info for displaced stepping.
1046
1047 maint set internal-error
1048 maint show internal-error
1049 Control what GDB does when an internal error is detected.
1050
1051 maint set internal-warning
1052 maint show internal-warning
1053 Control what GDB does when an internal warning is detected.
1054
1055 set exec-wrapper
1056 show exec-wrapper
1057 unset exec-wrapper
1058 Use a wrapper program to launch programs for debugging.
1059
1060 set multiple-symbols (all|ask|cancel)
1061 show 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
1066 set breakpoint always-inserted
1067 show 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
1072 set arm fallback-mode (arm|thumb|auto)
1073 show arm fallback-mode
1074 set arm force-mode (arm|thumb|auto)
1075 show 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
1081 set disable-randomization
1082 show 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
1087 set non-stop
1088 show non-stop
1089 Control whether other threads are stopped or not when some thread hits
1090 a breakpoint.
1091
1092 set target-async
1093 show target-async
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
1099 set target-wide-charset
1100 show 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
1104 set tcp auto-retry (on|off)
1105 show tcp auto-retry
1106 set tcp connect-timeout
1107 show 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
1112 set libthread-db-search-path
1113 show libthread-db-search-path
1114 Control list of directories which GDB will search for appropriate
1115 libthread_db.
1116
1117 set schedule-multiple (on|off)
1118 show schedule-multiple
1119 Allow GDB to resume all threads of all processes or only threads of
1120 the current process.
1121
1122 set stack-cache
1123 show 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
1128 set interactive-mode (on|off|auto)
1129 show 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
1136 * Removed commands
1137
1138 info 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
1144 fork 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
1149 process 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
1154 delete 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
1160 detach 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
1166 * New native configurations
1167
1168 x86/x86_64 Darwin i[34567]86-*-darwin*
1169
1170 x86_64 MinGW x86_64-*-mingw*
1171
1172 * New targets
1173
1174 Lattice Mico32 lm32-*
1175 x86 DICOS i[34567]86-*-dicos*
1176 x86_64 DICOS x86_64-*-dicos*
1177 S+core 3 score-*-*
1178
1179 * The GDB remote stub, gdbserver, now supports x86 Windows CE
1180 (mingw32ce) debugging.
1181
1182 * Removed commands
1183
1184 catch load
1185 catch unload
1186 These commands were actually not implemented on any target.
1187
1188 *** Changes in GDB 6.8
1189
1190 * New native configurations
1191
1192 NetBSD/hppa hppa*-*netbsd*
1193 Xtensa GNU/Linux xtensa*-*-linux*
1194
1195 * New targets
1196
1197 NetBSD/hppa hppa*-*-netbsd*
1198 Xtensa GNU/Lunux xtensa*-*-linux*
1199
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
1207 * GDB can now be built as a native debugger for debugging Windows x86
1208 (mingw32) Portable Executable (PE) programs.
1209
1210 * Pending breakpoints no longer change their number when their address
1211 is resolved.
1212
1213 * GDB now supports breakpoints with multiple locations,
1214 including breakpoints on C++ constructors, inside C++ templates,
1215 and in inlined functions.
1216
1217 * GDB's ability to debug optimized code has been improved. GDB more
1218 accurately identifies function bodies and lexical blocks that occupy
1219 more than one contiguous range of addresses.
1220
1221 * Target descriptions can now describe registers for PowerPC.
1222
1223 * The GDB remote stub, gdbserver, now supports the AltiVec and SPE
1224 registers on PowerPC targets.
1225
1226 * The GDB remote stub, gdbserver, now supports thread debugging on GNU/Linux
1227 targets even when the libthread_db library is not available.
1228
1229 * The GDB remote stub, gdbserver, now supports the new file transfer
1230 commands (remote put, remote get, and remote delete).
1231
1232 * The GDB remote stub, gdbserver, now supports run and attach in
1233 extended-remote mode.
1234
1235 * hppa*64*-*-hpux11* target broken
1236 The debugger is unable to start a program and fails with the following
1237 error: "Error trying to get information about dynamic linker".
1238 The gdb-6.7 release is also affected.
1239
1240 * GDB now supports the --enable-targets= configure option to allow
1241 building a single GDB executable that supports multiple remote
1242 target architectures.
1243
1244 * GDB now supports debugging C and C++ programs which use the
1245 Decimal Floating Point extension. In addition, the PowerPC target
1246 now has a set of pseudo-registers to inspect decimal float values
1247 stored in two consecutive float registers.
1248
1249 * The -break-insert MI command can optionally create pending
1250 breakpoints now.
1251
1252 * Improved support for debugging Ada
1253 Many improvements to the Ada language support have been made. These
1254 include:
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
1263 * GDB on GNU/Linux and HP/UX can now debug through "exec" of a new
1264 process.
1265
1266 * New commands
1267
1268 set print frame-arguments (all|scalars|none)
1269 show 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
1273 remote put
1274 remote get
1275 remote 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
1287 vFile:open:
1288 vFile:close:
1289 vFile:pread:
1290 vFile:pwrite:
1291 vFile:unlink:
1292 Open, close, read, write, and delete files on the remote system.
1293
1294 vAttach
1295 Attach to an existing process on the remote system, in extended-remote
1296 mode.
1297
1298 vRun
1299 Run a new process on the remote system, in extended-remote mode.
1300
1301 *** Changes in GDB 6.7
1302
1303 * Resolved 101 resource leaks, null pointer dereferences, etc. in gdb,
1304 bfd, libiberty and opcodes, as revealed by static analysis donated by
1305 Coverity, Inc. (http://scan.coverity.com).
1306
1307 * When looking up multiply-defined global symbols, GDB will now prefer the
1308 symbol definition in the current shared library if it was built using the
1309 -Bsymbolic linker option.
1310
1311 * When the Text User Interface (TUI) is not configured, GDB will now
1312 recognize the -tui command-line option and print a message that the TUI
1313 is not supported.
1314
1315 * The GDB remote stub, gdbserver, now has lower overhead for high
1316 frequency signals (e.g. SIGALRM) via the QPassSignals packet.
1317
1318 * GDB for MIPS targets now autodetects whether a remote target provides
1319 32-bit or 64-bit register values.
1320
1321 * Support for C++ member pointers has been improved.
1322
1323 * GDB now understands XML target descriptions, which specify the
1324 target's overall architecture. GDB can read a description from
1325 a local file or over the remote serial protocol.
1326
1327 * Vectors of single-byte data use a new integer type which is not
1328 automatically displayed as character or string data.
1329
1330 * The /s format now works with the print command. It displays
1331 arrays of single-byte integers and pointers to single-byte integers
1332 as strings.
1333
1334 * Target descriptions can now describe target-specific registers,
1335 for architectures which have implemented the support (currently
1336 only ARM, M68K, and MIPS).
1337
1338 * GDB and the GDB remote stub, gdbserver, now support the XScale
1339 iWMMXt coprocessor.
1340
1341 * The GDB remote stub, gdbserver, has been updated to support
1342 ARM Windows CE (mingw32ce) debugging, and GDB Windows CE support
1343 has been rewritten to use the standard GDB remote protocol.
1344
1345 * GDB can now step into C++ functions which are called through thunks.
1346
1347 * GDB for the Cell/B.E. SPU now supports overlay debugging.
1348
1349 * The GDB remote protocol "qOffsets" packet can now honor ELF segment
1350 layout. It also supports a TextSeg= and DataSeg= response when only
1351 segment base addresses (rather than offsets) are available.
1352
1353 * The /i format now outputs any trailing branch delay slot instructions
1354 immediately following the last instruction within the count specified.
1355
1356 * The GDB remote protocol "T" stop reply packet now supports a
1357 "library" response. Combined with the new "qXfer:libraries:read"
1358 packet, this response allows GDB to debug shared libraries on targets
1359 where the operating system manages the list of loaded libraries (e.g.
1360 Windows and SymbianOS).
1361
1362 * The GDB remote stub, gdbserver, now supports dynamic link libraries
1363 (DLLs) on Windows and Windows CE targets.
1364
1365 * GDB now supports a faster verification that a .debug file matches its binary
1366 according to its build-id signature, if the signature is present.
1367
1368 * New commands
1369
1370 set remoteflow
1371 show remoteflow
1372 Enable or disable hardware flow control (RTS/CTS) on the serial port
1373 when debugging using remote targets.
1374
1375 set mem inaccessible-by-default
1376 show 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
1383 set breakpoint auto-hw
1384 show 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
1392 catch exception
1393 catch exception unhandled
1394 Stop the program execution when Ada exceptions are raised.
1395
1396 catch assert
1397 Stop the program execution when an Ada assertion failed.
1398
1399 set sysroot
1400 show 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
1405 info 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
1410 * New native configurations
1411
1412 OpenBSD/sh sh*-*openbsd*
1413
1414 set tdesc filename
1415 unset tdesc filename
1416 show 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
1420 * New targets
1421
1422 OpenBSD/sh sh*-*-openbsd*
1423 MIPS64 GNU/Linux (gdbserver) mips64-linux-gnu
1424 Toshiba Media Processor mep-elf
1425
1426 * New remote packets
1427
1428 QPassSignals:
1429 Ignore the specified signals; pass them directly to the debugged program
1430 without stopping other threads or reporting them to GDB.
1431
1432 qXfer:features:read:
1433 Read an XML target description from the target, which describes its
1434 features.
1435
1436 qXfer:spu:read:
1437 qXfer: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
1441 qXfer: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
1447 * Removed targets
1448
1449 Support for these obsolete configurations has been removed.
1450
1451 alpha*-*-osf1*
1452 alpha*-*-osf2*
1453 d10v-*-*
1454 hppa*-*-hiux*
1455 i[34567]86-ncr-*
1456 i[34567]86-*-dgux*
1457 i[34567]86-*-lynxos*
1458 i[34567]86-*-netware*
1459 i[34567]86-*-sco3.2v5*
1460 i[34567]86-*-sco3.2v4*
1461 i[34567]86-*-sco*
1462 i[34567]86-*-sysv4.2*
1463 i[34567]86-*-sysv4*
1464 i[34567]86-*-sysv5*
1465 i[34567]86-*-unixware2*
1466 i[34567]86-*-unixware*
1467 i[34567]86-*-sysv*
1468 i[34567]86-*-isc*
1469 m68*-cisco*-*
1470 m68*-tandem-*
1471 mips*-*-pe
1472 rs6000-*-lynxos*
1473 sh*-*-pe
1474
1475 * Other removed features
1476
1477 target abug
1478 target cpu32bug
1479 target est
1480 target rom68k
1481
1482 Various m68k-only ROM monitors.
1483
1484 target hms
1485 target e7000
1486 target sh3
1487 target sh3e
1488
1489 Various Renesas ROM monitors and debugging interfaces for SH and
1490 H8/300.
1491
1492 target 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
1498 DWARF 1 support
1499
1500 A debug information format. The predecessor to DWARF 2 and
1501 DWARF 3, which are still supported.
1502
1503 Support 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
1510 MIPS ".pdr" sections
1511
1512 A MIPS-specific format used to describe stack frame layout
1513 in debugging information.
1514
1515 Scheme support
1516
1517 GDB could work with an older version of Guile to debug
1518 the interpreter and Scheme programs running in it.
1519
1520 set mips stack-arg-size
1521 set mips saved-gpreg-size
1522
1523 Use "set mips abi" to control parameter passing for MIPS.
1524
1525 *** Changes in GDB 6.6
1526
1527 * New targets
1528
1529 Xtensa xtensa-elf
1530 Cell Broadband Engine SPU spu-elf
1531
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
1534 running 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
1537 Cygwin debugging. Both single-threaded and multi-threaded programs are
1538 supported.
1539
1540 * The "set trust-readonly-sections" command works again. This command was
1541 broken in GDB 6.3, 6.4, and 6.5.
1542
1543 * The "load" command now supports writing to flash memory, if the remote
1544 stub provides the required support.
1545
1546 * Support for GNU/Linux Thread Local Storage (TLS, per-thread variables) no
1547 longer requires symbolic debug information (e.g. DWARF-2).
1548
1549 * New commands
1550
1551 set substitute-path
1552 unset substitute-path
1553 show 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
1559 set trace-commands
1560 show 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
1565 * REMOVED features
1566
1567 The ARM Demon monitor support (RDP protocol, "target rdp").
1568
1569 Kernel Object Display, an embedded debugging feature which only worked with
1570 an obsolete version of Cisco IOS.
1571
1572 The 'set download-write-size' and 'show download-write-size' commands.
1573
1574 * New remote packets
1575
1576 qSupported:
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
1583 qXfer: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
1587 qXfer:memory-map:read:
1588 Fetch a memory map from the remote stub, including information about
1589 RAM, ROM, and flash memory devices.
1590
1591 vFlashErase:
1592 vFlashWrite:
1593 vFlashDone:
1594 Erase and program a flash memory device.
1595
1596 * Removed remote packets
1597
1598 qPart: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
1602 *** Changes in GDB 6.5
1603
1604 * New targets
1605
1606 Renesas M32C/M16C m32c-elf
1607
1608 Morpho Technologies ms1 ms1-elf
1609
1610 * New commands
1611
1612 init-if-undefined Initialize a convenience variable, but
1613 only if it doesn't already have a value.
1614
1615 The following commands are presently only implemented for native GNU/Linux:
1616
1617 checkpoint Save a snapshot of the program state.
1618
1619 restart <n> Return the program state to a
1620 previously saved state.
1621
1622 info checkpoints List currently saved checkpoints.
1623
1624 delete-checkpoint <n> Delete a previously saved checkpoint.
1625
1626 set|show detach-on-fork Tell gdb whether to detach from a newly
1627 forked process, or to keep debugging it.
1628
1629 info forks List forks of the user program that
1630 are available to be debugged.
1631
1632 fork <n> Switch to debugging one of several
1633 forks of the user program that are
1634 available to be debugged.
1635
1636 delete-fork <n> Delete a fork from the list of forks
1637 that are available to be debugged (and
1638 kill the forked process).
1639
1640 detach-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
1644 * New architecture
1645
1646 Morpho Technologies ms2 ms1-elf
1647
1648 * Improved Windows host support
1649
1650 GDB now builds as a cross debugger hosted on i686-mingw32, including
1651 native console support, and remote communications using either
1652 network sockets or serial ports.
1653
1654 * Improved Modula-2 language support
1655
1656 GDB can now print most types in the Modula-2 syntax. This includes:
1657 basic types, set types, record types, enumerated types, range types,
1658 pointer types and ARRAY types. Procedure var parameters are correctly
1659 printed and hexadecimal addresses and character constants are also
1660 written in the Modula-2 syntax. Best results can be obtained by using
1661 GNU Modula-2 together with the -gdwarf-2 command line option.
1662
1663 * REMOVED features
1664
1665 The ARM rdi-share module.
1666
1667 The Netware NLM debug server.
1668
1669 *** Changes in GDB 6.4
1670
1671 * New native configurations
1672
1673 OpenBSD/arm arm*-*-openbsd*
1674 OpenBSD/mips64 mips64-*-openbsd*
1675
1676 * New targets
1677
1678 Morpho Technologies ms1 ms1-elf
1679
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
1690 * Deprecated commands removed
1691
1692 The following commands, that were deprecated in 2000, have been
1693 removed:
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
1703 * New BSD user-level threads support
1704
1705 It is now possible to debug programs using the user-level threads
1706 library on OpenBSD and FreeBSD. Currently supported (target)
1707 configurations are:
1708
1709 FreeBSD/amd64 x86_64-*-freebsd*
1710 FreeBSD/i386 i386-*-freebsd*
1711 OpenBSD/i386 i386-*-openbsd*
1712
1713 Note that the new kernel threads libraries introduced in FreeBSD 5.x
1714 are not yet supported.
1715
1716 * New support for Matsushita MN10300 w/sim added
1717 (Work in progress). mn10300-elf.
1718
1719 * REMOVED configurations and files
1720
1721 VxWorks and the XDR protocol *-*-vxworks
1722 Motorola MCORE mcore-*-*
1723 National Semiconductor NS32000 ns32k-*-*
1724
1725 * New "set print array-indexes" command
1726
1727 After turning this setting "on", GDB prints the index of each element
1728 when displaying arrays. The default is "off" to preserve the previous
1729 behavior.
1730
1731 * VAX floating point support
1732
1733 GDB now supports the not-quite-ieee VAX F and D floating point formats.
1734
1735 * User-defined command support
1736
1737 In addition to using $arg0..$arg9 for argument passing, it is now possible
1738 to use $argc to determine now many arguments have been passed. See the
1739 section on user-defined commands in the user manual for more information.
1740
1741 *** Changes in GDB 6.3:
1742
1743 * New command line option
1744
1745 GDB now accepts -l followed by a number to set the timeout for remote
1746 debugging.
1747
1748 * GDB works with GCC -feliminate-dwarf2-dups
1749
1750 GDB now supports a more compact representation of DWARF-2 debug
1751 information using DW_FORM_ref_addr references. These are produced
1752 by GCC with the option -feliminate-dwarf2-dups and also by some
1753 proprietary compilers. With GCC, you must use GCC 3.3.4 or later
1754 to use -feliminate-dwarf2-dups.
1755
1756 * Internationalization
1757
1758 When supported by the host system, GDB will be built with
1759 internationalization (libintl). The task of marking up the sources is
1760 continued, we're looking forward to our first translation.
1761
1762 * Ada
1763
1764 Initial support for debugging programs compiled with the GNAT
1765 implementation of the Ada programming language has been integrated
1766 into GDB. In this release, support is limited to expression evaluation.
1767
1768 * New native configurations
1769
1770 GNU/Linux/m32r m32r-*-linux-gnu
1771
1772 * Remote 'p' packet
1773
1774 GDB's remote protocol now includes support for the 'p' packet. This
1775 packet is used to fetch individual registers from a remote inferior.
1776
1777 * END-OF-LIFE registers[] compatibility module
1778
1779 GDB's internal register infrastructure has been completely rewritten.
1780 The new infrastructure making possible the implementation of key new
1781 features including 32x64 (e.g., 64-bit amd64 GDB debugging a 32-bit
1782 i386 application).
1783
1784 GDB 6.3 will be the last release to include the the registers[]
1785 compatibility module that allowed out-of-date configurations to
1786 continue to work. This change directly impacts the following
1787 configurations:
1788
1789 hppa-*-hpux
1790 ia64-*-aix
1791 mips-*-irix*
1792 *-*-lynx
1793 mips-*-linux-gnu
1794 sds protocol
1795 xdr protocol
1796 powerpc bdm protocol
1797
1798 Unless there is activity to revive these configurations, they will be
1799 made OBSOLETE in GDB 6.4, and REMOVED from GDB 6.5.
1800
1801 * OBSOLETE configurations and files
1802
1803 Configurations that have been declared obsolete in this release have
1804 been commented out. Unless there is activity to revive these
1805 configurations, the next release of GDB will have their sources
1806 permanently REMOVED.
1807
1808 h8300-*-*
1809 mcore-*-*
1810 mn10300-*-*
1811 ns32k-*-*
1812 sh64-*-*
1813 v850-*-*
1814
1815 *** Changes in GDB 6.2.1:
1816
1817 * MIPS `break main; run' gave an heuristic-fence-post warning
1818
1819 When attempting to run even a simple program, a warning about
1820 heuristic-fence-post being hit would be reported. This problem has
1821 been fixed.
1822
1823 * MIPS IRIX 'long double' crashed GDB
1824
1825 When examining a long double variable, GDB would get a segmentation
1826 fault. The crash has been fixed (but GDB 6.2 cannot correctly examine
1827 IRIX long double values).
1828
1829 * VAX and "next"
1830
1831 A bug in the VAX stack code was causing problems with the "next"
1832 command. This problem has been fixed.
1833
1834 *** Changes in GDB 6.2:
1835
1836 * Fix for ``many threads''
1837
1838 On GNU/Linux systems that use the NPTL threads library, a program
1839 rapidly creating and deleting threads would confuse GDB leading to the
1840 error message:
1841
1842 ptrace: No such process.
1843 thread_db_get_info: cannot get thread info: generic error
1844
1845 This problem has been fixed.
1846
1847 * "-async" and "-noasync" options removed.
1848
1849 Support for the broken "-noasync" option has been removed (it caused
1850 GDB to dump core).
1851
1852 * New ``start'' command.
1853
1854 This command runs the program until the begining of the main procedure.
1855
1856 * New BSD Kernel Data Access Library (libkvm) interface
1857
1858 Using ``target kvm'' it is now possible to debug kernel core dumps and
1859 live kernel memory images on various FreeBSD, NetBSD and OpenBSD
1860 platforms. Currently supported (native-only) configurations are:
1861
1862 FreeBSD/amd64 x86_64-*-freebsd*
1863 FreeBSD/i386 i?86-*-freebsd*
1864 NetBSD/i386 i?86-*-netbsd*
1865 NetBSD/m68k m68*-*-netbsd*
1866 NetBSD/sparc sparc-*-netbsd*
1867 OpenBSD/amd64 x86_64-*-openbsd*
1868 OpenBSD/i386 i?86-*-openbsd*
1869 OpenBSD/m68k m68*-openbsd*
1870 OpenBSD/sparc sparc-*-openbsd*
1871
1872 * Signal trampoline code overhauled
1873
1874 Many generic problems with GDB's signal handling code have been fixed.
1875 These include: backtraces through non-contiguous stacks; recognition
1876 of sa_sigaction signal trampolines; backtrace from a NULL pointer
1877 call; backtrace through a signal trampoline; step into and out of
1878 signal handlers; and single-stepping in the signal trampoline.
1879
1880 Please note that kernel bugs are a limiting factor here. These
1881 features have been shown to work on an s390 GNU/Linux system that
1882 include a 2.6.8-rc1 kernel. Ref PR breakpoints/1702.
1883
1884 * Cygwin support for DWARF 2 added.
1885
1886 * New native configurations
1887
1888 GNU/Linux/hppa hppa*-*-linux*
1889 OpenBSD/hppa hppa*-*-openbsd*
1890 OpenBSD/m68k m68*-*-openbsd*
1891 OpenBSD/m88k m88*-*-openbsd*
1892 OpenBSD/powerpc powerpc-*-openbsd*
1893 NetBSD/vax vax-*-netbsd*
1894 OpenBSD/vax vax-*-openbsd*
1895
1896 * END-OF-LIFE frame compatibility module
1897
1898 GDB's internal frame infrastructure has been completely rewritten.
1899 The new infrastructure making it possible to support key new features
1900 including DWARF 2 Call Frame Information. To aid in the task of
1901 migrating old configurations to this new infrastructure, a
1902 compatibility module, that allowed old configurations to continue to
1903 work, was also included.
1904
1905 GDB 6.2 will be the last release to include this frame compatibility
1906 module. This change directly impacts the following configurations:
1907
1908 h8300-*-*
1909 mcore-*-*
1910 mn10300-*-*
1911 ns32k-*-*
1912 sh64-*-*
1913 v850-*-*
1914 xstormy16-*-*
1915
1916 Unless there is activity to revive these configurations, they will be
1917 made OBSOLETE in GDB 6.3, and REMOVED from GDB 6.4.
1918
1919 * REMOVED configurations and files
1920
1921 Sun 3, running SunOS 3 m68*-*-sunos3*
1922 Sun 3, running SunOS 4 m68*-*-sunos4*
1923 Sun 2, running SunOS 3 m68000-*-sunos3*
1924 Sun 2, running SunOS 4 m68000-*-sunos4*
1925 Motorola 680x0 running LynxOS m68*-*-lynxos*
1926 AT&T 3b1/Unix pc m68*-att-*
1927 Bull DPX2 (68k, System V release 3) m68*-bull-sysv*
1928 decstation mips-dec-* mips-little-*
1929 riscos mips-*-riscos* mips-*-sysv*
1930 sonymips mips-sony-*
1931 sysv mips*-*-sysv4* (IRIX 5/6 not included)
1932
1933 *** Changes in GDB 6.1.1:
1934
1935 * TUI (Text-mode User Interface) built-in (also included in GDB 6.1)
1936
1937 The TUI (Text-mode User Interface) is now built as part of a default
1938 GDB configuration. It is enabled by either selecting the TUI with the
1939 command line option "-i=tui" or by running the separate "gdbtui"
1940 program. For more information on the TUI, see the manual "Debugging
1941 with GDB".
1942
1943 * Pending breakpoint support (also included in GDB 6.1)
1944
1945 Support has been added to allow you to specify breakpoints in shared
1946 libraries that have not yet been loaded. If a breakpoint location
1947 cannot be found, and the "breakpoint pending" option is set to auto,
1948 GDB queries you if you wish to make the breakpoint pending on a future
1949 shared-library load. If and when GDB resolves the breakpoint symbol,
1950 the pending breakpoint is removed as one or more regular breakpoints
1951 are created.
1952
1953 Pending breakpoints are very useful for GCJ Java debugging.
1954
1955 * Fixed ISO-C build problems
1956
1957 The files bfd/elf-bfd.h, gdb/dictionary.c and gdb/types.c contained
1958 non ISO-C code that stopped them being built using a more strict ISO-C
1959 compiler (e.g., IBM's C compiler).
1960
1961 * Fixed build problem on IRIX 5
1962
1963 Due to header problems with <sys/proc.h>, the file gdb/proc-api.c
1964 wasn't able to compile compile on an IRIX 5 system.
1965
1966 * Added execute permission to gdb/gdbserver/configure
1967
1968 The shell script gdb/testsuite/gdb.stabs/configure lacked execute
1969 permission. This bug would cause configure to fail on a number of
1970 systems (Solaris, IRIX). Ref: server/519.
1971
1972 * Fixed build problem on hpux2.0w-hp-hpux11.00 using the HP ANSI C compiler
1973
1974 Older HPUX ANSI C compilers did not accept variable array sizes. somsolib.c
1975 has been updated to use constant array sizes.
1976
1977 * Fixed a panic in the DWARF Call Frame Info code on Solaris 2.7
1978
1979 GCC 3.3.2, on Solaris 2.7, includes the DW_EH_PE_funcrel encoding in
1980 its generated DWARF Call Frame Info. This encoding was causing GDB to
1981 panic, that panic has been fixed. Ref: gdb/1628.
1982
1983 * Fixed a problem when examining parameters in shared library code.
1984
1985 When examining parameters in optimized shared library code generated
1986 by a mainline GCC, GDB would incorrectly report ``Variable "..." is
1987 not available''. GDB now correctly displays the variable's value.
1988
1989 *** Changes in GDB 6.1:
1990
1991 * Removed --with-mmalloc
1992
1993 Support for the mmalloc memory manager has been removed, as it
1994 conflicted with the internal gdb byte cache.
1995
1996 * Changes in AMD64 configurations
1997
1998 The AMD64 target now includes the %cs and %ss registers. As a result
1999 the AMD64 remote protocol has changed; this affects the floating-point
2000 and SSE registers. If you rely on those registers for your debugging,
2001 you should upgrade gdbserver on the remote side.
2002
2003 * Revised SPARC target
2004
2005 The SPARC target has been completely revised, incorporating the
2006 FreeBSD/sparc64 support that was added for GDB 6.0. As a result
2007 support for LynxOS and SunOS 4 has been dropped. Calling functions
2008 from within GDB on operating systems with a non-executable stack
2009 (Solaris, OpenBSD) now works.
2010
2011 * New C++ demangler
2012
2013 GDB has a new C++ demangler which does a better job on the mangled
2014 names generated by current versions of g++. It also runs faster, so
2015 with this and other changes gdb should now start faster on large C++
2016 programs.
2017
2018 * DWARF 2 Location Expressions
2019
2020 GDB support for location expressions has been extended to support function
2021 arguments and frame bases. Older versions of GDB could crash when they
2022 encountered these.
2023
2024 * C++ nested types and namespaces
2025
2026 GDB's support for nested types and namespaces in C++ has been
2027 improved, especially if you use the DWARF 2 debugging format. (This
2028 is the default for recent versions of GCC on most platforms.)
2029 Specifically, if you have a class "Inner" defined within a class or
2030 namespace "Outer", then GDB realizes that the class's name is
2031 "Outer::Inner", not simply "Inner". This should greatly reduce the
2032 frequency of complaints about not finding RTTI symbols. In addition,
2033 if you are stopped at inside of a function defined within a namespace,
2034 GDB modifies its name lookup accordingly.
2035
2036 * New native configurations
2037
2038 NetBSD/amd64 x86_64-*-netbsd*
2039 OpenBSD/amd64 x86_64-*-openbsd*
2040 OpenBSD/alpha alpha*-*-openbsd*
2041 OpenBSD/sparc sparc-*-openbsd*
2042 OpenBSD/sparc64 sparc64-*-openbsd*
2043
2044 * New debugging protocols
2045
2046 M32R with SDI protocol m32r-*-elf*
2047
2048 * "set prompt-escape-char" command deleted.
2049
2050 The command "set prompt-escape-char" has been deleted. This command,
2051 and its very obscure effet on GDB's prompt, was never documented,
2052 tested, nor mentioned in the NEWS file.
2053
2054 * OBSOLETE configurations and files
2055
2056 Configurations that have been declared obsolete in this release have
2057 been commented out. Unless there is activity to revive these
2058 configurations, the next release of GDB will have their sources
2059 permanently REMOVED.
2060
2061 Sun 3, running SunOS 3 m68*-*-sunos3*
2062 Sun 3, running SunOS 4 m68*-*-sunos4*
2063 Sun 2, running SunOS 3 m68000-*-sunos3*
2064 Sun 2, running SunOS 4 m68000-*-sunos4*
2065 Motorola 680x0 running LynxOS m68*-*-lynxos*
2066 AT&T 3b1/Unix pc m68*-att-*
2067 Bull DPX2 (68k, System V release 3) m68*-bull-sysv*
2068 decstation mips-dec-* mips-little-*
2069 riscos mips-*-riscos* mips-*-sysv*
2070 sonymips mips-sony-*
2071 sysv mips*-*-sysv4* (IRIX 5/6 not included)
2072
2073 * REMOVED configurations and files
2074
2075 SGI Irix-4.x mips-sgi-irix4 or iris4
2076 SGI Iris (MIPS) running Irix V3: mips-sgi-irix or iris
2077 Z8000 simulator z8k-zilog-none or z8ksim
2078 Matsushita MN10200 w/simulator mn10200-*-*
2079 H8/500 simulator h8500-hitachi-hms or h8500hms
2080 HP/PA running BSD hppa*-*-bsd*
2081 HP/PA running OSF/1 hppa*-*-osf*
2082 HP/PA Pro target hppa*-*-pro*
2083 PMAX (MIPS) running Mach 3.0 mips*-*-mach3*
2084 386BSD i[3456]86-*-bsd*
2085 Sequent family i[3456]86-sequent-sysv4*
2086 i[3456]86-sequent-sysv*
2087 i[3456]86-sequent-bsd*
2088 SPARC running LynxOS sparc-*-lynxos*
2089 SPARC running SunOS 4 sparc-*-sunos4*
2090 Tsqware Sparclet sparclet-*-*
2091 Fujitsu SPARClite sparclite-fujitsu-none or sparclite
2092
2093 *** Changes in GDB 6.0:
2094
2095 * Objective-C
2096
2097 Support for debugging the Objective-C programming language has been
2098 integrated into GDB.
2099
2100 * New backtrace mechanism (includes DWARF 2 Call Frame Information).
2101
2102 DWARF 2's Call Frame Information makes available compiler generated
2103 information that more exactly describes the program's run-time stack.
2104 By using this information, GDB is able to provide more robust stack
2105 backtraces.
2106
2107 The i386, amd64 (nee, x86-64), Alpha, m68hc11, ia64, and m32r targets
2108 have been updated to use a new backtrace mechanism which includes
2109 DWARF 2 CFI support.
2110
2111 * Hosted file I/O.
2112
2113 GDB's remote protocol has been extended to include support for hosted
2114 file I/O (where the remote target uses GDB's file system). See GDB's
2115 remote protocol documentation for details.
2116
2117 * All targets using the new architecture framework.
2118
2119 All of GDB's targets have been updated to use the new internal
2120 architecture framework. The way is now open for future GDB releases
2121 to include cross-architecture native debugging support (i386 on amd64,
2122 ppc32 on ppc64).
2123
2124 * GNU/Linux's Thread Local Storage (TLS)
2125
2126 GDB now includes support for for the GNU/Linux implementation of
2127 per-thread variables.
2128
2129 * GNU/Linux's Native POSIX Thread Library (NPTL)
2130
2131 GDB's thread code has been updated to work with either the new
2132 GNU/Linux NPTL thread library or the older "LinuxThreads" library.
2133
2134 * Separate debug info.
2135
2136 GDB, in conjunction with BINUTILS, now supports a mechanism for
2137 automatically loading debug information from a separate file. Instead
2138 of shipping full debug and non-debug versions of system libraries,
2139 system integrators can now instead ship just the stripped libraries
2140 and optional debug files.
2141
2142 * DWARF 2 Location Expressions
2143
2144 DWARF 2 Location Expressions allow the compiler to more completely
2145 describe the location of variables (even in optimized code) to the
2146 debugger.
2147
2148 GDB now includes preliminary support for location expressions (support
2149 for DW_OP_piece is still missing).
2150
2151 * Java
2152
2153 A number of long standing bugs that caused GDB to die while starting a
2154 Java application have been fixed. GDB's Java support is now
2155 considered "useable".
2156
2157 * GNU/Linux support for fork, vfork, and exec.
2158
2159 The "catch fork", "catch exec", "catch vfork", and "set follow-fork-mode"
2160 commands are now implemented for GNU/Linux. They require a 2.5.x or later
2161 kernel.
2162
2163 * GDB supports logging output to a file
2164
2165 There are two new commands, "set logging" and "show logging", which can be
2166 used to capture GDB's output to a file.
2167
2168 * The meaning of "detach" has changed for gdbserver
2169
2170 The "detach" command will now resume the application, as documented. To
2171 disconnect from gdbserver and leave it stopped, use the new "disconnect"
2172 command.
2173
2174 * d10v, m68hc11 `regs' command deprecated
2175
2176 The `info registers' command has been updated so that it displays the
2177 registers using a format identical to the old `regs' command.
2178
2179 * Profiling support
2180
2181 A new command, "maint set profile on/off", has been added. This command can
2182 be used to enable or disable profiling while running GDB, to profile a
2183 session 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
2185 data, for more informative profiling results.
2186
2187 * Default MI syntax changed to "mi2".
2188
2189 The default MI (machine interface) syntax, enabled by the command line
2190 option "-i=mi", has been changed to "mi2". The previous MI syntax,
2191 "mi1", can be enabled by specifying the option "-i=mi1".
2192
2193 Support for the original "mi0" syntax (included in GDB 5.0) has been
2194 removed.
2195
2196 Fix for gdb/192: removed extraneous space when displaying frame level.
2197 Fix for gdb/672: update changelist is now output in mi list format.
2198 Fix for gdb/702: a -var-assign that updates the value now shows up
2199 in a subsequent -var-update.
2200
2201 * New native configurations.
2202
2203 FreeBSD/amd64 x86_64-*-freebsd*
2204
2205 * Multi-arched targets.
2206
2207 HP/PA HPUX11 hppa*-*-hpux*
2208 Renesas M32R/D w/simulator m32r-*-elf*
2209
2210 * OBSOLETE configurations and files
2211
2212 Configurations that have been declared obsolete in this release have
2213 been commented out. Unless there is activity to revive these
2214 configurations, the next release of GDB will have their sources
2215 permanently REMOVED.
2216
2217 Z8000 simulator z8k-zilog-none or z8ksim
2218 Matsushita MN10200 w/simulator mn10200-*-*
2219 H8/500 simulator h8500-hitachi-hms or h8500hms
2220 HP/PA running BSD hppa*-*-bsd*
2221 HP/PA running OSF/1 hppa*-*-osf*
2222 HP/PA Pro target hppa*-*-pro*
2223 PMAX (MIPS) running Mach 3.0 mips*-*-mach3*
2224 Sequent family i[3456]86-sequent-sysv4*
2225 i[3456]86-sequent-sysv*
2226 i[3456]86-sequent-bsd*
2227 Tsqware Sparclet sparclet-*-*
2228 Fujitsu SPARClite sparclite-fujitsu-none or sparclite
2229
2230 * REMOVED configurations and files
2231
2232 V850EA ISA
2233 Motorola Delta 88000 running Sys V m88k-motorola-sysv or delta88
2234 IBM AIX PS/2 i[3456]86-*-aix
2235 i386 running Mach 3.0 i[3456]86-*-mach3*
2236 i386 running Mach i[3456]86-*-mach*
2237 i386 running OSF/1 i[3456]86-*osf1mk*
2238 HP/Apollo 68k Family m68*-apollo*-sysv*,
2239 m68*-apollo*-bsd*,
2240 m68*-hp-bsd*, m68*-hp-hpux*
2241 Argonaut Risc Chip (ARC) arc-*-*
2242 Mitsubishi D30V d30v-*-*
2243 Fujitsu FR30 fr30-*-elf*
2244 OS/9000 i[34]86-*-os9k
2245 I960 with MON960 i960-*-coff
2246
2247 * MIPS $fp behavior changed
2248
2249 The convenience variable $fp, for the MIPS, now consistently returns
2250 the address of the current frame's base. Previously, depending on the
2251 context, $fp could refer to either $sp or the current frame's base
2252 address. See ``8.10 Registers'' in the manual ``Debugging with GDB:
2253 The GNU Source-Level Debugger''.
2254
2255 *** Changes in GDB 5.3:
2256
2257 * GNU/Linux shared library multi-threaded performance improved.
2258
2259 When debugging a multi-threaded application on GNU/Linux, GDB now uses
2260 `/proc', in preference to `ptrace' for memory reads. This may result
2261 in an improvement in the start-up time of multi-threaded, shared
2262 library applications when run under GDB. One GDB user writes: ``loads
2263 shared libs like mad''.
2264
2265 * ``gdbserver'' now supports multi-threaded applications on some targets
2266
2267 Support for debugging multi-threaded applications which use
2268 the GNU/Linux LinuxThreads package has been added for
2269 arm*-*-linux*-gnu*, i[3456]86-*-linux*-gnu*, mips*-*-linux*-gnu*,
2270 powerpc*-*-linux*-gnu*, and sh*-*-linux*-gnu*.
2271
2272 * GDB now supports C/C++ preprocessor macros.
2273
2274 GDB now expands preprocessor macro invocations in C/C++ expressions,
2275 and provides various commands for showing macro definitions and how
2276 they expand.
2277
2278 The new command `macro expand EXPRESSION' expands any macro
2279 invocations in expression, and shows the result.
2280
2281 The new command `show macro MACRO-NAME' shows the definition of the
2282 macro named MACRO-NAME, and where it was defined.
2283
2284 Most compilers don't include information about macros in the debugging
2285 information by default. In GCC 3.1, for example, you need to compile
2286 your program with the options `-gdwarf-2 -g3'. If the macro
2287 information is present in the executable, GDB will read it.
2288
2289 * Multi-arched targets.
2290
2291 DEC Alpha (partial) alpha*-*-*
2292 DEC VAX (partial) vax-*-*
2293 NEC V850 v850-*-*
2294 National Semiconductor NS32000 (partial) ns32k-*-*
2295 Motorola 68000 (partial) m68k-*-*
2296 Motorola MCORE mcore-*-*
2297
2298 * New targets.
2299
2300 Fujitsu FRV architecture added by Red Hat frv*-*-*
2301
2302
2303 * New native configurations
2304
2305 Alpha NetBSD alpha*-*-netbsd*
2306 SH NetBSD sh*-*-netbsdelf*
2307 MIPS NetBSD mips*-*-netbsd*
2308 UltraSPARC NetBSD sparc64-*-netbsd*
2309
2310 * OBSOLETE configurations and files
2311
2312 Configurations that have been declared obsolete in this release have
2313 been commented out. Unless there is activity to revive these
2314 configurations, the next release of GDB will have their sources
2315 permanently REMOVED.
2316
2317 Mitsubishi D30V d30v-*-*
2318 OS/9000 i[34]86-*-os9k
2319 IBM AIX PS/2 i[3456]86-*-aix
2320 Fujitsu FR30 fr30-*-elf*
2321 Motorola Delta 88000 running Sys V m88k-motorola-sysv or delta88
2322 Argonaut Risc Chip (ARC) arc-*-*
2323 i386 running Mach 3.0 i[3456]86-*-mach3*
2324 i386 running Mach i[3456]86-*-mach*
2325 i386 running OSF/1 i[3456]86-*osf1mk*
2326 HP/Apollo 68k Family m68*-apollo*-sysv*,
2327 m68*-apollo*-bsd*,
2328 m68*-hp-bsd*, m68*-hp-hpux*
2329 I960 with MON960 i960-*-coff
2330
2331 * OBSOLETE languages
2332
2333 CHILL, a Pascal like language used by telecommunications companies.
2334
2335 * REMOVED configurations and files
2336
2337 AMD 29k family via UDI a29k-amd-udi, udi29k
2338 A29K VxWorks a29k-*-vxworks
2339 AMD 29000 embedded, using EBMON a29k-none-none
2340 AMD 29000 embedded with COFF a29k-none-coff
2341 AMD 29000 embedded with a.out a29k-none-aout
2342
2343 testsuite/gdb.hp/gdb.threads-hp/ directory
2344
2345 * New command "set max-user-call-depth <nnn>"
2346
2347 This command allows the user to limit the call depth of user-defined
2348 commands. The default is 1024.
2349
2350 * Changes in FreeBSD/i386 native debugging.
2351
2352 Support for the "generate-core-file" has been added.
2353
2354 * New commands "dump", "append", and "restore".
2355
2356 These commands allow data to be copied from target memory
2357 to a bfd-format or binary file (dump and append), and back
2358 from a file into memory (restore).
2359
2360 * Improved "next/step" support on multi-processor Alpha Tru64.
2361
2362 The previous single-step mechanism could cause unpredictable problems,
2363 including the random appearance of SIGSEGV or SIGTRAP signals. The use
2364 of a software single-step mechanism prevents this.
2365
2366 *** Changes in GDB 5.2.1:
2367
2368 * New targets.
2369
2370 Atmel AVR avr*-*-*
2371
2372 * Bug fixes
2373
2374 gdb/182: gdb/323: gdb/237: On alpha, gdb was reporting:
2375 mdebugread.c:2443: gdb-internal-error: sect_index_data not initialized
2376 Fix, by Joel Brobecker imported from mainline.
2377
2378 gdb/439: gdb/291: On some ELF object files, gdb was reporting:
2379 dwarf2read.c:1072: gdb-internal-error: sect_index_text not initialize
2380 Fix, by Fred Fish, imported from mainline.
2381
2382 Dwarf2 .debug_frame & .eh_frame handler improved in many ways.
2383 Surprisingly enough, it works now.
2384 By Michal Ludvig, imported from mainline.
2385
2386 i386 hardware watchpoint support:
2387 avoid misses on second run for some targets.
2388 By Pierre Muller, imported from mainline.
2389
2390 *** Changes in GDB 5.2:
2391
2392 * New command "set trust-readonly-sections on[off]".
2393
2394 This command is a hint that tells gdb that read-only sections
2395 really are read-only (ie. that their contents will not change).
2396 In this mode, gdb will go to the object file rather than the
2397 target to read memory from read-only sections (such as ".text").
2398 This can be a significant performance improvement on some
2399 (notably embedded) targets.
2400
2401 * New command "generate-core-file" (or "gcore").
2402
2403 This new gdb command allows the user to drop a core file of the child
2404 process state at any time. So far it's been implemented only for
2405 GNU/Linux and Solaris, but should be relatively easily ported to other
2406 hosts. Argument is core file name (defaults to core.<pid>).
2407
2408 * New command line option
2409
2410 GDB now accepts --pid or -p followed by a process id.
2411
2412 * Change in command line behavior -- corefiles vs. process ids.
2413
2414 There is a subtle behavior in the way in which GDB handles
2415 command line arguments. The first non-flag argument is always
2416 a program to debug, but the second non-flag argument may either
2417 be a corefile or a process id. Previously, GDB would attempt to
2418 open the second argument as a corefile, and if that failed, would
2419 issue a superfluous error message and then attempt to attach it as
2420 a process. Now, if the second argument begins with a non-digit,
2421 it will be treated as a corefile. If it begins with a digit,
2422 GDB will attempt to attach it as a process, and if no such process
2423 is found, will then attempt to open it as a corefile.
2424
2425 * Changes in ARM configurations.
2426
2427 Multi-arch support is enabled for all ARM configurations. The ARM/NetBSD
2428 configuration is fully multi-arch.
2429
2430 * New native configurations
2431
2432 ARM NetBSD arm*-*-netbsd*
2433 x86 OpenBSD i[3456]86-*-openbsd*
2434 AMD x86-64 running GNU/Linux x86_64-*-linux-*
2435 Sparc64 running FreeBSD sparc64-*-freebsd*
2436
2437 * New targets
2438
2439 Sanyo XStormy16 xstormy16-elf
2440
2441 * OBSOLETE configurations and files
2442
2443 Configurations that have been declared obsolete in this release have
2444 been commented out. Unless there is activity to revive these
2445 configurations, the next release of GDB will have their sources
2446 permanently REMOVED.
2447
2448 AMD 29k family via UDI a29k-amd-udi, udi29k
2449 A29K VxWorks a29k-*-vxworks
2450 AMD 29000 embedded, using EBMON a29k-none-none
2451 AMD 29000 embedded with COFF a29k-none-coff
2452 AMD 29000 embedded with a.out a29k-none-aout
2453
2454 testsuite/gdb.hp/gdb.threads-hp/ directory
2455
2456 * REMOVED configurations and files
2457
2458 TI TMS320C80 tic80-*-*
2459 WDC 65816 w65-*-*
2460 PowerPC Solaris powerpcle-*-solaris*
2461 PowerPC Windows NT powerpcle-*-cygwin32
2462 PowerPC Netware powerpc-*-netware*
2463 Harris/CXUX m88k m88*-harris-cxux*
2464 Most ns32k hosts and targets ns32k-*-mach3* ns32k-umax-*
2465 ns32k-utek-sysv* ns32k-utek-*
2466 SunOS 4.0.Xi on i386 i[3456]86-*-sunos*
2467 Ultracomputer (29K) running Sym1 a29k-nyu-sym1 a29k-*-kern*
2468 Sony NEWS (68K) running NEWSOS 3.x m68*-sony-sysv news
2469 ISI Optimum V (3.05) under 4.3bsd. m68*-isi-*
2470 Apple Macintosh (MPW) host and target N/A host, powerpc-*-macos*
2471
2472 * Changes to command line processing
2473
2474 The new `--args' feature can be used to specify command-line arguments
2475 for the inferior from gdb's command line.
2476
2477 * Changes to key bindings
2478
2479 There is a new `operate-and-get-next' function bound to `C-o'.
2480
2481 *** Changes in GDB 5.1.1
2482
2483 Fix compile problem on DJGPP.
2484
2485 Fix a problem with floating-point registers on the i386 being
2486 corrupted.
2487
2488 Fix to stop GDB crashing on .debug_str debug info.
2489
2490 Numerous documentation fixes.
2491
2492 Numerous testsuite fixes.
2493
2494 *** Changes in GDB 5.1:
2495
2496 * New native configurations
2497
2498 Alpha FreeBSD alpha*-*-freebsd*
2499 x86 FreeBSD 3.x and 4.x i[3456]86*-freebsd[34]*
2500 MIPS GNU/Linux mips*-*-linux*
2501 MIPS SGI Irix 6.x mips*-sgi-irix6*
2502 ia64 AIX ia64-*-aix*
2503 s390 and s390x GNU/Linux {s390,s390x}-*-linux*
2504
2505 * New targets
2506
2507 Motorola 68HC11 and 68HC12 m68hc11-elf
2508 CRIS cris-axis
2509 UltraSparc running GNU/Linux sparc64-*-linux*
2510
2511 * OBSOLETE configurations and files
2512
2513 x86 FreeBSD before 2.2 i[3456]86*-freebsd{1,2.[01]}*,
2514 Harris/CXUX m88k m88*-harris-cxux*
2515 Most ns32k hosts and targets ns32k-*-mach3* ns32k-umax-*
2516 ns32k-utek-sysv* ns32k-utek-*
2517 TI TMS320C80 tic80-*-*
2518 WDC 65816 w65-*-*
2519 Ultracomputer (29K) running Sym1 a29k-nyu-sym1 a29k-*-kern*
2520 PowerPC Solaris powerpcle-*-solaris*
2521 PowerPC Windows NT powerpcle-*-cygwin32
2522 PowerPC Netware powerpc-*-netware*
2523 SunOS 4.0.Xi on i386 i[3456]86-*-sunos*
2524 Sony NEWS (68K) running NEWSOS 3.x m68*-sony-sysv news
2525 ISI Optimum V (3.05) under 4.3bsd. m68*-isi-*
2526 Apple Macintosh (MPW) host N/A
2527
2528 stuff.c (Program to stuff files into a specially prepared space in kdb)
2529 kdb-start.c (Main loop for the standalone kernel debugger)
2530
2531 Configurations that have been declared obsolete in this release have
2532 been commented out. Unless there is activity to revive these
2533 configurations, the next release of GDB will have their sources
2534 permanently REMOVED.
2535
2536 * REMOVED configurations and files
2537
2538 Altos 3068 m68*-altos-*
2539 Convex c1-*-*, c2-*-*
2540 Pyramid pyramid-*-*
2541 ARM RISCix arm-*-* (as host)
2542 Tahoe tahoe-*-*
2543 ser-ocd.c *-*-*
2544
2545 * GDB has been converted to ISO C.
2546
2547 GDB's source code has been converted to ISO C. In particular, the
2548 sources are fully protoized, and rely on standard headers being
2549 present.
2550
2551 * Other news:
2552
2553 * "info symbol" works on platforms which use COFF, ECOFF, XCOFF, and NLM.
2554
2555 * The MI enabled by default.
2556
2557 The new machine oriented interface (MI) introduced in GDB 5.0 has been
2558 revised and enabled by default. Packages which use GDB as a debugging
2559 engine behind a UI or another front end are encouraged to switch to
2560 using the GDB/MI interface, instead of the old annotations interface
2561 which is now deprecated.
2562
2563 * Support for debugging Pascal programs.
2564
2565 GDB now includes support for debugging Pascal programs. The following
2566 main 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
2577 However, 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
2592 Commands such as `shell', `run' and `set args', which pass arguments
2593 to inferior programs, now complete on file names, similar to what
2594 users expect at the shell prompt.
2595
2596 Commands which accept locations, such as `disassemble', `print',
2597 `breakpoint', `until', etc. now complete on filenames as well as
2598 program symbols. Thus, if you type "break foob TAB", and the source
2599 files linked into the programs include `foobar.c', that file name will
2600 be one of the candidates for completion. However, file names are not
2601 considered for completion after you typed a colon that delimits a file
2602 name 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
2608 It is now possible to define a post-hook for a command as well as a
2609 hook that runs before the command. For more details, see the
2610 documentation of `hookpost' in the GDB manual.
2611
2612 * Changes in GNU/Linux native debugging.
2613
2614 Support for debugging multi-threaded programs has been completely
2615 revised for all platforms except m68k and sparc. You can now debug as
2616 many threads as your system allows you to have.
2617
2618 Attach/detach is supported for multi-threaded programs.
2619
2620 Support for SSE registers was added for x86. This doesn't work for
2621 multi-threaded programs though.
2622
2623 * Changes in MIPS configurations.
2624
2625 Multi-arch support is enabled for all MIPS configurations.
2626
2627 GDB can now be built as native debugger on SGI Irix 6.x systems for
2628 debugging n32 executables. (Debugging 64-bit executables is not yet
2629 supported.)
2630
2631 * Unified support for hardware watchpoints in all x86 configurations.
2632
2633 Most (if not all) native x86 configurations support hardware-assisted
2634 breakpoints and watchpoints in a unified manner. This support
2635 implements debug register sharing between watchpoints, which allows to
2636 put a virtually infinite number of watchpoints on the same address,
2637 and also supports watching regions up to 16 bytes with several debug
2638 registers.
2639
2640 The new maintenance command `maintenance show-debug-regs' toggles
2641 debugging print-outs in functions that insert, remove, and test
2642 watchpoints and hardware breakpoints.
2643
2644 * Changes in the DJGPP native configuration.
2645
2646 New command ``info dos sysinfo'' displays assorted information about
2647 the CPU, OS, memory, and DPMI server.
2648
2649 New commands ``info dos gdt'', ``info dos ldt'', and ``info dos idt''
2650 display information about segment descriptors stored in GDT, LDT, and
2651 IDT.
2652
2653 New commands ``info dos pde'' and ``info dos pte'' display entries
2654 from Page Directory and Page Tables (for now works with CWSDPMI only).
2655 New command ``info dos address-pte'' displays the Page Table entry for
2656 a given linear address.
2657
2658 GDB can now pass command lines longer than 126 characters to the
2659 program being debugged (requires an update to the libdbg.a library
2660 which is part of the DJGPP development kit).
2661
2662 DWARF2 debug info is now supported.
2663
2664 It is now possible to `step' and `next' through calls to `longjmp'.
2665
2666 * Changes in documentation.
2667
2668 All GDB documentation was converted to GFDL, the GNU Free
2669 Documentation License.
2670
2671 Tracepoints-related commands are now fully documented in the GDB
2672 manual.
2673
2674 TUI, the Text-mode User Interface, is now documented in the manual.
2675
2676 Tracepoints-related commands are now fully documented in the GDB
2677 manual.
2678
2679 The "GDB Internals" manual now has an index. It also includes
2680 documentation of `ui_out' functions, GDB coding standards, x86
2681 hardware watchpoints, and memory region attributes.
2682
2683 * GDB's version number moved to ``version.in''
2684
2685 The Makefile variable VERSION has been replaced by the file
2686 ``version.in''. People creating GDB distributions should update the
2687 contents of this file.
2688
2689 * gdba.el deleted
2690
2691 GUD support is now a standard part of the EMACS distribution.
2692
2693 *** Changes in GDB 5.0:
2694
2695 * Improved support for debugging FP programs on x86 targets
2696
2697 Unified and much-improved support for debugging floating-point
2698 programs on all x86 targets. In particular, ``info float'' now
2699 displays the FP registers in the same format on all x86 targets, with
2700 greater level of detail.
2701
2702 * Improvements and bugfixes in hardware-assisted watchpoints
2703
2704 It is now possible to watch array elements, struct members, and
2705 bitfields with hardware-assisted watchpoints. Data-read watchpoints
2706 on x86 targets no longer erroneously trigger when the address is
2707 written.
2708
2709 * Improvements in the native DJGPP version of GDB
2710
2711 The distribution now includes all the scripts and auxiliary files
2712 necessary to build the native DJGPP version on MS-DOS/MS-Windows
2713 machines ``out of the box''.
2714
2715 The DJGPP version can now debug programs that use signals. It is
2716 possible to catch signals that happened in the debuggee, deliver
2717 signals to it, interrupt it with Ctrl-C, etc. (Previously, a signal
2718 would kill the program being debugged.) Programs that hook hardware
2719 interrupts (keyboard, timer, etc.) can also be debugged.
2720
2721 It is now possible to debug DJGPP programs that redirect their
2722 standard handles or switch them to raw (as opposed to cooked) mode, or
2723 even close them. The command ``run < foo > bar'' works as expected,
2724 and ``info terminal'' reports useful information about the debuggee's
2725 terminal, including raw/cooked mode, redirection, etc.
2726
2727 The DJGPP version now uses termios functions for console I/O, which
2728 enables debugging graphics programs. Interrupting GDB with Ctrl-C
2729 also works.
2730
2731 DOS-style file names with drive letters are now fully supported by
2732 GDB.
2733
2734 It is now possible to debug DJGPP programs that switch their working
2735 directory. It is also possible to rerun the debuggee any number of
2736 times without restarting GDB; thus, you can use the same setup,
2737 breakpoints, etc. for many debugging sessions.
2738
2739 * New native configurations
2740
2741 ARM GNU/Linux arm*-*-linux*
2742 PowerPC GNU/Linux powerpc-*-linux*
2743
2744 * New targets
2745
2746 Motorola MCore mcore-*-*
2747 x86 VxWorks i[3456]86-*-vxworks*
2748 PowerPC VxWorks powerpc-*-vxworks*
2749 TI TMS320C80 tic80-*-*
2750
2751 * OBSOLETE configurations
2752
2753 Altos 3068 m68*-altos-*
2754 Convex c1-*-*, c2-*-*
2755 Pyramid pyramid-*-*
2756 ARM RISCix arm-*-* (as host)
2757 Tahoe tahoe-*-*
2758
2759 Configurations that have been declared obsolete will be commented out,
2760 but the code will be left in place. If there is no activity to revive
2761 these configurations before the next release of GDB, the sources will
2762 be permanently REMOVED.
2763
2764 * Gould support removed
2765
2766 Support for the Gould PowerNode and NP1 has been removed.
2767
2768 * New features for SVR4
2769
2770 On SVR4 native platforms (such as Solaris), if you attach to a process
2771 without first loading a symbol file, GDB will now attempt to locate and
2772 load symbols from the running process's executable file.
2773
2774 * Many C++ enhancements
2775
2776 C++ support has been greatly improved. Overload resolution now works properly
2777 in almost all cases. RTTI support is on the way.
2778
2779 * Remote targets can connect to a sub-program
2780
2781 A popen(3) style serial-device has been added. This device starts a
2782 sub-process (such as a stand-alone simulator) and then communicates
2783 with 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
2789 * MIPS 64 remote protocol
2790
2791 A long standing bug in the mips64 remote protocol where by GDB
2792 expected certain 32 bit registers (ex SR) to be transfered as 32
2793 instead of 64 bits has been fixed.
2794
2795 The command ``set remote-mips64-transfers-32bit-regs on'' has been
2796 added to provide backward compatibility with older versions of GDB.
2797
2798 * ``set remotebinarydownload'' replaced by ``set remote X-packet''
2799
2800 The command ``set remotebinarydownload'' command has been replaced by
2801 ``set remote X-packet''. Other commands in ``set remote'' family
2802 include ``set remote P-packet''.
2803
2804 * Breakpoint commands accept ranges.
2805
2806 The breakpoint commands ``enable'', ``disable'', and ``delete'' now
2807 accept a range of breakpoints, e.g. ``5-7''. The tracepoint command
2808 ``tracepoint passcount'' also accepts a range of tracepoints.
2809
2810 * ``apropos'' command added.
2811
2812 The ``apropos'' command searches through command names and
2813 documentation strings, printing out matches, making it much easier to
2814 try to find a command that does what you are looking for.
2815
2816 * New MI interface
2817
2818 A new machine oriented interface (MI) has been added to GDB. This
2819 interface is designed for debug environments running GDB as a separate
2820 process. 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
2822 enabled by configuring with:
2823
2824 .../configure --enable-gdbmi
2825
2826 *** Changes in GDB-4.18:
2827
2828 * New native configurations
2829
2830 HP-UX 10.20 hppa*-*-hpux10.20
2831 HP-UX 11.x hppa*-*-hpux11.0*
2832 M68K GNU/Linux m68*-*-linux*
2833
2834 * New targets
2835
2836 Fujitsu FR30 fr30-*-elf*
2837 Intel StrongARM strongarm-*-*
2838 Mitsubishi D30V d30v-*-*
2839
2840 * OBSOLETE configurations
2841
2842 Gould PowerNode, NP1 np1-*-*, pn-*-*
2843
2844 Configurations that have been declared obsolete will be commented out,
2845 but the code will be left in place. If there is no activity to revive
2846 these configurations before the next release of GDB, the sources will
2847 be permanently REMOVED.
2848
2849 * ANSI/ISO C
2850
2851 As a compatibility experiment, GDB's source files buildsym.h and
2852 buildsym.c have been converted to pure standard C, no longer
2853 containing any K&R compatibility code. We believe that all systems in
2854 use today either come with a standard C compiler, or have a GCC port
2855 available. If this is not true, please report the affected
2856 configuration to bug-gdb@gnu.org immediately. See the README file for
2857 information about getting a standard C compiler if you don't have one
2858 already.
2859
2860 * Readline 2.2
2861
2862 GDB now uses readline 2.2.
2863
2864 * set extension-language
2865
2866 You can now control the mapping between filename extensions and source
2867 languages by using the `set extension-language' command. For instance,
2868 you can ask GDB to treat .c files as C++ by saying
2869 set extension-language .c c++
2870 The command `info extensions' lists all of the recognized extensions
2871 and their associated languages.
2872
2873 * Setting processor type for PowerPC and RS/6000
2874
2875 When GDB is configured for a powerpc*-*-* or an rs6000*-*-* target,
2876 you can use the `set processor' command to specify what variant of the
2877 PowerPC family you are debugging. The command
2878
2879 set processor NAME
2880
2881 sets the PowerPC/RS6000 variant to NAME. GDB knows about the
2882 following 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
2896 At the moment, this command just tells GDB what to name the
2897 special-purpose processor registers. Since almost all the affected
2898 registers are inaccessible to user-level programs, this command is
2899 only useful for remote debugging in its present form.
2900
2901 * HP-UX support
2902
2903 Thanks to a major code donation from Hewlett-Packard, GDB now has much
2904 more extensive support for HP-UX. Added features include shared
2905 library support, kernel threads and hardware watchpoints for 11.00,
2906 support for HP's ANSI C and C++ compilers, and a compatibility mode
2907 for xdb and dbx commands.
2908
2909 * Catchpoints
2910
2911 HP's donation includes the new concept of catchpoints, which is a
2912 generalization of the old catch command. On HP-UX, it is now possible
2913 to catch exec, fork, and vfork, as well as library loading.
2914
2915 This means that the existing catch command has changed; its first
2916 argument now specifies the type of catch to be set up. See the
2917 output of "help catch" for a list of catchpoint types.
2918
2919 * Debugging across forks
2920
2921 On HP-UX, you can choose which process to debug when a fork() happens
2922 in the inferior.
2923
2924 * TUI
2925
2926 HP has donated a curses-based terminal user interface (TUI). To get
2927 it, build with --enable-tui. Although this can be enabled for any
2928 configuration, at present it only works for native HP debugging.
2929
2930 * GDB remote protocol additions
2931
2932 A new protocol packet 'X' that writes binary data is now available.
2933 Default behavior is to try 'X', then drop back to 'M' if the stub
2934 fails to respond. The settable variable `remotebinarydownload'
2935 allows explicit control over the use of 'X'.
2936
2937 For 64-bit targets, the memory packets ('M' and 'm') can now contain a
2938 full 64-bit address. The command
2939
2940 set remoteaddresssize 32
2941
2942 can be used to revert to the old behaviour. For existing remote stubs
2943 the change should not be noticed, as the additional address information
2944 will be discarded.
2945
2946 In order to assist in debugging stubs, you may use the maintenance
2947 command `packet' to send any text string to the stub. For instance,
2948
2949 maint packet heythere
2950
2951 sends the packet "$heythere#<checksum>". Note that it is very easy to
2952 disrupt a debugging session by sending the wrong packet at the wrong
2953 time.
2954
2955 The compare-sections command allows you to compare section data on the
2956 target to what is in the executable file without uploading or
2957 downloading, by comparing CRC checksums.
2958
2959 * Tracing can collect general expressions
2960
2961 You may now collect general expressions at tracepoints. This requires
2962 further additions to the target-side stub; see tracepoint.c and
2963 doc/agentexpr.texi for further details.
2964
2965 * mask-address variable for Mips
2966
2967 For Mips targets, you may control the zeroing of the upper 32 bits of
2968 a 64-bit address by entering `set mask-address on'. This is mainly
2969 of interest to users of embedded R4xxx and R5xxx processors.
2970
2971 * Higher serial baud rates
2972
2973 GDB's serial code now allows you to specify baud rates 57600, 115200,
2974 230400, and 460800 baud. (Note that your host system may not be able
2975 to achieve all of these rates.)
2976
2977 * i960 simulator
2978
2979 The i960 configuration now includes an initial implementation of a
2980 builtin simulator, contributed by Jim Wilson.
2981
2982
2983 *** Changes in GDB-4.17:
2984
2985 * New native configurations
2986
2987 Alpha GNU/Linux alpha*-*-linux*
2988 Unixware 2.x i[3456]86-unixware2*
2989 Irix 6.x mips*-sgi-irix6*
2990 PowerPC GNU/Linux powerpc-*-linux*
2991 PowerPC Solaris powerpcle-*-solaris*
2992 Sparc GNU/Linux sparc-*-linux*
2993 Motorola sysV68 R3V7.1 m68k-motorola-sysv
2994
2995 * New targets
2996
2997 Argonaut Risc Chip (ARC) arc-*-*
2998 Hitachi H8/300S h8300*-*-*
2999 Matsushita MN10200 w/simulator mn10200-*-*
3000 Matsushita MN10300 w/simulator mn10300-*-*
3001 MIPS NEC VR4100 mips64*vr4100*{,el}-*-elf*
3002 MIPS NEC VR5000 mips64*vr5000*{,el}-*-elf*
3003 MIPS Toshiba TX39 mips64*tx39*{,el}-*-elf*
3004 Mitsubishi D10V w/simulator d10v-*-*
3005 Mitsubishi M32R/D w/simulator m32r-*-elf*
3006 Tsqware Sparclet sparclet-*-*
3007 NEC V850 w/simulator v850-*-*
3008
3009 * New debugging protocols
3010
3011 ARM with RDI protocol arm*-*-*
3012 M68K with dBUG monitor m68*-*-{aout,coff,elf}
3013 DDB and LSI variants of PMON protocol mips*-*-*
3014 PowerPC with DINK32 monitor powerpc{,le}-*-eabi
3015 PowerPC with SDS protocol powerpc{,le}-*-eabi
3016 Macraigor OCD (Wiggler) devices powerpc{,le}-*-eabi
3017
3018 * DWARF 2
3019
3020 All configurations can now understand and use the DWARF 2 debugging
3021 format. The choice is automatic, if the symbol file contains DWARF 2
3022 information.
3023
3024 * Java frontend
3025
3026 GDB now includes basic Java language support. This support is
3027 only useful with Java compilers that produce native machine code.
3028
3029 * solib-absolute-prefix and solib-search-path
3030
3031 For SunOS and SVR4 shared libraries, you may now set the prefix for
3032 loading absolute shared library symbol files, and the search path for
3033 locating non-absolute shared library symbol files.
3034
3035 * Live range splitting
3036
3037 GDB can now effectively debug code for which GCC has performed live
3038 range splitting as part of its optimization. See gdb/doc/LRS for
3039 more details on the expected format of the stabs information.
3040
3041 * Hurd support
3042
3043 GDB's support for the GNU Hurd, including thread debugging, has been
3044 updated to work with current versions of the Hurd.
3045
3046 * ARM Thumb support
3047
3048 GDB's ARM target configuration now handles the ARM7T (Thumb) 16-bit
3049 instruction set. ARM GDB automatically detects when Thumb
3050 instructions are in use, and adjusts disassembly and backtracing
3051 accordingly.
3052
3053 * MIPS16 support
3054
3055 GDB's MIPS target configurations now handle the MIP16 16-bit
3056 instruction set.
3057
3058 * Overlay support
3059
3060 GDB now includes support for overlays; if an executable has been
3061 linked such that multiple sections are based at the same address, GDB
3062 will decide which section to use for symbolic info. You can choose to
3063 control the decision manually, using overlay commands, or implement
3064 additional target-side support and use "overlay load-target" to bring
3065 in the overlay mapping. Do "help overlay" for more detail.
3066
3067 * info symbol
3068
3069 The command "info symbol <address>" displays information about
3070 the symbol at the specified address.
3071
3072 * Trace support
3073
3074 The standard remote protocol now includes an extension that allows
3075 asynchronous collection and display of trace data. This requires
3076 extensive support in the target-side debugging stub. Tracing mode
3077 includes a new interaction mode in GDB and new commands: see the
3078 file tracepoint.c for more details.
3079
3080 * MIPS simulator
3081
3082 Configurations for embedded MIPS now include a simulator contributed
3083 by Cygnus Solutions. The simulator supports the instruction sets
3084 of most MIPS variants.
3085
3086 * Sparc simulator
3087
3088 Sparc configurations may now include the ERC32 simulator contributed
3089 by the European Space Agency. The simulator is not built into
3090 Sparc targets by default; configure with --enable-sim to include it.
3091
3092 * set architecture
3093
3094 For target configurations that may include multiple variants of a
3095 basic architecture (such as MIPS and SH), you may now set the
3096 architecture explicitly. "set arch" sets, "info arch" lists
3097 the possible architectures.
3098
3099 *** Changes in GDB-4.16:
3100
3101 * New native configurations
3102
3103 Windows 95, x86 Windows NT i[345]86-*-cygwin32
3104 M68K NetBSD m68k-*-netbsd*
3105 PowerPC AIX 4.x powerpc-*-aix*
3106 PowerPC MacOS powerpc-*-macos*
3107 PowerPC Windows NT powerpcle-*-cygwin32
3108 RS/6000 AIX 4.x rs6000-*-aix4*
3109
3110 * New targets
3111
3112 ARM with RDP protocol arm-*-*
3113 I960 with MON960 i960-*-coff
3114 MIPS VxWorks mips*-*-vxworks*
3115 MIPS VR4300 with PMON mips64*vr4300{,el}-*-elf*
3116 PowerPC with PPCBUG monitor powerpc{,le}-*-eabi*
3117 Hitachi SH3 sh-*-*
3118 Matra Sparclet sparclet-*-*
3119
3120 * PowerPC simulator
3121
3122 The powerpc-eabi configuration now includes the PSIM simulator,
3123 contributed by Andrew Cagney, with assistance from Mike Meissner.
3124 PSIM is a very elaborate model of the PowerPC, including not only
3125 basic instruction set execution, but also details of execution unit
3126 performance and I/O hardware. See sim/ppc/README for more details.
3127
3128 * Solaris 2.5
3129
3130 GDB now works with Solaris 2.5.
3131
3132 * Windows 95/NT native
3133
3134 GDB will now work as a native debugger on Windows 95 and Windows NT.
3135 To build it from source, you must use the "gnu-win32" environment,
3136 which uses a DLL to emulate enough of Unix to run the GNU tools.
3137 Further information, binaries, and sources are available at
3138 ftp.cygnus.com, under pub/gnu-win32.
3139
3140 * dont-repeat command
3141
3142 If a user-defined command includes the command `dont-repeat', then the
3143 command will not be repeated if the user just types return. This is
3144 useful if the command is time-consuming to run, so that accidental
3145 extra keystrokes don't run the same command many times.
3146
3147 * Send break instead of ^C
3148
3149 The standard remote protocol now includes an option to send a break
3150 rather than a ^C to the target in order to interrupt it. By default,
3151 GDB will send ^C; to send a break, set the variable `remotebreak' to 1.
3152
3153 * Remote protocol timeout
3154
3155 The standard remote protocol includes a new variable `remotetimeout'
3156 that allows you to set the number of seconds before GDB gives up trying
3157 to read from the target. The default value is 2.
3158
3159 * Automatic tracking of dynamic object loading (HPUX and Solaris only)
3160
3161 By default GDB will automatically keep track of objects as they are
3162 loaded and unloaded by the dynamic linker. By using the command `set
3163 stop-on-solib-events 1' you can arrange for GDB to stop the inferior
3164 when shared library events occur, thus allowing you to set breakpoints
3165 in shared libraries which are explicitly loaded by the inferior.
3166
3167 Note this feature does not work on hpux8. On hpux9 you must link
3168 /usr/lib/end.o into your program. This feature should work
3169 automatically on hpux10.
3170
3171 * Irix 5.x hardware watchpoint support
3172
3173 Irix 5 configurations now support the use of hardware watchpoints.
3174
3175 * Mips protocol "SYN garbage limit"
3176
3177 When debugging a Mips target using the `target mips' protocol, you
3178 may set the number of characters that GDB will ignore by setting
3179 the `syn-garbage-limit'. A value of -1 means that GDB will ignore
3180 every character. The default value is 1050.
3181
3182 * Recording and replaying remote debug sessions
3183
3184 If you set `remotelogfile' to the name of a file, gdb will write to it
3185 a recording of a remote debug session. This recording may then be
3186 replayed back to gdb using "gdbreplay". See gdbserver/README for
3187 details. This is useful when you have a problem with GDB while doing
3188 remote debugging; you can make a recording of the session and send it
3189 to someone else, who can then recreate the problem.
3190
3191 * Speedups for remote debugging
3192
3193 GDB includes speedups for downloading and stepping MIPS systems using
3194 the IDT monitor, fast downloads to the Hitachi SH E7000 emulator,
3195 and more efficient S-record downloading.
3196
3197 * Memory use reductions and statistics collection
3198
3199 GDB now uses less memory and reports statistics about memory usage.
3200 Try the `maint print statistics' command, for example.
3201
3202 *** Changes in GDB-4.15:
3203
3204 * Psymtabs for XCOFF
3205
3206 The symbol reader for AIX GDB now uses partial symbol tables. This
3207 can greatly improve startup time, especially for large executables.
3208
3209 * Remote targets use caching
3210
3211 Remote targets now use a data cache to speed up communication with the
3212 remote side. The data cache could lead to incorrect results because
3213 it doesn't know about volatile variables, thus making it impossible to
3214 debug targets which use memory mapped I/O devices. `set remotecache
3215 off' turns the the data cache off.
3216
3217 * Remote targets may have threads
3218
3219 The standard remote protocol now includes support for multiple threads
3220 in the target system, using new protocol commands 'H' and 'T'. See
3221 gdb/remote.c for details.
3222
3223 * NetROM support
3224
3225 If GDB is configured with `--enable-netrom', then it will include
3226 support for the NetROM ROM emulator from XLNT Designs. The NetROM
3227 acts as though it is a bank of ROM on the target board, but you can
3228 write into it over the network. GDB's support consists only of
3229 support for fast loading into the emulated ROM; to debug, you must use
3230 another protocol, such as standard remote protocol. The usual
3231 sequence is something like
3232
3233 target nrom <netrom-hostname>
3234 load <prog>
3235 target remote <netrom-hostname>:1235
3236
3237 * Macintosh host
3238
3239 GDB now includes support for the Apple Macintosh, as a host only. It
3240 may be run as either an MPW tool or as a standalone application, and
3241 it can debug through the serial port. All the usual GDB commands are
3242 available, but to the target command, you must supply "serial" as the
3243 device type instead of "/dev/ttyXX". See mpw-README in the main
3244 directory for more information on how to build. The MPW configuration
3245 scripts */mpw-config.in support only a few targets, and only the
3246 mips-idt-ecoff target has been tested.
3247
3248 * Autoconf
3249
3250 GDB configuration now uses autoconf. This is not user-visible,
3251 but does simplify configuration and building.
3252
3253 * hpux10
3254
3255 GDB now supports hpux10.
3256
3257 *** Changes in GDB-4.14:
3258
3259 * New native configurations
3260
3261 x86 FreeBSD i[345]86-*-freebsd
3262 x86 NetBSD i[345]86-*-netbsd
3263 NS32k NetBSD ns32k-*-netbsd
3264 Sparc NetBSD sparc-*-netbsd
3265
3266 * New targets
3267
3268 A29K VxWorks a29k-*-vxworks
3269 HP PA PRO embedded (WinBond W89K & Oki OP50N) hppa*-*-pro*
3270 CPU32 EST-300 emulator m68*-*-est*
3271 PowerPC ELF powerpc-*-elf
3272 WDC 65816 w65-*-*
3273
3274 * Alpha OSF/1 support for procfs
3275
3276 GDB now supports procfs under OSF/1-2.x and higher, which makes it
3277 possible to attach to running processes. As the mounting of the /proc
3278 filesystem is optional on the Alpha, GDB automatically determines
3279 the availability of /proc during startup. This can lead to problems
3280 if /proc is unmounted after GDB has been started.
3281
3282 * Arguments to user-defined commands
3283
3284 User commands may accept up to 10 arguments separated by whitespace.
3285 Arguments are accessed within the user command via $arg0..$arg9. A
3286 trivial example:
3287 define adder
3288 print $arg0 + $arg1 + $arg2
3289
3290 To execute the command use:
3291 adder 1 2 3
3292
3293 Defines the command "adder" which prints the sum of its three arguments.
3294 Note the arguments are text substitutions, so they may reference variables,
3295 use complex expressions, or even perform inferior function calls.
3296
3297 * New `if' and `while' commands
3298
3299 This makes it possible to write more sophisticated user-defined
3300 commands. Both commands take a single argument, which is the
3301 expression to evaluate, and must be followed by the commands to
3302 execute, one per line, if the expression is nonzero, the list being
3303 terminated by the word `end'. The `if' command list may include an
3304 `else' word, which causes the following commands to be executed only
3305 if the expression is zero.
3306
3307 * Fortran source language mode
3308
3309 GDB now includes partial support for Fortran 77. It will recognize
3310 Fortran programs and can evaluate a subset of Fortran expressions, but
3311 variables and functions may not be handled correctly. GDB will work
3312 with G77, but does not yet know much about symbols emitted by other
3313 Fortran compilers.
3314
3315 * Better HPUX support
3316
3317 Most debugging facilities now work on dynamic executables for HPPAs
3318 running hpux9 or later. You can attach to running dynamically linked
3319 processes, but by default the dynamic libraries will be read-only, so
3320 for instance you won't be able to put breakpoints in them. To change
3321 that behavior do the following before running the program:
3322
3323 adb -w a.out
3324 __dld_flags?W 0x5
3325 control-d
3326
3327 This will cause the libraries to be mapped private and read-write.
3328 To revert to the normal behavior, do this:
3329
3330 adb -w a.out
3331 __dld_flags?W 0x4
3332 control-d
3333
3334 You cannot set breakpoints or examine data in the library until after
3335 the library is loaded if the function/data symbols do not have
3336 external linkage.
3337
3338 GDB can now also read debug symbols produced by the HP C compiler on
3339 HPPAs (sorry, no C++, Fortran or 68k support).
3340
3341 * Target byte order now dynamically selectable
3342
3343 You can choose which byte order to use with a target system, via the
3344 commands "set endian big" and "set endian little", and you can see the
3345 current setting by using "show endian". You can also give the command
3346 "set endian auto", in which case GDB will use the byte order
3347 associated with the executable. Currently, only embedded MIPS
3348 configurations support dynamic selection of target byte order.
3349
3350 * New DOS host serial code
3351
3352 This version uses DPMI interrupts to handle buffered I/O, so you
3353 no longer need to run asynctsr when debugging boards connected to
3354 a PC's serial port.
3355
3356 *** Changes in GDB-4.13:
3357
3358 * New "complete" command
3359
3360 This lists all the possible completions for the rest of the line, if it
3361 were 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
3366 allows 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
3371 has been hit. This is especially useful in conjunction with "ignore"; you
3372 can ignore a large number of breakpoint hits, look at the breakpoint info
3373 to see how many times the breakpoint was hit, then run again, ignoring one
3374 less than that number, and this will get you quickly to the last hit of
3375 that 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
3380 an array when the first NULL is encountered. This is useful when large
3381 arrays actually contain only short strings.
3382
3383 * Shared library breakpoints
3384
3385 In SunOS 4.x, SVR4, and Alpha OSF/1 configurations, you can now set
3386 breakpoints in shared libraries before the executable is run.
3387
3388 * Hardware watchpoints
3389
3390 There is a new hardware breakpoint for the watch command for sparclite
3391 targets. See gdb/sparclite/hw_breakpoint.note.
3392
3393 Hardware watchpoints are also now supported under GNU/Linux.
3394
3395 * Annotations
3396
3397 Annotations have been added. These are for use with graphical interfaces,
3398 and are still experimental. Currently only gdba.el uses these.
3399
3400 * Improved Irix 5 support
3401
3402 GDB now works properly with Irix 5.2.
3403
3404 * Improved HPPA support
3405
3406 GDB now works properly with the latest GCC and GAS.
3407
3408 * New native configurations
3409
3410 Sequent PTX4 i[34]86-sequent-ptx4
3411 HPPA running OSF/1 hppa*-*-osf*
3412 Atari TT running SVR4 m68*-*-sysv4*
3413 RS/6000 LynxOS rs6000-*-lynxos*
3414
3415 * New targets
3416
3417 OS/9000 i[34]86-*-os9k
3418 MIPS R4000 mips64*{,el}-*-{ecoff,elf}
3419 Sparc64 sparc64-*-*
3420
3421 * Hitachi SH7000 and E7000-PC ICE support
3422
3423 There is now support for communicating with the Hitachi E7000-PC ICE.
3424 This is available automatically when GDB is configured for the SH.
3425
3426 * Fixes
3427
3428 As usual, a variety of small fixes and improvements, both generic
3429 and 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
3437 GDB-4.12 on the HPPA has a number of changes which make it unable
3438 to debug the output from the currently released versions of GCC and
3439 GAS (GCC 2.5.8 and GAS-2.2 or PAGAS-1.36). Until the next major release
3440 of GCC and GAS, versions of these tools designed to work with GDB-4.12
3441 can 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
3450 The "set remotedebug" option is now consistent between the mips remote
3451 target, remote targets using the gdb-specific protocol, UDI (AMD's
3452 debug protocol for the 29k) and the 88k bug monitor. It is now an
3453 integer specifying a debug level (normally 0 or 1, but 2 means more
3454 debugging info for the mips target).
3455
3456 * DEC Alpha native support
3457
3458 GDB now works on the DEC Alpha. GCC 2.4.5 does not produce usable
3459 debug info, but GDB works fairly well with the DEC compiler and should
3460 work with a future GCC release. See the README file for a few
3461 Alpha-specific notes.
3462
3463 * Preliminary thread implementation
3464
3465 GDB now has preliminary thread support for both SGI/Irix and LynxOS.
3466
3467 * LynxOS native and target support for 386
3468
3469 This release has been hosted on LynxOS 2.2, and also can be configured
3470 to remotely debug programs running under LynxOS (see gdb/gdbserver/README
3471 for details).
3472
3473 * Improvements in C++ mangling/demangling.
3474
3475 This release has much better g++ debugging, specifically in name
3476 mangling/demangling, virtual function calls, print virtual table,
3477 call methods, ...etc.
3478
3479 *** Changes in GDB-4.10:
3480
3481 * User visible changes:
3482
3483 Remote debugging using the GDB-specific (`target remote') protocol now
3484 supports the `load' command. This is only useful if you have some
3485 other way of getting the stub to the target system, and you can put it
3486 somewhere in memory where it won't get clobbered by the download.
3487
3488 Filename completion now works.
3489
3490 When run under emacs mode, the "info line" command now causes the
3491 arrow to point to the line specified. Also, "info line" prints
3492 addresses in symbolic form (as well as hex).
3493
3494 All vxworks based targets now support a user settable option, called
3495 vxworks-timeout. This option represents the number of seconds gdb
3496 should wait for responses to rpc's. You might want to use this if
3497 your vxworks target is, perhaps, a slow software simulator or happens
3498 to be on the far side of a thin network line.
3499
3500 * DEC alpha support
3501
3502 This release contains support for using a DEC alpha as a GDB host for
3503 cross debugging. Native alpha debugging is not supported yet.
3504
3505
3506 *** Changes in GDB-4.9:
3507
3508 * Testsuite
3509
3510 This is the first GDB release which is accompanied by a matching testsuite.
3511 The testsuite requires installation of dejagnu, which should be available
3512 via 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
3517 emphasize that it was written from the specifications in the C++ Annotated
3518 Reference Manual, not necessarily to be compatible with AT&T cfront. Despite
3519 disclaimers, it still generated too much confusion with users attempting to
3520 use gdb with AT&T cfront.
3521
3522 * Simulators
3523
3524 GDB now uses a standard remote interface to a simulator library.
3525 So far, the library contains simulators for the Zilog Z8001/2, the
3526 Hitachi H8/300, H8/500 and Super-H.
3527
3528 * New targets supported
3529
3530 H8/300 simulator h8300-hitachi-hms or h8300hms
3531 H8/500 simulator h8500-hitachi-hms or h8500hms
3532 SH simulator sh-hitachi-hms or sh
3533 Z8000 simulator z8k-zilog-none or z8ksim
3534 IDT MIPS board over serial line mips-idt-ecoff
3535
3536 Cross-debugging to GO32 targets is supported. It requires a custom
3537 version of the i386-stub.c module which is integrated with the
3538 GO32 memory extender.
3539
3540 * New remote protocols
3541
3542 MIPS remote debugging protocol.
3543
3544 * New source languages supported
3545
3546 This version includes preliminary support for Chill, a Pascal like language
3547 used by telecommunications companies. Chill support is also being integrated
3548 into 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
3555 GDB now supports HP PA-RISC machines running HPUX. A preliminary
3556 version of this support was available as a set of patches from the
3557 University of Utah. GDB does not support debugging of programs
3558 compiled with the HP compiler, because HP will not document their file
3559 format. 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
3562 Many problems in the preliminary version have been fixed.
3563
3564 * Faster and better demangling
3565
3566 We have improved template demangling and fixed numerous bugs in the GNU style
3567 demangler. It can now handle type modifiers such as `static' or `const'. Wide
3568 character types (wchar_t) are now supported. Demangling of each symbol is now
3569 only done once, and is cached when the symbol table for a file is read in.
3570 This results in a small increase in memory usage for C programs, a moderate
3571 increase in memory usage for C++ programs, and a fantastic speedup in
3572 symbol lookups.
3573
3574 `Cfront' style demangling still doesn't work with AT&T cfront. It was written
3575 from the specifications in the Annotated Reference Manual, which AT&T's
3576 compiler does not actually implement.
3577
3578 * G++ multiple inheritance compiler problem
3579
3580 In the 2.3.2 release of gcc/g++, how the compiler resolves multiple
3581 inheritance lattices was reworked to properly discover ambiguities. We
3582 recently found an example which causes this new algorithm to fail in a
3583 very subtle way, producing bad debug information for those classes.
3584 The file 'gcc.patch' (in this directory) can be applied to gcc to
3585 circumvent the problem. A future GCC release will contain a complete
3586 fix.
3587
3588 The previous G++ debug info problem (mentioned below for the gdb-4.7
3589 release) is fixed in gcc version 2.3.2.
3590
3591 * Improved configure script
3592
3593 The `configure' script will now attempt to guess your system type if
3594 you don't supply a host system type. The old scheme of supplying a
3595 host system triplet is preferable over using this. All the magic is
3596 done in the new `config.guess' script. Examine it for details.
3597
3598 We have also brought our configure script much more in line with the FSF's
3599 version. It now supports the --with-xxx options. In particular,
3600 `--with-minimal-bfd' can be used to make the GDB binary image smaller.
3601 The resulting GDB will not be able to read arbitrary object file formats --
3602 only the format ``expected'' to be used on the configured target system.
3603 We hope to make this the default in a future release.
3604
3605 * Documentation improvements
3606
3607 There's new internal documentation on how to modify GDB, and how to
3608 produce clean changes to the code. We implore people to read it
3609 before submitting changes.
3610
3611 The GDB manual uses new, sexy Texinfo conditionals, rather than arcane
3612 M4 macros. The new texinfo.tex is provided in this release. Pre-built
3613 `info' files are also provided. To build `info' files from scratch,
3614 you will need the latest `makeinfo' release, which will be available in
3615 a future texinfo-X.Y release.
3616
3617 *NOTE* The new texinfo.tex can cause old versions of TeX to hang.
3618 We're not sure exactly which versions have this problem, but it has
3619 been seen in 3.0. We highly recommend upgrading to TeX version 3.141
3620 or better. If that isn't possible, there is a patch in
3621 `texinfo/tex3patch' that will modify `texinfo/texinfo.tex' to work
3622 around this problem.
3623
3624 * New features
3625
3626 GDB now supports array constants that can be used in expressions typed in by
3627 the 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
3629 the target program.
3630
3631 The new directory `gdb/sparclite' contains a program that demonstrates
3632 how the sparc-stub.c remote stub runs on a Fujitsu SPARClite processor.
3633
3634 * New native hosts supported
3635
3636 HP/PA-RISC under HPUX using GNU tools hppa1.1-hp-hpux
3637 386 CPUs running SCO Unix 3.2v4 i386-unknown-sco3.2v4
3638
3639 * New targets supported
3640
3641 AMD 29k family via UDI a29k-amd-udi or udi29k
3642
3643 * New file formats supported
3644
3645 BFD now supports reading HP/PA-RISC executables (SOM file format?),
3646 HPUX core files, and SCO 3.2v2 core files.
3647
3648 * Major bug fixes
3649
3650 Attaching to processes now works again; thanks for the many bug reports.
3651
3652 We have also stomped on a bunch of core dumps caused by
3653 printf_filtered("%s") problems.
3654
3655 We eliminated a copyright problem on the rpc and ptrace header files
3656 for VxWorks, which was discovered at the last minute during the 4.7
3657 release. You should now be able to build a VxWorks GDB.
3658
3659 You can now interrupt gdb while an attached process is running. This
3660 will cause the attached process to stop, and give control back to GDB.
3661
3662 We fixed problems caused by using too many file descriptors
3663 for reading symbols from object files and libraries. This was
3664 especially a problem for programs that used many (~100) shared
3665 libraries.
3666
3667 The `step' command now only enters a subroutine if there is line number
3668 information for the subroutine. Otherwise it acts like the `next'
3669 command. Previously, `step' would enter subroutines if there was
3670 any debugging information about the routine. This avoids problems
3671 when using `cc -g1' on MIPS machines.
3672
3673 * Internal improvements
3674
3675 GDB's internal interfaces have been improved to make it easier to support
3676 debugging of multiple languages in the future.
3677
3678 GDB now uses a common structure for symbol information internally.
3679 Minimal symbols (derived from linkage symbols in object files), partial
3680 symbols (from a quick scan of debug information), and full symbols
3681 contain a common subset of information, making it easier to write
3682 shared code that handles any of them.
3683
3684 * New command line options
3685
3686 We now accept --silent as an alias for --quiet.
3687
3688 * Mmalloc licensing
3689
3690 The memory-mapped-malloc library is now licensed under the GNU Library
3691 General Public License.
3692
3693 *** Changes in GDB-4.7:
3694
3695 * Host/native/target split
3696
3697 GDB has had some major internal surgery to untangle the support for
3698 hosts and remote targets. Now, when you configure GDB for a remote
3699 target, it will no longer load in all of the support for debugging
3700 local programs on the host. When fully completed and tested, this will
3701 ensure that arbitrary host/target combinations are possible.
3702
3703 The primary conceptual shift is to separate the non-portable code in
3704 GDB into three categories. Host specific code is required any time GDB
3705 is compiled on that host, regardless of the target. Target specific
3706 code relates to the peculiarities of the target, but can be compiled on
3707 any host. Native specific code is everything else: it can only be
3708 built when the host and target are the same system. Child process
3709 handling and core file support are two common `native' examples.
3710
3711 GDB's use of /proc for controlling Unix child processes is now cleaner.
3712 It has been split out into a single module under the `target_ops' vector,
3713 plus two native-dependent functions for each system that uses /proc.
3714
3715 * New hosts supported
3716
3717 HP/Apollo 68k (under the BSD domain) m68k-apollo-bsd or apollo68bsd
3718 386 CPUs running various BSD ports i386-unknown-bsd or 386bsd
3719 386 CPUs running SCO Unix i386-unknown-scosysv322 or i386sco
3720
3721 * New targets supported
3722
3723 Fujitsu SPARClite sparclite-fujitsu-none or sparclite
3724 68030 and CPU32 m68030-*-*, m68332-*-*
3725
3726 * New native hosts supported
3727
3728 386 CPUs running various BSD ports i386-unknown-bsd or 386bsd
3729 (386bsd is not well tested yet)
3730 386 CPUs running SCO Unix i386-unknown-scosysv322 or sco
3731
3732 * New file formats supported
3733
3734 BFD now supports COFF files for the Zilog Z8000 microprocessor. It
3735 supports reading of `a.out.adobe' object files, which are an a.out
3736 format 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'.
3742 These were renamed for consistency. The old commands continue to work.
3743
3744 `info handle' is a new alias for `info signals'.
3745
3746 You can now define pre-command hooks, which attach arbitrary command
3747 scripts to any command. The commands in the hook will be executed
3748 prior to the user's command. You can also create a hook which will be
3749 executed whenever the program stops. See gdb.texinfo.
3750
3751 * C++ improvements
3752
3753 We now deal with Cfront style name mangling, and can even extract type
3754 info from mangled symbols. GDB can automatically figure out which
3755 symbol mangling style your C++ compiler uses.
3756
3757 Calling of methods and virtual functions has been improved as well.
3758
3759 * Major bug fixes
3760
3761 The crash that occured when debugging Sun Ansi-C compiled binaries is
3762 fixed. This was due to mishandling of the extra N_SO stabs output
3763 by the compiler.
3764
3765 We also finally got Ultrix 4.2 running in house, and fixed core file
3766 support, with help from a dozen people on the net.
3767
3768 John M. Farrell discovered that the reason that single-stepping was so
3769 slow on all of the Mips based platforms (primarily SGI and DEC) was
3770 that we were trying to demangle and lookup a symbol used for internal
3771 purposes on every instruction that was being stepped through. Changing
3772 the name of that symbol so that it couldn't be mistaken for a C++
3773 mangled symbol sped things up a great deal.
3774
3775 Rich Pixley sped up symbol lookups in general by getting much smarter
3776 about when C++ symbol mangling is necessary. This should make symbol
3777 completion (TAB on the command line) much faster. It's not as fast as
3778 we'd like, but it's significantly faster than gdb-4.6.
3779
3780 * AMD 29k support
3781
3782 A new user controllable variable 'call_scratch_address' can
3783 specify the location of a scratch area to be used when GDB
3784 calls a function in the target. This is necessary because the
3785 usual method of putting the scratch area on the stack does not work
3786 in systems that have separate instruction and data spaces.
3787
3788 We integrated changes to support the 29k UDI (Universal Debugger
3789 Interface), but discovered at the last minute that we didn't have all
3790 of the appropriate copyright paperwork. We are working with AMD to
3791 resolve this, and hope to have it available soon.
3792
3793 * Remote interfaces
3794
3795 We have sped up the remote serial line protocol, especially for targets
3796 with lots of registers. It now supports a new `expedited status' ('T')
3797 message which can be used in place of the existing 'S' status message.
3798 This allows the remote stub to send only the registers that GDB
3799 needs to make a quick decision about single-stepping or conditional
3800 breakpoints, eliminating the need to fetch the entire register set for
3801 each instruction being stepped through.
3802
3803 The GDB remote serial protocol now implements a write-through cache for
3804 registers, only re-reading the registers if the target has run.
3805
3806 There is also a new remote serial stub for SPARC processors. You can
3807 find it in gdb-4.7/gdb/sparc-stub.c. This was written to support the
3808 Fujitsu SPARClite processor, but will run on any stand-alone SPARC
3809 processor with a serial port.
3810
3811 * Configuration
3812
3813 Configure.in files have become much easier to read and modify. A new
3814 `table driven' format makes it more obvious what configurations are
3815 supported, and what files each one uses.
3816
3817 * Library changes
3818
3819 There is a new opcodes library which will eventually contain all of the
3820 disassembly routines and opcode tables. At present, it only contains
3821 Sparc and Z8000 routines. This will allow the assembler, debugger, and
3822 disassembler (binutils/objdump) to share these routines.
3823
3824 The libiberty library is now copylefted under the GNU Library General
3825 Public License. This allows more liberal use, and was done so libg++
3826 can use it. This makes no difference to GDB, since the Library License
3827 grants all the rights from the General Public License.
3828
3829 * Documentation
3830
3831 The file gdb-4.7/gdb/doc/stabs.texinfo is a (relatively) complete
3832 reference to the stabs symbol info used by the debugger. It is (as far
3833 as we know) the only published document on this fascinating topic. We
3834 encourage you to read it, compare it to the stabs information on your
3835 system, and send improvements on the document in general (to
3836 bug-gdb@prep.ai.mit.edu).
3837
3838 And, of course, many bugs have been fixed.
3839
3840
3841 *** Changes in GDB-4.6:
3842
3843 * Better support for C++ function names
3844
3845 GDB now accepts as input the "demangled form" of C++ overloaded function
3846 names 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
3848 single quotes. Examples are 'func (int, long)' and 'obj::operator==(obj&)'.
3849 Make use of command completion, it is your friend.
3850
3851 GDB also now accepts a variety of C++ mangled symbol formats. They are
3852 the GNU g++ style, the Cfront (ARM) style, and the Lucid (lcc) style.
3853 You can tell GDB which format to use by doing a 'set demangle-style {gnu,
3854 lucid, cfront, auto}'. 'gnu' is the default. Do a 'set demangle-style foo'
3855 for the list of formats.
3856
3857 * G++ symbol mangling problem
3858
3859 Recent versions of gcc have a bug in how they emit debugging information for
3860 C++ methods (when using dbx-style stabs). The file 'gcc.patch' (in this
3861 directory) can be applied to gcc to fix the problem. Alternatively, if you
3862 can't fix gcc, you can #define GCC_MANGLE_BUG when compling gdb/symtab.c. The
3863 usual symptom is difficulty with setting breakpoints on methods. GDB complains
3864 about the method being non-existent. (We believe that version 2.2.2 of GCC has
3865 this problem.)
3866
3867 * New 'maintenance' command
3868
3869 All of the commands related to hacking GDB internals have been moved out of
3870 the main command set, and now live behind the 'maintenance' command. This
3871 can 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
3880 The 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
3888 We 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
3890 be set, which will apply during the symbol reading. The ./.gdbinit is still
3891 read after argv processing.
3892
3893 * New hosts supported
3894
3895 Solaris-2.0 !!! sparc-sun-solaris2 or sun4sol2
3896
3897 GNU/Linux support i386-unknown-linux or linux
3898
3899 We are also including code to support the HP/PA running BSD and HPUX. This
3900 is almost guaranteed not to work, as we didn't have time to test or build it
3901 for this release. We are including it so that the more adventurous (or
3902 masochistic) of you can play with it. We also had major problems with the
3903 fact that the compiler that we got from HP doesn't support the -g option.
3904 It costs extra.
3905
3906 * New targets supported
3907
3908 Hitachi H8/300 h8300-hitachi-hms or h8300hms
3909
3910 * More smarts about finding #include files
3911
3912 GDB now remembers the compilation directory for all include files, and for
3913 all files from which C is generated (like yacc and lex sources). This
3914 greatly improves GDB's ability to find yacc/lex sources, and include files,
3915 especially if you are debugging your program from a directory different from
3916 the one that contains your sources.
3917
3918 We also fixed a bug which caused difficulty with listing and setting
3919 breakpoints in include files which contain C code. (In the past, you had to
3920 try twice in order to list an include file that you hadn't looked at before.)
3921
3922 * Interesting infernals change
3923
3924 GDB now deals with arbitrary numbers of sections, where the symbols for each
3925 section must be relocated relative to that section's landing place in the
3926 target's address space. This work was needed to support ELF with embedded
3927 stabs used by Solaris-2.0.
3928
3929 * Bug fixes (of course!)
3930
3931 There 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
3935 See the ChangeLog for details.
3936
3937 *** Changes in GDB-4.5:
3938
3939 * New machines supported (host and target)
3940
3941 IBM RS6000 running AIX rs6000-ibm-aix or rs6000
3942
3943 SGI Irix-4.x mips-sgi-irix4 or iris4
3944
3945 * New malloc package
3946
3947 GDB now uses a new memory manager called mmalloc, based on gmalloc.
3948 Mmalloc is capable of handling mutiple heaps of memory. It is also
3949 capable of saving a heap to a file, and then mapping it back in later.
3950 This can be used to greatly speedup the startup of GDB by using a
3951 pre-parsed symbol table which lives in a mmalloc managed heap. For
3952 more details, please read mmalloc/mmalloc.texi.
3953
3954 * info proc
3955
3956 The '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
3961 The code that reads MIPS symbol table format is now supported on all hosts.
3962 Thanks to MIPS for releasing the sym.h and symconst.h files to make this
3963 possible.
3964
3965 * File name changes for MS-DOS
3966
3967 Many files in the config directories have been renamed to make it easier to
3968 support GDB on MS-DOSe systems (which have very restrictive file name
3969 conventions :-( ). MS-DOSe host support (under DJ Delorie's GO32
3970 environment) is close to working but has some remaining problems. Note
3971 that debugging of DOS programs is not supported, due to limitations
3972 in the ``operating system'', but it can be used to host cross-debugging.
3973
3974 * Cross byte order fixes
3975
3976 Many fixes have been made to support cross debugging of Sparc and MIPS
3977 targets from hosts whose byte order differs.
3978
3979 * New -mapped and -readnow options
3980
3981 If memory-mapped files are available on your system through the 'mmap'
3982 system call, you can use the -mapped option on the `file' or
3983 `symbol-file' commands to cause GDB to write the symbols from your
3984 program into a reusable file. If the program you are debugging is
3985 called `/path/fred', the mapped symbol file will be `./fred.syms'.
3986 Future GDB debugging sessions will notice the presence of this file,
3987 and will quickly map in symbol information from it, rather than reading
3988 the symbol table from the executable program. Using the '-mapped'
3989 option in a GDB `file' or `symbol-file' command has the same effect as
3990 starting GDB with the '-mapped' command-line option.
3991
3992 You can cause GDB to read the entire symbol table immediately by using
3993 the '-readnow' option with any of the commands that load symbol table
3994 information (or on the GDB command line). This makes the command
3995 slower, but makes future operations faster.
3996
3997 The -mapped and -readnow options are typically combined in order to
3998 build a `fred.syms' file that contains complete symbol information.
3999 A simple GDB invocation to do nothing but build a `.syms' file for future
4000 use is:
4001
4002 gdb -batch -nx -mapped -readnow programname
4003
4004 The `.syms' file is specific to the host machine on which GDB is run.
4005 It holds an exact image of GDB's internal symbol table. It cannot be
4006 shared across multiple host platforms.
4007
4008 * longjmp() handling
4009
4010 GDB is now capable of stepping and nexting over longjmp(), _longjmp(), and
4011 siglongjmp() without losing control. This feature has not yet been ported to
4012 all systems. It currently works on many 386 platforms, all MIPS-based
4013 platforms (SGI, DECstation, etc), and Sun3/4.
4014
4015 * Solaris 2.0
4016
4017 Preliminary work has been put in to support the new Solaris OS from Sun. At
4018 this time, it can control and debug processes, but it is not capable of
4019 reading symbols.
4020
4021 * Bug fixes
4022
4023 As always, many many bug fixes. The major areas were with g++, and mipsread.
4024 People using the MIPS-based platforms should experience fewer mysterious
4025 crashes and trashed symbol tables.
4026
4027 *** Changes in GDB-4.4:
4028
4029 * New machines supported (host and target)
4030
4031 SCO Unix on i386 IBM PC clones i386-sco-sysv or i386sco
4032 (except core files)
4033 BSD Reno on Vax vax-dec-bsd
4034 Ultrix on Vax vax-dec-ultrix
4035
4036 * New machines supported (target)
4037
4038 AMD 29000 embedded, using EBMON a29k-none-none
4039
4040 * C++ support
4041
4042 GDB continues to improve its handling of C++. `References' work better.
4043 The demangler has also been improved, and now deals with symbols mangled as
4044 per the Annotated C++ Reference Guide.
4045
4046 GDB also now handles `stabs' symbol information embedded in MIPS
4047 `ecoff' symbol tables. Since the ecoff format was not easily
4048 extensible to handle new languages such as C++, this appeared to be a
4049 good way to put C++ debugging info into MIPS binaries. This option
4050 will be supported in the GNU C compiler, version 2, when it is
4051 released.
4052
4053 * New features for SVR4
4054
4055 GDB now handles SVR4 shared libraries, in the same fashion as SunOS
4056 shared libraries. Debugging dynamically linked programs should present
4057 only minor differences from debugging statically linked programs.
4058
4059 The `info proc' command will print out information about any process
4060 on an SVR4 system (including the one you are debugging). At the moment,
4061 it prints the address mappings of the process.
4062
4063 If you bring up GDB on another SVR4 system, please send mail to
4064 bug-gdb@prep.ai.mit.edu to let us know what changes were reqired (if any).
4065
4066 * Better dynamic linking support in SunOS
4067
4068 Reading symbols from shared libraries which contain debugging symbols
4069 now works properly. However, there remain issues such as automatic
4070 skipping of `transfer vector' code during function calls, which
4071 make it harder to debug code in a shared library, than to debug the
4072 same code linked statically.
4073
4074 * New Getopt
4075
4076 GDB is now using the latest `getopt' routines from the FSF. This
4077 version accepts the -- prefix for options with long names. GDB will
4078 continue to accept the old forms (-option and +option) as well.
4079 Various single letter abbreviations for options have been explicity
4080 added to the option table so that they won't get overshadowed in the
4081 future by other options that begin with the same letter.
4082
4083 * Bugs fixed
4084
4085 The `cleanup_undefined_types' bug that many of you noticed has been squashed.
4086 Many assorted bugs have been handled. Many more remain to be handled.
4087 See 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
4094 Amiga 3000 running Amix m68k-cbm-svr4 or amix
4095 NCR 3000 386 running SVR4 i386-ncr-svr4 or ncr3000
4096 Motorola Delta 88000 running Sys V m88k-motorola-sysv or delta88
4097
4098 * Almost SCO Unix support
4099
4100 We had hoped to support:
4101 SCO 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
4103 that it has problems with process groups that render gdb unusable. Sorry
4104 about that. I encourage people to fix it and post the fixes.
4105
4106 * Preliminary ELF and DWARF support
4107
4108 GDB can read ELF object files on System V Release 4, and can handle
4109 debugging records for C, in DWARF format, in ELF files. This support
4110 is preliminary. If you bring up GDB on another SVR4 system, please
4111 send mail to bug-gdb@prep.ai.mit.edu to let us know what changes were
4112 reqired (if any).
4113
4114 * New Readline
4115
4116 GDB now uses the latest `readline' library. One user-visible change
4117 is that two tabs will list possible command completions, which previously
4118 required typing M-? (meta-question mark, or ESC ?).
4119
4120 * Bugs fixed
4121
4122 The `stepi' bug that many of you noticed has been squashed.
4123 Many bugs in C++ have been handled. Many more remain to be handled.
4124 See the various ChangeLog files (primarily in gdb and bfd) for details.
4125
4126 * State of the MIPS world (in case you wondered):
4127
4128 GDB can understand the symbol tables emitted by the compilers
4129 supplied by most vendors of MIPS-based machines, including DEC. These
4130 symbol tables are in a format that essentially nobody else uses.
4131
4132 Some versions of gcc come with an assembler post-processor called
4133 mips-tfile. This program is required if you want to do source-level
4134 debugging of gcc-compiled programs. I believe FSF does not ship
4135 mips-tfile with gcc version 1, but it will eventually come with gcc
4136 version 2.
4137
4138 Debugging of g++ output remains a problem. g++ version 1.xx does not
4139 really support it at all. (If you're lucky, you should be able to get
4140 line numbers and stack traces to work, but no parameters or local
4141 variables.) With some work it should be possible to improve the
4142 situation somewhat.
4143
4144 When gcc version 2 is released, you will have somewhat better luck.
4145 However, even then you will get confusing results for inheritance and
4146 methods.
4147
4148 We will eventually provide full debugging of g++ output on
4149 DECstations. This will probably involve some kind of stabs-in-ecoff
4150 encapulation, but the details have not been worked out yet.
4151
4152
4153 *** Changes in GDB-4.2:
4154
4155 * Improved configuration
4156
4157 Only one copy of `configure' exists now, and it is not self-modifying.
4158 Porting BFD is simpler.
4159
4160 * Stepping improved
4161
4162 The `step' and `next' commands now only stop at the first instruction
4163 of a source line. This prevents the multiple stops that used to occur
4164 in switch statements, for-loops, etc. `Step' continues to stop if a
4165 function that has debugging information is called within the line.
4166
4167 * Bug fixing
4168
4169 Lots of small bugs fixed. More remain.
4170
4171 * New host supported (not target)
4172
4173 Intel 386 PC clone running Mach i386-none-mach
4174
4175
4176 *** Changes in GDB-4.1:
4177
4178 * Multiple source language support
4179
4180 GDB now has internal scaffolding to handle several source languages.
4181 It determines the type of each source file from its filename extension,
4182 and will switch expression parsing and number formatting to match the
4183 language of the function in the currently selected stack frame.
4184 You 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
4189 GDB now has preliminary support for the GNU Modula-2 compiler,
4190 currently under development at the State University of New York at
4191 Buffalo. Development of both GDB and the GNU Modula-2 compiler will
4192 continue through the fall of 1991 and into 1992.
4193
4194 Other Modula-2 compilers are currently not supported, and attempting to
4195 debug programs compiled with them will likely result in an error as the
4196 symbol table is read. Feel free to work on it, though!
4197
4198 There are hooks in GDB for strict type checking and range checking,
4199 in the `Modula-2 philosophy', but they do not currently work.
4200
4201 * set write on/off
4202
4203 GDB can now write to executable and core files (e.g. patch
4204 a variable's value). You must turn this switch on, specify
4205 the file ("exec foo" or "core foo"), *then* modify it, e.g.
4206 by assigning a new value to a variable. Modifications take
4207 effect immediately.
4208
4209 * Automatic SunOS shared library reading
4210
4211 When you run your program, GDB automatically determines where its
4212 shared libraries (if any) have been loaded, and reads their symbols.
4213 The `share' command is no longer needed. This also works when
4214 examining core files.
4215
4216 * set listsize
4217
4218 You can specify the number of lines that the `list' command shows.
4219 The default is 10.
4220
4221 * New machines supported (host and target)
4222
4223 SGI Iris (MIPS) running Irix V3: mips-sgi-irix or iris
4224 Sony NEWS (68K) running NEWSOS 3.x: m68k-sony-sysv or news
4225 Ultracomputer (29K) running Sym1: a29k-nyu-sym1 or ultra3
4226
4227 * New hosts supported (not targets)
4228
4229 IBM RT/PC: romp-ibm-aix or rtpc
4230
4231 * New targets supported (not hosts)
4232
4233 AMD 29000 embedded with COFF a29k-none-coff
4234 AMD 29000 embedded with a.out a29k-none-aout
4235 Ultracomputer remote kernel debug a29k-nyu-kern
4236
4237 * New remote interfaces
4238
4239 AMD 29000 Adapt
4240 AMD 29000 Minimon
4241
4242
4243 *** Changes in GDB-4.0:
4244
4245 * New Facilities
4246
4247 Wide output is wrapped at good places to make the output more readable.
4248
4249 Gdb now supports cross-debugging from a host machine of one type to a
4250 target machine of another type. Communication with the target system
4251 is over serial lines. The ``target'' command handles connecting to the
4252 remote system; the ``load'' command will download a program into the
4253 remote system. Serial stubs for the m68k and i386 are provided. Gdb
4254 also supports debugging of realtime processes running under VxWorks,
4255 using SunRPC Remote Procedure Calls over TCP/IP to talk to a debugger
4256 stub on the target system.
4257
4258 New CPUs supported include the AMD 29000 and Intel 960.
4259
4260 GDB now reads object files and symbol tables via a ``binary file''
4261 library, which allows a single copy of GDB to debug programs of multiple
4262 object file types such as a.out and coff.
4263
4264 There is now a GDB reference card in "doc/refcard.tex". (Make targets
4265 refcard.dvi and refcard.ps are available to format it).
4266
4267
4268 * Control-Variable user interface simplified
4269
4270 All variables that control the operation of the debugger can be set
4271 by the ``set'' command, and displayed by the ``show'' command.
4272
4273 For example, ``set prompt new-gdb=>'' will change your prompt to new-gdb=>.
4274 ``Show prompt'' produces the response:
4275 Gdb's prompt is new-gdb=>.
4276
4277 What follows are the NEW set commands. The command ``help set'' will
4278 print a complete list of old and new set commands. ``help set FOO''
4279 will give a longer description of the variable FOO. ``show'' will show
4280 all of the variable descriptions and their current settings.
4281
4282 confirm 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
4286 editing 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
4292 history 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
4297 history 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
4301 history 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
4305 history 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
4309 radix 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
4313 height 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
4318 width 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
4323 Note: ``set screensize'' is obsolete. Use ``set height'' and
4324 ``set width'' instead.
4325
4326 print 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
4331 print array on/off: Prettyprint arrays. New convenient format! Default
4332 is OFF.
4333
4334 print demangle on/off: Print C++ symbols in "source" form if on,
4335 "raw" form if off.
4336
4337 print asm-demangle on/off: Same, for assembler level printouts
4338 like instructions.
4339
4340 print vtbl on/off: Prettyprint C++ virtual function tables. Default is OFF.
4341
4342
4343 * Support for Epoch Environment.
4344
4345 The epoch environment is a version of Emacs v18 with windowing. One
4346 new command, ``inspect'', is identical to ``print'', except that if you
4347 are running in the epoch environment, the value is printed in its own
4348 window.
4349
4350
4351 * Support for Shared Libraries
4352
4353 GDB can now debug programs and core files that use SunOS shared libraries.
4354 Symbols from a shared library cannot be referenced
4355 before the shared library has been linked with the program (this
4356 happens after you type ``run'' and before the function main() is entered).
4357 At any time after this linking (including when examining core files
4358 from dynamically linked programs), gdb reads the symbols from each
4359 shared library when you type the ``sharedlibrary'' command.
4360 It can be abbreviated ``share''.
4361
4362 sharedlibrary 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
4366 info sharedlibrary: Status of loaded shared libraries.
4367
4368
4369 * Watchpoints
4370
4371 A watchpoint stops execution of a program whenever the value of an
4372 expression changes. Checking for this slows down execution
4373 tremendously whenever you are in the scope of the expression, but is
4374 quite useful for catching tough ``bit-spreader'' or pointer misuse
4375 problems. Some machines such as the 386 have hardware for doing this
4376 more quickly, and future versions of gdb will use this hardware.
4377
4378 watch EXP: Set a watchpoint (breakpoint) for an expression.
4379
4380 info watchpoints: Information about your watchpoints.
4381
4382 delete N: Deletes watchpoint number N (same as breakpoints).
4383 disable N: Temporarily turns off watchpoint number N (same as breakpoints).
4384 enable N: Re-enables watchpoint number N (same as breakpoints).
4385
4386
4387 * C++ multiple inheritance
4388
4389 When used with a GCC version 2 compiler, GDB supports multiple inheritance
4390 for C++ programs.
4391
4392 * C++ exception handling
4393
4394 Gdb now supports limited C++ exception handling. Besides the existing
4395 ability to breakpoint on an exception handler, gdb can breakpoint on
4396 the raising of an exception (before the stack is peeled back to the
4397 handler's context).
4398
4399 catch 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
4403 info catch: Lists all exceptions which may be caught in the
4404 current stack frame.
4405
4406
4407 * Minor command changes
4408
4409 The command ``call func (arg, arg, ...)'' now acts like the print
4410 command, except it does not print or save a value if the function's result
4411 is void. This is similar to dbx usage.
4412
4413 The ``up'' and ``down'' commands now always print the frame they end up
4414 at; ``up-silently'' and `down-silently'' can be used in scripts to change
4415 frames without printing.
4416
4417 * New directory command
4418
4419 'dir' now adds directories to the FRONT of the source search path.
4420 The path starts off empty. Source files that contain debug information
4421 about the directory in which they were compiled can be found even
4422 with an empty path; Sun CC and GCC include this information. If GDB can't
4423 find your source file in the current directory, type "dir .".
4424
4425 * Configuring GDB for compilation
4426
4427 For normal use, type ``./configure host''. See README or gdb.texinfo
4428 for more details.
4429
4430 GDB now handles cross debugging. If you are remotely debugging between
4431 two different machines, type ``./configure host -target=targ''.
4432 Host is the machine where GDB will run; targ is the machine
4433 where the program that you are debugging will run.
This page took 0.114371 seconds and 5 git commands to generate.