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