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