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