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