From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29824 invoked by alias); 19 Nov 2001 18:57:10 -0000 Mailing-List: contact insight-help@sourceware.cygnus.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sources.redhat.com Received: (qmail 29764 invoked from network); 19 Nov 2001 18:56:57 -0000 Message-ID: <3BF955F9.10603@cygnus.com> Date: Tue, 02 Oct 2001 16:04:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:0.9.3) Gecko/20011020 X-Accept-Language: en-us MIME-Version: 1.0 To: Andrew Cagney Cc: gdb@sources.redhat.com, insight@sources.redhat.com Subject: Re: Doh! gdb-5.0.94 available References: <3BF934BD.3040502@cygnus.com> Content-Type: multipart/mixed; boundary="------------060702010803020902090605" X-SW-Source: 2001-q4/txt/msg00027.txt.bz2 This is a multi-part message in MIME format. --------------060702010803020902090605 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 478 For reference, attached are the raw differences between gdb-5.0.93 (the first one, not the second one) and gdb-5.0.94. Given I've foobar'd this, I'll leave rolling out 5.1 for an extra 24 hours (as was pointed out privately, it is otherwize not exactly fair). That makes it something like 2001-11-21 00:01 GMT. I've also edited my release notes to mention that each mini-release should also include a set of diffs. Hmm, yes, I'll submit a gdbint.texinfo patch. Andrew --------------060702010803020902090605 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 8bit Content-Disposition: inline; filename="diffs" Content-length: 58425 diff -d -r -c gdb-5.0.93/bfd/ChangeLog gdb-5.0.94/bfd/ChangeLog *** gdb-5.0.93/bfd/ChangeLog Tue Oct 30 21:30:20 2001 --- gdb-5.0.94/bfd/ChangeLog Sun Nov 18 14:05:55 2001 *************** *** 1,3 **** --- 1,8 ---- + 2001-11-18 Andrew Cagney + + * po/Make-in (distclean): Don't delete SRC-POTFILES.in or + BLD-POTFILES.in. Work around bug in BFD's distclean. + 2001-10-30 Andrew Cagney * configure, op/SRC-POTFILES.in, po/bfd.pot: Regenerate. Only in gdb-5.0.94/bfd/po: BLD-POTFILES.in diff -d -r -c gdb-5.0.93/bfd/po/Make-in gdb-5.0.94/bfd/po/Make-in *** gdb-5.0.93/bfd/po/Make-in Sun Jun 10 01:21:00 2001 --- gdb-5.0.94/bfd/po/Make-in Sun Nov 18 14:05:56 2001 *************** *** 203,211 **** clean: mostlyclean distclean: clean rm -f Makefile Makefile.in *.mo *.msg *.cat *.cat.m ! rm -f SRC-POTFILES BLD-POTFILES SRC-POTFILES.in BLD-POTFILES.in maintainer-clean: distclean @echo "This command is intended for maintainers to use;" --- 203,217 ---- clean: mostlyclean + # FIXME: cagney/2001-11-18: When configuring / building in the source + # directory, the rule below would delete SRC-POTFILES.in and + # BLD-POTFILES.in from that source directory. While a make rebuilds + # these files it also puts them in the source directory and that can + # be read-only. + distclean: clean rm -f Makefile Makefile.in *.mo *.msg *.cat *.cat.m ! rm -f SRC-POTFILES BLD-POTFILES maintainer-clean: distclean @echo "This command is intended for maintainers to use;" Only in gdb-5.0.94/bfd/po: SRC-POTFILES.in diff -d -r -c gdb-5.0.93/djunpack.bat gdb-5.0.94/djunpack.bat *** gdb-5.0.93/djunpack.bat Sun Nov 11 20:22:21 2001 --- gdb-5.0.94/djunpack.bat Sun Nov 18 14:42:06 2001 *************** *** 17,24 **** Rem The following 2 lines need to be changed with each new GDB release, to Rem be identical to the name of the top-level directory where the GDB Rem distribution unpacks itself. ! set GDBVER=gdb-5.0.93 ! if "%GDBVER%"=="gdb-5.0.93" GoTo EnvOk Rem If their environment space is too small, re-exec with a larger one command.com /e:4096 /c %0 %1 GoTo End --- 17,24 ---- Rem The following 2 lines need to be changed with each new GDB release, to Rem be identical to the name of the top-level directory where the GDB Rem distribution unpacks itself. ! set GDBVER=gdb-5.1 ! if "%GDBVER%"=="gdb-5.1" GoTo EnvOk Rem If their environment space is too small, re-exec with a larger one command.com /e:4096 /c %0 %1 GoTo End diff -d -r -c gdb-5.0.93/gdb/ChangeLog gdb-5.0.94/gdb/ChangeLog *** gdb-5.0.93/gdb/ChangeLog Sun Nov 11 13:35:19 2001 --- gdb-5.0.94/gdb/ChangeLog Sun Nov 18 14:25:54 2001 *************** *** 1,3 **** --- 1,21 ---- + 2001-11-18 GDB Administrator + + * version.in: Bump version to 5.1. + + 2001-11-17 Andrew Cagney + + * Makefile.in (distclean): Explicitly delete Makefile et.al. in + gdbserver sub directory. + + 2001-11-17 Andrew Cagney + + * README: Mention need for alloca(). Mention problems with + alpha-dec-osf4.0e. Clarify that comments refer to GDB 5.1. + + 2001-11-11 GDB Administrator + + * version.in: Bump to 5.0.93-0000-00-00-cvs. + 2001-11-11 Andrew Cagney * README (alpha-dec-osf5.1): Mention -DUSE_LDR_ROUTINES. diff -d -r -c gdb-5.0.93/gdb/Makefile.in gdb-5.0.94/gdb/Makefile.in *** gdb-5.0.93/gdb/Makefile.in Sat Jul 28 15:48:15 2001 --- gdb-5.0.94/gdb/Makefile.in Sun Nov 18 00:08:36 2001 *************** *** 944,951 **** --- 944,956 ---- # I believe this is wrong; the makefile standards for distclean just # describe removing files; the only sort of "re-create a distribution" # functionality described is if the distributed files are unmodified. + # NB: While GDBSERVER might be configured on native systems, it isn't + # always included in SUBDIRS. Remove the gdbserver files explictly. distclean: clean @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(SUBDIRS)" subdir_do + rm -f gdbserver/config.status gdbserver/config.log + rm -f gdbserver/tm.h gdbserver/xm.h gdbserver/nm.h + rm -f gdbserver/Makefile gdbserver/config.cache rm -f nm.h tm.h xm.h config.status config.h stamp-h .gdbinit rm -f y.output yacc.acts yacc.tmp y.tab.h rm -f config.log config.cache diff -d -r -c gdb-5.0.93/gdb/README gdb-5.0.94/gdb/README *** gdb-5.0.93/gdb/README Sun Nov 11 13:35:19 2001 --- gdb-5.0.94/gdb/README Sat Nov 17 23:42:41 2001 *************** *** 432,466 **** hppa2.0-hp-hpux10.20 ! Due to a problem with libiberty/regex.c, GDB does not build on HP/UX ! 10.20 when using the HP supplied compiler. ! Due to bit rot problems, GDB does not work on HP/UX 10.20 when built ! with GCC. hppa2.0w-hp-hpux11.00 ! Due to a problem with ltconfig and long argument lines, GDB does not ! configure on HP/UX 11.00. alpha-dec-osf5.1 ! GDB has a number of problems on this platform (Ref PR gdb/237). A GDB ! built with ``CC="cc -DUSE_LDR_ROUTINES"'' is reported to be more ! reliable. sparcv9-sun-solaris2.8 ! There are known problems with GCC 3.0.x for the 64 bit sparc target ! (bad code gen). You could try a development version of GCC. i586-sco-sysv5uw7.1.1 ! There are known problems with GDB's thread support on this platform. Remote debugging --- 432,480 ---- hppa2.0-hp-hpux10.20 ! Due to a problem (conflicting types) with libiberty/regex.c, GDB 5.1 ! does not build on HP/UX 10.20 when using the HP supplied compiler. ! Due to bit rot, GDB 5.1 does not work on HP/UX 10.20 when built with ! GCC. hppa2.0w-hp-hpux11.00 ! Due to a problem with ltconfig and long argument lines, GDB 5.1 does ! not configure on HP/UX 11.00. alpha-dec-osf5.1 ! GDB 5.1 has a number of problems on this platform (Ref PR gdb/237). A ! GDB 5.1 built with ``CC="cc -DUSE_LDR_ROUTINES"'' is reported to work ! much better. ! ! ! alpha-dec-osf4.0e ! ! GDB 5.1 is known to have problems on this platform (encounters an ! internal error in the symbol table reader). sparcv9-sun-solaris2.8 ! There are known problems with building GDB 5.1 using GCC 3.0.x for the ! 64 bit SPARC target (bad code gen). You could try a development ! version of GCC. i586-sco-sysv5uw7.1.1 ! There are known problems with GDB 5.1's thread support on this ! platform. Non-threaded programs should work. ! ! ! *-*-* ! ! GDB 5.1 assumes that the host C compiler implemends alloca(). GCC is ! one such compiler. This problem should be fixed on the trunk. Remote debugging diff -d -r -c gdb-5.0.93/gdb/doc/GDBvn.texi gdb-5.0.94/gdb/doc/GDBvn.texi *** gdb-5.0.93/gdb/doc/GDBvn.texi Sun Nov 11 20:22:00 2001 --- gdb-5.0.94/gdb/doc/GDBvn.texi Sun Nov 18 14:41:37 2001 *************** *** 1 **** ! @set GDBVN 5.0.93 --- 1 ---- ! @set GDBVN 5.1 diff -d -r -c gdb-5.0.93/gdb/doc/gdb.info gdb-5.0.94/gdb/doc/gdb.info *** gdb-5.0.93/gdb/doc/gdb.info Sun Nov 11 20:22:01 2001 --- gdb-5.0.94/gdb/doc/gdb.info Sun Nov 18 14:41:38 2001 *************** *** 8,14 **** This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.0.93. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 --- 8,14 ---- This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.1. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 *************** *** 27,324 ****  Indirect: ! gdb.info-1: 1072 ! gdb.info-2: 50697 ! gdb.info-3: 95994 ! gdb.info-4: 144711 ! gdb.info-5: 194590 ! gdb.info-6: 243414 ! gdb.info-7: 285294 ! gdb.info-8: 320599 ! gdb.info-9: 369694 ! gdb.info-10: 419048 ! gdb.info-11: 468385 ! gdb.info-12: 509463 ! gdb.info-13: 559294 ! gdb.info-14: 607217 ! gdb.info-15: 620451  Tag Table: (Indirect) ! Node: Top1072 ! Node: Summary2939 ! Node: Free Software4500 ! Node: Contributors5238 ! Node: Sample Session11478 ! Node: Invocation18350 ! Node: Invoking GDB18823 ! Node: File Options20766 ! Node: Mode Options24096 ! Ref: Mode Options-Footnote-129437 ! Node: Quitting GDB29583 ! Node: Shell Commands30466 ! Node: Commands31280 ! Node: Command Syntax31917 ! Node: Completion33776 ! Node: Help38106 ! Node: Running43354 ! Node: Compilation44463 ! Node: Starting46259 ! Node: Arguments49432 ! Node: Environment50697 ! Node: Working Directory53961 ! Node: Input/Output54701 ! Node: Attach56306 ! Node: Kill Process58734 ! Node: Threads59692 ! Node: Processes65581 ! Node: Stopping68567 ! Node: Breakpoints69713 ! Node: Set Breaks72916 ! Node: Set Watchpoints82132 ! Node: Set Catchpoints88157 ! Node: Delete Breaks91625 ! Node: Disabling93307 ! Node: Conditions95994 ! Node: Break Commands100934 ! Node: Breakpoint Menus103810 ! Node: Error in Breakpoints105515 ! Node: Continuing and Stepping107048 ! Node: Signals115181 ! Node: Thread Stops119309 ! Node: Stack122630 ! Node: Frames124104 ! Node: Backtrace126827 ! Node: Selection128559 ! Node: Frame Info131295 ! Node: Source133620 ! Node: List134570 ! Node: Search138096 ! Node: Source Path138899 ! Node: Machine Code141716 ! Node: Data144711 ! Node: Expressions146655 ! Node: Variables148582 ! Node: Arrays152237 ! Node: Output Formats154761 ! Ref: Output Formats-Footnote-1156775 ! Node: Memory156932 ! Node: Auto Display161208 ! Node: Print Settings164976 ! Node: Value History175071 ! Node: Convenience Vars177482 ! Node: Registers180468 ! Ref: Registers-Footnote-1184112 ! Node: Floating Point Hardware184507 ! Node: Memory Region Attributes185043 ! Node: Tracepoints188143 ! Node: Set Tracepoints189659 ! Node: Create and Delete Tracepoints190851 ! Node: Enable and Disable Tracepoints192531 ! Node: Tracepoint Passcounts193216 ! Node: Tracepoint Actions194590 ! Node: Listing Tracepoints197603 ! Node: Starting and Stopping Trace Experiment198712 ! Node: Analyze Collected Data199876 ! Node: tfind201174 ! Node: tdump205566 ! Node: save-tracepoints207234 ! Node: Tracepoint Variables207642 ! Node: Languages208652 ! Node: Setting209761 ! Node: Filenames211456 ! Node: Manually212193 ! Node: Automatically213391 ! Node: Show214442 ! Node: Checks215740 ! Node: Type Checking217096 ! Node: Range Checking219794 ! Node: Support222160 ! Node: C223096 ! Node: C Operators224251 ! Node: C Constants228617 ! Node: C plus plus expressions231089 ! Node: C Defaults234671 ! Node: C Checks235339 ! Node: Debugging C236047 ! Node: Debugging C plus plus236552 ! Node: Modula-2239541 ! Node: M2 Operators240442 ! Node: Built-In Func/Proc243414 ! Node: M2 Constants246178 ! Node: M2 Defaults247767 ! Node: Deviations248361 ! Node: M2 Checks249448 ! Node: M2 Scope250248 ! Node: GDB/M2251257 ! Node: Chill252154 ! Node: How modes are displayed252858 ! Node: Locations256696 ! Node: Values and their Operations258784 ! Ref: Values and their Operations-Footnote-1263662 ! Node: Chill type and range checks263842 ! Node: Chill defaults264807 ! Node: Symbols265385 ! Node: Altering274438 ! Node: Assignment275404 ! Node: Jumping278502 ! Node: Signaling280652 ! Node: Returning281773 ! Node: Calling282965 ! Node: Patching283759 ! Node: GDB Files284829 ! Node: Files285294 ! Node: Symbol Errors296463 ! Node: Targets300043 ! Node: Active Targets301049 ! Node: Target Commands302621 ! Node: Byte Order306978 ! Node: Remote307962 ! Node: Remote Serial308955 ! Node: Stub Contents311548 ! Node: Bootstrapping313650 ! Node: Debug Session317450 ! Node: Protocol320599 ! Node: Server353795 ! Ref: Server-Footnote-1357721 ! Node: NetWare357841 ! Node: KOD359800 ! Node: Configurations360920 ! Node: Native361677 ! Node: HP-UX362020 ! Node: SVR4 Process Information362302 ! Node: DJGPP Native363735 ! Node: Embedded OS369225 ! Node: VxWorks369694 ! Node: VxWorks Connection371896 ! Node: VxWorks Download372815 ! Node: VxWorks Attach374535 ! Node: Embedded Processors374918 ! Node: A29K Embedded375891 ! Node: A29K UDI376587 ! Node: A29K EB29K377428 ! Node: Comms (EB29K)378077 ! Node: gdb-EB29K381276 ! Node: Remote Log382643 ! Node: ARM383119 ! Node: H8/300383485 ! Node: Hitachi Boards384969 ! Node: Hitachi ICE389390 ! Node: Hitachi Special390170 ! Node: H8/500390604 ! Node: i960390962 ! Node: Nindy Startup392095 ! Node: Nindy Options392767 ! Node: Nindy Reset394368 ! Node: M32R/D394739 ! Node: M68K394916 ! Node: M88K395704 ! Node: MIPS Embedded395878 ! Node: PowerPC400360 ! Node: PA400674 ! Node: SH400939 ! Node: Sparclet401383 ! Node: Sparclet File402842 ! Node: Sparclet Connection403707 ! Node: Sparclet Download404170 ! Node: Sparclet Execution405204 ! Node: Sparclite405780 ! Node: ST2000406139 ! Node: Z8000407666 ! Node: Architectures409021 ! Node: A29K409311 ! Node: Alpha410122 ! Node: MIPS410244 ! Node: Controlling GDB411214 ! Node: Prompt411912 ! Node: Editing412684 ! Node: History413453 ! Node: Screen Size416186 ! Node: Numbers417646 ! Node: Messages/Warnings419048 ! Node: Debugging Output421081 ! Node: Sequences423142 ! Node: Define423720 ! Node: Hooks426886 ! Node: Command Files429088 ! Ref: Command Files-Footnote-1431223 ! Node: Output431332 ! Node: TUI433739 ! Node: TUI Overview434411 ! Node: TUI Keys436069 ! Node: TUI Commands438004 ! Node: TUI Configuration439309 ! Node: Emacs440777 ! Node: Annotations446727 ! Node: Annotations Overview447851 ! Node: Server Prefix449633 ! Node: Value Annotations450282 ! Node: Frame Annotations453367 ! Node: Displays457020 ! Node: Prompting457965 ! Node: Errors459470 ! Node: Breakpoint Info460359 ! Node: Invalidation461490 ! Node: Annotations for Running461969 ! Node: Source Annotations463482 ! Node: TODO464413 ! Node: GDB/MI464995 ! Node: GDB/MI Command Syntax466615 ! Node: GDB/MI Input Syntax466845 ! Node: GDB/MI Output Syntax468385 ! Node: GDB/MI Simple Examples471823 ! Node: GDB/MI Compatibility with CLI472925 ! Node: GDB/MI Output Records473649 ! Node: GDB/MI Result Records473928 ! Node: GDB/MI Stream Records474548 ! Node: GDB/MI Out-of-band Records475678 ! Node: GDB/MI Command Description Format476173 ! Node: GDB/MI Breakpoint Table Commands477156 ! Node: GDB/MI Data Manipulation492343 ! Node: GDB/MI Program Control509463 ! Node: GDB/MI Miscellaneous Commands521655 ! Node: GDB/MI Stack Manipulation523470 ! Node: GDB/MI Symbol Query530920 ! Node: GDB/MI Target Manipulation533766 ! Node: GDB/MI Thread Commands540582 ! Node: GDB/MI Tracepoint Commands542676 ! Node: GDB/MI Variable Objects542913 ! Node: GDB Bugs550421 ! Node: Bug Criteria551144 ! Node: Bug Reporting552014 ! Node: Command Line Editing559294 ! Node: Introduction and Notation559959 ! Node: Readline Interaction561570 ! Node: Readline Bare Essentials562758 ! Node: Readline Movement Commands564534 ! Node: Readline Killing Commands565486 ! Node: Readline Arguments567387 ! Node: Searching568357 ! Node: Readline Init File570195 ! Node: Readline Init File Syntax571251 ! Node: Conditional Init Constructs580509 ! Node: Sample Init File582943 ! Node: Bindable Readline Commands586108 ! Node: Commands For Moving587147 ! Node: Commands For History587991 ! Node: Commands For Text590703 ! Node: Commands For Killing592701 ! Node: Numeric Arguments594663 ! Node: Commands For Completion595785 ! Node: Keyboard Macros597528 ! Node: Miscellaneous Commands598082 ! Node: Readline vi Mode600881 ! Node: Using History Interactively601724 ! Node: History Interaction602120 ! Node: Event Designators603535 ! Node: Word Designators604458 ! Node: Modifiers606083 ! Node: Formatting Documentation607217 ! Ref: Formatting Documentation-Footnote-1610530 ! Node: Installing GDB610600 ! Node: Separate Objdir614116 ! Node: Config Names616673 ! Node: Configure Options618119 ! Node: Index620451  End Tag Table --- 27,324 ----  Indirect: ! gdb.info-1: 1069 ! gdb.info-2: 50688 ! gdb.info-3: 95985 ! gdb.info-4: 144702 ! gdb.info-5: 194581 ! gdb.info-6: 243405 ! gdb.info-7: 285285 ! gdb.info-8: 320590 ! gdb.info-9: 369685 ! gdb.info-10: 419036 ! gdb.info-11: 468373 ! gdb.info-12: 509451 ! gdb.info-13: 559282 ! gdb.info-14: 607205 ! gdb.info-15: 620349  Tag Table: (Indirect) ! Node: Top1069 ! Node: Summary2933 ! Node: Free Software4494 ! Node: Contributors5232 ! Node: Sample Session11472 ! Node: Invocation18341 ! Node: Invoking GDB18814 ! Node: File Options20757 ! Node: Mode Options24087 ! Ref: Mode Options-Footnote-129428 ! Node: Quitting GDB29574 ! Node: Shell Commands30457 ! Node: Commands31271 ! Node: Command Syntax31908 ! Node: Completion33767 ! Node: Help38097 ! Node: Running43345 ! Node: Compilation44454 ! Node: Starting46250 ! Node: Arguments49423 ! Node: Environment50688 ! Node: Working Directory53952 ! Node: Input/Output54692 ! Node: Attach56297 ! Node: Kill Process58725 ! Node: Threads59683 ! Node: Processes65572 ! Node: Stopping68558 ! Node: Breakpoints69704 ! Node: Set Breaks72907 ! Node: Set Watchpoints82123 ! Node: Set Catchpoints88148 ! Node: Delete Breaks91616 ! Node: Disabling93298 ! Node: Conditions95985 ! Node: Break Commands100925 ! Node: Breakpoint Menus103801 ! Node: Error in Breakpoints105506 ! Node: Continuing and Stepping107039 ! Node: Signals115172 ! Node: Thread Stops119300 ! Node: Stack122621 ! Node: Frames124095 ! Node: Backtrace126818 ! Node: Selection128550 ! Node: Frame Info131286 ! Node: Source133611 ! Node: List134561 ! Node: Search138087 ! Node: Source Path138890 ! Node: Machine Code141707 ! Node: Data144702 ! Node: Expressions146646 ! Node: Variables148573 ! Node: Arrays152228 ! Node: Output Formats154752 ! Ref: Output Formats-Footnote-1156766 ! Node: Memory156923 ! Node: Auto Display161199 ! Node: Print Settings164967 ! Node: Value History175062 ! Node: Convenience Vars177473 ! Node: Registers180459 ! Ref: Registers-Footnote-1184103 ! Node: Floating Point Hardware184498 ! Node: Memory Region Attributes185034 ! Node: Tracepoints188134 ! Node: Set Tracepoints189650 ! Node: Create and Delete Tracepoints190842 ! Node: Enable and Disable Tracepoints192522 ! Node: Tracepoint Passcounts193207 ! Node: Tracepoint Actions194581 ! Node: Listing Tracepoints197594 ! Node: Starting and Stopping Trace Experiment198703 ! Node: Analyze Collected Data199867 ! Node: tfind201165 ! Node: tdump205557 ! Node: save-tracepoints207225 ! Node: Tracepoint Variables207633 ! Node: Languages208643 ! Node: Setting209752 ! Node: Filenames211447 ! Node: Manually212184 ! Node: Automatically213382 ! Node: Show214433 ! Node: Checks215731 ! Node: Type Checking217087 ! Node: Range Checking219785 ! Node: Support222151 ! Node: C223087 ! Node: C Operators224242 ! Node: C Constants228608 ! Node: C plus plus expressions231080 ! Node: C Defaults234662 ! Node: C Checks235330 ! Node: Debugging C236038 ! Node: Debugging C plus plus236543 ! Node: Modula-2239532 ! Node: M2 Operators240433 ! Node: Built-In Func/Proc243405 ! Node: M2 Constants246169 ! Node: M2 Defaults247758 ! Node: Deviations248352 ! Node: M2 Checks249439 ! Node: M2 Scope250239 ! Node: GDB/M2251248 ! Node: Chill252145 ! Node: How modes are displayed252849 ! Node: Locations256687 ! Node: Values and their Operations258775 ! Ref: Values and their Operations-Footnote-1263653 ! Node: Chill type and range checks263833 ! Node: Chill defaults264798 ! Node: Symbols265376 ! Node: Altering274429 ! Node: Assignment275395 ! Node: Jumping278493 ! Node: Signaling280643 ! Node: Returning281764 ! Node: Calling282956 ! Node: Patching283750 ! Node: GDB Files284820 ! Node: Files285285 ! Node: Symbol Errors296454 ! Node: Targets300034 ! Node: Active Targets301040 ! Node: Target Commands302612 ! Node: Byte Order306969 ! Node: Remote307953 ! Node: Remote Serial308946 ! Node: Stub Contents311539 ! Node: Bootstrapping313641 ! Node: Debug Session317441 ! Node: Protocol320590 ! Node: Server353786 ! Ref: Server-Footnote-1357712 ! Node: NetWare357832 ! Node: KOD359791 ! Node: Configurations360911 ! Node: Native361668 ! Node: HP-UX362011 ! Node: SVR4 Process Information362293 ! Node: DJGPP Native363726 ! Node: Embedded OS369216 ! Node: VxWorks369685 ! Node: VxWorks Connection371887 ! Node: VxWorks Download372806 ! Node: VxWorks Attach374526 ! Node: Embedded Processors374909 ! Node: A29K Embedded375882 ! Node: A29K UDI376578 ! Node: A29K EB29K377419 ! Node: Comms (EB29K)378068 ! Node: gdb-EB29K381267 ! Node: Remote Log382634 ! Node: ARM383110 ! Node: H8/300383476 ! Node: Hitachi Boards384960 ! Node: Hitachi ICE389378 ! Node: Hitachi Special390158 ! Node: H8/500390592 ! Node: i960390950 ! Node: Nindy Startup392083 ! Node: Nindy Options392755 ! Node: Nindy Reset394356 ! Node: M32R/D394727 ! Node: M68K394904 ! Node: M88K395692 ! Node: MIPS Embedded395866 ! Node: PowerPC400348 ! Node: PA400662 ! Node: SH400927 ! Node: Sparclet401371 ! Node: Sparclet File402830 ! Node: Sparclet Connection403695 ! Node: Sparclet Download404158 ! Node: Sparclet Execution405192 ! Node: Sparclite405768 ! Node: ST2000406127 ! Node: Z8000407654 ! Node: Architectures409009 ! Node: A29K409299 ! Node: Alpha410110 ! Node: MIPS410232 ! Node: Controlling GDB411202 ! Node: Prompt411900 ! Node: Editing412672 ! Node: History413441 ! Node: Screen Size416174 ! Node: Numbers417634 ! Node: Messages/Warnings419036 ! Node: Debugging Output421069 ! Node: Sequences423130 ! Node: Define423708 ! Node: Hooks426874 ! Node: Command Files429076 ! Ref: Command Files-Footnote-1431211 ! Node: Output431320 ! Node: TUI433727 ! Node: TUI Overview434399 ! Node: TUI Keys436057 ! Node: TUI Commands437992 ! Node: TUI Configuration439297 ! Node: Emacs440765 ! Node: Annotations446715 ! Node: Annotations Overview447839 ! Node: Server Prefix449621 ! Node: Value Annotations450270 ! Node: Frame Annotations453355 ! Node: Displays457008 ! Node: Prompting457953 ! Node: Errors459458 ! Node: Breakpoint Info460347 ! Node: Invalidation461478 ! Node: Annotations for Running461957 ! Node: Source Annotations463470 ! Node: TODO464401 ! Node: GDB/MI464983 ! Node: GDB/MI Command Syntax466603 ! Node: GDB/MI Input Syntax466833 ! Node: GDB/MI Output Syntax468373 ! Node: GDB/MI Simple Examples471811 ! Node: GDB/MI Compatibility with CLI472913 ! Node: GDB/MI Output Records473637 ! Node: GDB/MI Result Records473916 ! Node: GDB/MI Stream Records474536 ! Node: GDB/MI Out-of-band Records475666 ! Node: GDB/MI Command Description Format476161 ! Node: GDB/MI Breakpoint Table Commands477144 ! Node: GDB/MI Data Manipulation492331 ! Node: GDB/MI Program Control509451 ! Node: GDB/MI Miscellaneous Commands521643 ! Node: GDB/MI Stack Manipulation523458 ! Node: GDB/MI Symbol Query530908 ! Node: GDB/MI Target Manipulation533754 ! Node: GDB/MI Thread Commands540570 ! Node: GDB/MI Tracepoint Commands542664 ! Node: GDB/MI Variable Objects542901 ! Node: GDB Bugs550409 ! Node: Bug Criteria551132 ! Node: Bug Reporting552002 ! Node: Command Line Editing559282 ! Node: Introduction and Notation559947 ! Node: Readline Interaction561558 ! Node: Readline Bare Essentials562746 ! Node: Readline Movement Commands564522 ! Node: Readline Killing Commands565474 ! Node: Readline Arguments567375 ! Node: Searching568345 ! Node: Readline Init File570183 ! Node: Readline Init File Syntax571239 ! Node: Conditional Init Constructs580497 ! Node: Sample Init File582931 ! Node: Bindable Readline Commands586096 ! Node: Commands For Moving587135 ! Node: Commands For History587979 ! Node: Commands For Text590691 ! Node: Commands For Killing592689 ! Node: Numeric Arguments594651 ! Node: Commands For Completion595773 ! Node: Keyboard Macros597516 ! Node: Miscellaneous Commands598070 ! Node: Readline vi Mode600869 ! Node: Using History Interactively601712 ! Node: History Interaction602108 ! Node: Event Designators603523 ! Node: Word Designators604446 ! Node: Modifiers606071 ! Node: Formatting Documentation607205 ! Ref: Formatting Documentation-Footnote-1610506 ! Node: Installing GDB610570 ! Node: Separate Objdir614035 ! Node: Config Names616577 ! Node: Configure Options618017 ! Node: Index620349  End Tag Table diff -d -r -c gdb-5.0.93/gdb/doc/gdb.info-1 gdb-5.0.94/gdb/doc/gdb.info-1 *** gdb-5.0.93/gdb/doc/gdb.info-1 Sun Nov 11 20:22:01 2001 --- gdb-5.0.94/gdb/doc/gdb.info-1 Sun Nov 18 14:41:38 2001 *************** *** 8,14 **** This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.0.93. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 --- 8,14 ---- This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.1. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 *************** *** 33,39 **** This file describes GDB, the GNU symbolic debugger. ! This is the Ninth Edition, April 2001, for GDB Version 5.0.93. Copyright (C) 1988-2001 Free Software Foundation, Inc. --- 33,39 ---- This file describes GDB, the GNU symbolic debugger. ! This is the Ninth Edition, April 2001, for GDB Version 5.1. Copyright (C) 1988-2001 Free Software Foundation, Inc. *************** *** 317,323 **** There is absolutely no warranty for GDB; type "show warranty" for details. ! GDB 5.0.93, Copyright 1999 Free Software Foundation, Inc... (gdb) GDB reads only enough symbol data to know where to find the rest when --- 317,323 ---- There is absolutely no warranty for GDB; type "show warranty" for details. ! GDB 5.1, Copyright 1999 Free Software Foundation, Inc... (gdb) GDB reads only enough symbol data to know where to find the rest when diff -d -r -c gdb-5.0.93/gdb/doc/gdb.info-10 gdb-5.0.94/gdb/doc/gdb.info-10 *** gdb-5.0.93/gdb/doc/gdb.info-10 Sun Nov 11 20:22:01 2001 --- gdb-5.0.94/gdb/doc/gdb.info-10 Sun Nov 18 14:41:38 2001 *************** *** 8,14 **** This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.0.93. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 --- 8,14 ---- This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.1. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 diff -d -r -c gdb-5.0.93/gdb/doc/gdb.info-11 gdb-5.0.94/gdb/doc/gdb.info-11 *** gdb-5.0.93/gdb/doc/gdb.info-11 Sun Nov 11 20:22:01 2001 --- gdb-5.0.94/gdb/doc/gdb.info-11 Sun Nov 18 14:41:38 2001 *************** *** 8,14 **** This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.0.93. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 --- 8,14 ---- This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.1. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 diff -d -r -c gdb-5.0.93/gdb/doc/gdb.info-12 gdb-5.0.94/gdb/doc/gdb.info-12 *** gdb-5.0.93/gdb/doc/gdb.info-12 Sun Nov 11 20:22:01 2001 --- gdb-5.0.94/gdb/doc/gdb.info-12 Sun Nov 18 14:41:38 2001 *************** *** 8,14 **** This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.0.93. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 --- 8,14 ---- This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.1. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 diff -d -r -c gdb-5.0.93/gdb/doc/gdb.info-13 gdb-5.0.94/gdb/doc/gdb.info-13 *** gdb-5.0.93/gdb/doc/gdb.info-13 Sun Nov 11 20:22:01 2001 --- gdb-5.0.94/gdb/doc/gdb.info-13 Sun Nov 18 14:41:38 2001 *************** *** 8,14 **** This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.0.93. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 --- 8,14 ---- This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.1. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 diff -d -r -c gdb-5.0.93/gdb/doc/gdb.info-14 gdb-5.0.94/gdb/doc/gdb.info-14 *** gdb-5.0.93/gdb/doc/gdb.info-14 Sun Nov 11 20:22:01 2001 --- gdb-5.0.94/gdb/doc/gdb.info-14 Sun Nov 18 14:41:38 2001 *************** *** 8,14 **** This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.0.93. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 --- 8,14 ---- This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.1. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 *************** *** 56,62 **** GDB includes an already formatted copy of the on-line Info version of this manual in the `gdb' subdirectory. The main Info file is ! `gdb-5.0.93/gdb/gdb.info', and it refers to subordinate files matching `gdb.info*' in the same directory. If necessary, you can print out these files, or read them with any editor; but they are easier to read using the `info' subsystem in GNU Emacs or the standalone `info' --- 56,62 ---- GDB includes an already formatted copy of the on-line Info version of this manual in the `gdb' subdirectory. The main Info file is ! `gdb-5.1/gdb/gdb.info', and it refers to subordinate files matching `gdb.info*' in the same directory. If necessary, you can print out these files, or read them with any editor; but they are easier to read using the `info' subsystem in GNU Emacs or the standalone `info' *************** *** 66,73 **** Info formatting programs, such as `texinfo-format-buffer' or `makeinfo'. If you have `makeinfo' installed, and are in the top level GDB ! source directory (`gdb-5.0.93', in the case of version 5.0.93), you can ! make the Info file by typing: cd gdb make gdb.info --- 66,73 ---- Info formatting programs, such as `texinfo-format-buffer' or `makeinfo'. If you have `makeinfo' installed, and are in the top level GDB ! source directory (`gdb-5.1', in the case of version 5.1), you can make ! the Info file by typing: cd gdb make gdb.info *************** *** 92,98 **** If you have TeX and a DVI printer program installed, you can typeset and print this manual. First switch to the the `gdb' subdirectory of ! the main source directory (for example, to `gdb-5.0.93/gdb') and type: make gdb.dvi --- 92,98 ---- If you have TeX and a DVI printer program installed, you can typeset and print this manual. First switch to the the `gdb' subdirectory of ! the main source directory (for example, to `gdb-5.1/gdb') and type: make gdb.dvi *************** *** 100,106 **** ---------- Footnotes ---------- ! (1) In `gdb-5.0.93/gdb/refcard.ps' of the version 5.0.93 release.  File: gdb.info, Node: Installing GDB, Next: Index, Prev: Using History Interactively, Up: Top --- 100,106 ---- ---------- Footnotes ---------- ! (1) In `gdb-5.1/gdb/refcard.ps' of the version 5.1 release.  File: gdb.info, Node: Installing GDB, Next: Index, Prev: Using History Interactively, Up: Top *************** *** 116,154 **** in a single directory, whose name is usually composed by appending the version number to `gdb'. ! For example, the GDB version 5.0.93 distribution is in the ! `gdb-5.0.93' directory. That directory contains: ! `gdb-5.0.93/configure (and supporting files)' script for configuring GDB and all its supporting libraries ! `gdb-5.0.93/gdb' the source specific to GDB itself ! `gdb-5.0.93/bfd' source for the Binary File Descriptor library ! `gdb-5.0.93/include' GNU include files ! `gdb-5.0.93/libiberty' source for the `-liberty' free software library ! `gdb-5.0.93/opcodes' source for the library of opcode tables and disassemblers ! `gdb-5.0.93/readline' source for the GNU command-line interface ! `gdb-5.0.93/glob' source for the GNU filename pattern-matching subroutine ! `gdb-5.0.93/mmalloc' source for the GNU memory-mapped malloc package The simplest way to configure and build GDB is to run `configure' from the `gdb-VERSION-NUMBER' source directory, which in this example ! is the `gdb-5.0.93' directory. First switch to the `gdb-VERSION-NUMBER' source directory if you are not already in it; then run `configure'. Pass the identifier for the --- 116,154 ---- in a single directory, whose name is usually composed by appending the version number to `gdb'. ! For example, the GDB version 5.1 distribution is in the `gdb-5.1' ! directory. That directory contains: ! `gdb-5.1/configure (and supporting files)' script for configuring GDB and all its supporting libraries ! `gdb-5.1/gdb' the source specific to GDB itself ! `gdb-5.1/bfd' source for the Binary File Descriptor library ! `gdb-5.1/include' GNU include files ! `gdb-5.1/libiberty' source for the `-liberty' free software library ! `gdb-5.1/opcodes' source for the library of opcode tables and disassemblers ! `gdb-5.1/readline' source for the GNU command-line interface ! `gdb-5.1/glob' source for the GNU filename pattern-matching subroutine ! `gdb-5.1/mmalloc' source for the GNU memory-mapped malloc package The simplest way to configure and build GDB is to run `configure' from the `gdb-VERSION-NUMBER' source directory, which in this example ! is the `gdb-5.1' directory. First switch to the `gdb-VERSION-NUMBER' source directory if you are not already in it; then run `configure'. Pass the identifier for the *************** *** 156,162 **** For example: ! cd gdb-5.0.93 ./configure HOST make --- 156,162 ---- For example: ! cd gdb-5.1 ./configure HOST make *************** *** 177,195 **** sh configure HOST If you run `configure' from a directory that contains source ! directories for multiple libraries or programs, such as the ! `gdb-5.0.93' source directory for version 5.0.93, `configure' creates ! configuration files for every directory level underneath (unless you ! tell it not to, with the `--norecursion' option). You can run the `configure' script from any of the subordinate directories in the GDB distribution if you only want to configure that subdirectory, but be sure to specify a path to it. ! For example, with version 5.0.93, type the following to configure ! only the `bfd' subdirectory: ! cd gdb-5.0.93/bfd ../configure HOST You can install `gdb' anywhere; it has no hardwired paths. However, --- 177,195 ---- sh configure HOST If you run `configure' from a directory that contains source ! directories for multiple libraries or programs, such as the `gdb-5.1' ! source directory for version 5.1, `configure' creates configuration ! files for every directory level underneath (unless you tell it not to, ! with the `--norecursion' option). You can run the `configure' script from any of the subordinate directories in the GDB distribution if you only want to configure that subdirectory, but be sure to specify a path to it. ! For example, with version 5.1, type the following to configure only ! the `bfd' subdirectory: ! cd gdb-5.1/bfd ../configure HOST You can install `gdb' anywhere; it has no hardwired paths. However, *************** *** 225,237 **** argument to `--srcdir', you can leave out the `--srcdir' option; it is assumed.) ! For example, with version 5.0.93, you can build GDB in a separate directory for a Sun 4 like this: ! cd gdb-5.0.93 mkdir ../gdb-sun4 cd ../gdb-sun4 ! ../gdb-5.0.93/configure sun4 make When `configure' builds a configuration using a remote source --- 225,237 ---- argument to `--srcdir', you can leave out the `--srcdir' option; it is assumed.) ! For example, with version 5.1, you can build GDB in a separate directory for a Sun 4 like this: ! cd gdb-5.1 mkdir ../gdb-sun4 cd ../gdb-sun4 ! ../gdb-5.1/configure sun4 make When `configure' builds a configuration using a remote source *************** *** 252,260 **** The `Makefile' that `configure' generates in each source directory also runs recursively. If you type `make' in a source directory such ! as `gdb-5.0.93' (or in a separate configured directory configured with ! `--srcdir=DIRNAME/gdb-5.0.93'), you will build all the required ! libraries, and then build GDB. When you have multiple hosts or targets configured in separate directories, you can run `make' on them in parallel (for example, if --- 252,260 ---- The `Makefile' that `configure' generates in each source directory also runs recursively. If you type `make' in a source directory such ! as `gdb-5.1' (or in a separate configured directory configured with ! `--srcdir=DIRNAME/gdb-5.1'), you will build all the required libraries, ! and then build GDB. When you have multiple hosts or targets configured in separate directories, you can run `make' on them in parallel (for example, if *************** *** 298,304 **** Invalid configuration `i986v': machine `i986v' not recognized `config.sub' is also distributed in the GDB source directory ! (`gdb-5.0.93', for version 5.0.93).  File: gdb.info, Node: Configure Options, Prev: Config Names, Up: Installing GDB --- 298,304 ---- Invalid configuration `i986v': machine `i986v' not recognized `config.sub' is also distributed in the GDB source directory ! (`gdb-5.1', for version 5.1).  File: gdb.info, Node: Configure Options, Prev: Config Names, Up: Installing GDB diff -d -r -c gdb-5.0.93/gdb/doc/gdb.info-15 gdb-5.0.94/gdb/doc/gdb.info-15 *** gdb-5.0.93/gdb/doc/gdb.info-15 Sun Nov 11 20:22:01 2001 --- gdb-5.0.94/gdb/doc/gdb.info-15 Sun Nov 18 14:41:38 2001 *************** *** 8,14 **** This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.0.93. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 --- 8,14 ---- This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.1. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 diff -d -r -c gdb-5.0.93/gdb/doc/gdb.info-2 gdb-5.0.94/gdb/doc/gdb.info-2 *** gdb-5.0.93/gdb/doc/gdb.info-2 Sun Nov 11 20:22:01 2001 --- gdb-5.0.94/gdb/doc/gdb.info-2 Sun Nov 18 14:41:38 2001 *************** *** 8,14 **** This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.0.93. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 --- 8,14 ---- This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.1. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 diff -d -r -c gdb-5.0.93/gdb/doc/gdb.info-3 gdb-5.0.94/gdb/doc/gdb.info-3 *** gdb-5.0.93/gdb/doc/gdb.info-3 Sun Nov 11 20:22:01 2001 --- gdb-5.0.94/gdb/doc/gdb.info-3 Sun Nov 18 14:41:38 2001 *************** *** 8,14 **** This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.0.93. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 --- 8,14 ---- This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.1. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 diff -d -r -c gdb-5.0.93/gdb/doc/gdb.info-4 gdb-5.0.94/gdb/doc/gdb.info-4 *** gdb-5.0.93/gdb/doc/gdb.info-4 Sun Nov 11 20:22:01 2001 --- gdb-5.0.94/gdb/doc/gdb.info-4 Sun Nov 18 14:41:38 2001 *************** *** 8,14 **** This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.0.93. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 --- 8,14 ---- This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.1. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 diff -d -r -c gdb-5.0.93/gdb/doc/gdb.info-5 gdb-5.0.94/gdb/doc/gdb.info-5 *** gdb-5.0.93/gdb/doc/gdb.info-5 Sun Nov 11 20:22:01 2001 --- gdb-5.0.94/gdb/doc/gdb.info-5 Sun Nov 18 14:41:38 2001 *************** *** 8,14 **** This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.0.93. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 --- 8,14 ---- This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.1. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 diff -d -r -c gdb-5.0.93/gdb/doc/gdb.info-6 gdb-5.0.94/gdb/doc/gdb.info-6 *** gdb-5.0.93/gdb/doc/gdb.info-6 Sun Nov 11 20:22:01 2001 --- gdb-5.0.94/gdb/doc/gdb.info-6 Sun Nov 18 14:41:38 2001 *************** *** 8,14 **** This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.0.93. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 --- 8,14 ---- This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.1. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 diff -d -r -c gdb-5.0.93/gdb/doc/gdb.info-7 gdb-5.0.94/gdb/doc/gdb.info-7 *** gdb-5.0.93/gdb/doc/gdb.info-7 Sun Nov 11 20:22:01 2001 --- gdb-5.0.94/gdb/doc/gdb.info-7 Sun Nov 18 14:41:38 2001 *************** *** 8,14 **** This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.0.93. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 --- 8,14 ---- This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.1. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 diff -d -r -c gdb-5.0.93/gdb/doc/gdb.info-8 gdb-5.0.94/gdb/doc/gdb.info-8 *** gdb-5.0.93/gdb/doc/gdb.info-8 Sun Nov 11 20:22:01 2001 --- gdb-5.0.94/gdb/doc/gdb.info-8 Sun Nov 18 14:41:38 2001 *************** *** 8,14 **** This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.0.93. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 --- 8,14 ---- This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.1. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 diff -d -r -c gdb-5.0.93/gdb/doc/gdb.info-9 gdb-5.0.94/gdb/doc/gdb.info-9 *** gdb-5.0.93/gdb/doc/gdb.info-9 Sun Nov 11 20:22:01 2001 --- gdb-5.0.94/gdb/doc/gdb.info-9 Sun Nov 18 14:41:38 2001 *************** *** 8,14 **** This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.0.93. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 --- 8,14 ---- This file documents the GNU debugger GDB. This is the Ninth Edition, April 2001, of `Debugging with GDB: the ! GNU Source-Level Debugger' for GDB Version 5.1. Copyright (C) 1988,1989,1990,1991,1992,1993,1994,1995,1996,1998,1999,2000,2001 *************** *** 508,514 **** the conditions. There is absolutely no warranty for GDB; type "show warranty" for details. ! GDB 5.0.93, Copyright 1992 Free Software Foundation, Inc... (gdb) target hms Connected to remote H8/300 HMS system. (gdb) load t.x --- 508,514 ---- the conditions. There is absolutely no warranty for GDB; type "show warranty" for details. ! GDB 5.1, Copyright 1992 Free Software Foundation, Inc... (gdb) target hms Connected to remote H8/300 HMS system. (gdb) load t.x Only in gdb-5.0.93/gdb/gdbserver: Makefile Only in gdb-5.0.93/gdb/gdbserver: config.log Only in gdb-5.0.93/gdb/gdbserver: config.status Only in gdb-5.0.93/gdb/gdbserver: nm.h Only in gdb-5.0.93/gdb/gdbserver: tm.h Only in gdb-5.0.93/gdb/gdbserver: xm.h diff -d -r -c gdb-5.0.93/gdb/testsuite/ChangeLog gdb-5.0.94/gdb/testsuite/ChangeLog *** gdb-5.0.93/gdb/testsuite/ChangeLog Sun Nov 11 15:07:10 2001 --- gdb-5.0.94/gdb/testsuite/ChangeLog Mon Nov 12 14:48:27 2001 *************** *** 1,3 **** --- 1,8 ---- + 2001-11-12 Daniel Jacobowitz + + * lib/mi-support.exp (mi_run_to_helper): Move comments + outside of gdb_expect. + 2001-11-11 Daniel Jacobowitz * lib/mi-support.exp: (mi_run_to_helper, mi_run_to, diff -d -r -c gdb-5.0.93/gdb/testsuite/lib/mi-support.exp gdb-5.0.94/gdb/testsuite/lib/mi-support.exp *** gdb-5.0.93/gdb/testsuite/lib/mi-support.exp Sun Nov 11 15:07:10 2001 --- gdb-5.0.94/gdb/testsuite/lib/mi-support.exp Mon Nov 12 14:48:31 2001 *************** *** 686,691 **** --- 686,694 ---- # cmd should not include the number or newline (i.e. "exec-step 3", not # "220-exec-step 3\n" + # Can not match -re ".*\r\n${mi_gdb_prompt}", because of false positives + # after the first prompt is printed. + proc mi_run_to_helper { cmd reason func args file line extra test } { global suppress_flag if { $suppress_flag } { *************** *** 708,719 **** fail "$test (unknown output after running)" return -1 } - # Can not check for this, because of false positives after half of a running - # prompt. - # -re ".*\r\n${mi_gdb_prompt}" { - # fail "$test (unknown output)" - # return -1 - # } timeout { fail "$test (timeout)" return -1 --- 711,716 ---- diff -d -r -c gdb-5.0.93/gdb/version.in gdb-5.0.94/gdb/version.in *** gdb-5.0.93/gdb/version.in Sun Nov 11 20:15:41 2001 --- gdb-5.0.94/gdb/version.in Sun Nov 18 14:19:18 2001 *************** *** 1 **** ! 5.0.93 --- 1 ---- ! 5.1 diff -d -r -c gdb-5.0.93/md5.sum gdb-5.0.94/md5.sum *** gdb-5.0.93/md5.sum Sun Nov 11 20:22:21 2001 --- gdb-5.0.94/md5.sum Sun Nov 18 14:42:06 2001 *************** *** 3,9 **** 7db0c7f87881d30fdf916d4442d2e7c7 Makefile.in 07c33a285703b40cd6f93a478e97e03b README ceab81aa1f02825092808fdafba0239d bfd/COPYING ! 3515283a3b19d45df175816508cd25a5 bfd/ChangeLog 8dcb7ce2e45911e21ceb6e457e69eacf bfd/ChangeLog-9193 2699955bffeffb24db6fd69ae4db6689 bfd/ChangeLog-9495 b7ad288235bf6a3e015e01cb6096cbe7 bfd/ChangeLog-9697 --- 3,9 ---- 7db0c7f87881d30fdf916d4442d2e7c7 Makefile.in 07c33a285703b40cd6f93a478e97e03b README ceab81aa1f02825092808fdafba0239d bfd/COPYING ! e05f48cecc9de4bb2f2c79335351d07a bfd/ChangeLog 8dcb7ce2e45911e21ceb6e457e69eacf bfd/ChangeLog-9193 2699955bffeffb24db6fd69ae4db6689 bfd/ChangeLog-9495 b7ad288235bf6a3e015e01cb6096cbe7 bfd/ChangeLog-9697 *************** *** 372,378 **** 1214020ec5befbef1dda50900deb4740 bfd/hosts/vaxbsd.h 9b476271b3bc5815a37f6b887c092090 bfd/hosts/vaxult.h 9b476271b3bc5815a37f6b887c092090 bfd/hosts/vaxult2.h ! f7f4648407c03c8d7ecdac1e9b3c267a bfd/po/Make-in 669fb8fbd4ad66d50abca080f74896dc bfd/po/bfd.pot 734c2b36aca27a7ff8c1433739ce1ae4 config/ChangeLog 70c03dac891f6bc7d806b9427b31bc86 config/acinclude.m4 --- 372,380 ---- 1214020ec5befbef1dda50900deb4740 bfd/hosts/vaxbsd.h 9b476271b3bc5815a37f6b887c092090 bfd/hosts/vaxult.h 9b476271b3bc5815a37f6b887c092090 bfd/hosts/vaxult2.h ! 019de43ec4b4669224435b59c3fe63c4 bfd/po/BLD-POTFILES.in ! ead9b96bd5d6fefcc35a255f6667b02f bfd/po/Make-in ! f9b4b9db7fbba0b73fbc7fc5185ee4f3 bfd/po/SRC-POTFILES.in 669fb8fbd4ad66d50abca080f74896dc bfd/po/bfd.pot 734c2b36aca27a7ff8c1433739ce1ae4 config/ChangeLog 70c03dac891f6bc7d806b9427b31bc86 config/acinclude.m4 *************** *** 474,480 **** 32fc10cbdbf679bd0ffc8857cf069b43 etc/configdev.tin 80a2683389e1058702300b8d75d26979 gdb/CONTRIBUTE 0636e73ff0215e8d672dc4c32c317bb3 gdb/COPYING ! d05b4a129122671a969b9fad51779ab0 gdb/ChangeLog 42b9f7c51223e595f66c2210064be682 gdb/ChangeLog-1990 8f5a03c189727d347a330548f3ea9c98 gdb/ChangeLog-1991 51d2fa6ce8618d5c87150c7c576f1f6d gdb/ChangeLog-1992 --- 476,482 ---- 32fc10cbdbf679bd0ffc8857cf069b43 etc/configdev.tin 80a2683389e1058702300b8d75d26979 gdb/CONTRIBUTE 0636e73ff0215e8d672dc4c32c317bb3 gdb/COPYING ! a1a3e91ad41f09b194026ae3eef0bb38 gdb/ChangeLog 42b9f7c51223e595f66c2210064be682 gdb/ChangeLog-1990 8f5a03c189727d347a330548f3ea9c98 gdb/ChangeLog-1991 51d2fa6ce8618d5c87150c7c576f1f6d gdb/ChangeLog-1992 *************** *** 488,496 **** da71c479b68a4d95a79d36640b93c9c3 gdb/ChangeLog-2000 1f68d3272b33b380724fe731f1716f7b gdb/ChangeLog-3.x fd9b01e19102564a35dd02f1605fe47b gdb/MAINTAINERS ! dfe93ffdddfac28542bc1316f4e6d554 gdb/Makefile.in 9cc98fcb1ce9c0997206acb074a572c8 gdb/NEWS ! 54174dc626a56893f31004f4a92ef569 gdb/README c09844bf5182fcd6bc14c73661a0ef5f gdb/TODO acfd142757eb994f91100e66cdfaf3e8 gdb/a29k-tdep.c 930327525af3a01a23ee83b3f59d3d83 gdb/a68v-nat.c --- 490,498 ---- da71c479b68a4d95a79d36640b93c9c3 gdb/ChangeLog-2000 1f68d3272b33b380724fe731f1716f7b gdb/ChangeLog-3.x fd9b01e19102564a35dd02f1605fe47b gdb/MAINTAINERS ! 600b131a0a87e1a20102030d55d4c8c2 gdb/Makefile.in 9cc98fcb1ce9c0997206acb074a572c8 gdb/NEWS ! 111e5248d176a062f5e5f7d18d904086 gdb/README c09844bf5182fcd6bc14c73661a0ef5f gdb/TODO acfd142757eb994f91100e66cdfaf3e8 gdb/a29k-tdep.c 930327525af3a01a23ee83b3f59d3d83 gdb/a68v-nat.c *************** *** 696,718 **** 8108dd8f906f2654fecc74958cf383db gdb/doc/psrc.sed fbcc30e4dc903f23065f01d9d1328e4a gdb/doc/refcard.tex cf3fa1a9254671dd350d163636cf2c9b gdb/doc/stabs.texinfo ! 813a32b91b862aa68d1d10b92c6dc391 gdb/doc/GDBvn.texi ! 104e324bcc68739c7fea5c9d0a913eb2 gdb/doc/gdb.info ! 92a186db5b8037fbdc07ad342523298d gdb/doc/gdb.info-1 ! 67ca1edb3fba6f2d7d1f6a0cd076a835 gdb/doc/gdb.info-2 ! c61f3c559312bc82b60c6e2dd4f6fb6d gdb/doc/gdb.info-3 ! ebb8e7c5a5fe9cb0a58cfae961387dca gdb/doc/gdb.info-4 ! 408f7e9cd999c9220e9e8b5fa027511d gdb/doc/gdb.info-5 ! d900e402e177faa2dac51621855e7d67 gdb/doc/gdb.info-6 ! 4693240f0202e5f69cf4f55bfa28535c gdb/doc/gdb.info-7 ! 505775d14341eece09ce2f88a05691c0 gdb/doc/gdb.info-8 ! 05c7552b53104a7ddae8942baf71d021 gdb/doc/gdb.info-9 ! c5825a45a2bb37e9695f405fe120f49b gdb/doc/gdb.info-10 ! 7981d2acafca538c9665a7520270bf18 gdb/doc/gdb.info-11 ! 7030206d77586b541f70e2131d9e0ad8 gdb/doc/gdb.info-12 ! 39c5e9fd07b5da7a2e17d175d8cb17a7 gdb/doc/gdb.info-13 ! 65fb7bc730fc3714aabb608d162606d8 gdb/doc/gdb.info-14 ! 584151116526af71dfd56cc915cdbfb2 gdb/doc/gdb.info-15 ef01bb4f487de8e3f127b0fffcc79ffc gdb/doc/gdbint.info 8bdf02cbd2782b48c66ec3e08a8215da gdb/doc/gdbint.info-1 5be6d2b5882de54baee8c2a90b927bbf gdb/doc/gdbint.info-2 --- 698,720 ---- 8108dd8f906f2654fecc74958cf383db gdb/doc/psrc.sed fbcc30e4dc903f23065f01d9d1328e4a gdb/doc/refcard.tex cf3fa1a9254671dd350d163636cf2c9b gdb/doc/stabs.texinfo ! 32cbd5b852f9635f60043916bf9c4e56 gdb/doc/GDBvn.texi ! 22c21e53e46b74686ef7c9833a6c1997 gdb/doc/gdb.info ! 99ec850b3135005227832ad690a45a60 gdb/doc/gdb.info-1 ! 7207f31bab23f2a90a40b2efa70788f1 gdb/doc/gdb.info-2 ! 4b76e2871506bf1c661ea667a35513d8 gdb/doc/gdb.info-3 ! 02c5fe019fa901cbd3670e6e1432a16d gdb/doc/gdb.info-4 ! 58183249f504760757d8d5c1ba9d4999 gdb/doc/gdb.info-5 ! af37dbdabf06d3f146e4a4c1b24ddfe1 gdb/doc/gdb.info-6 ! 3ce5c14b0abbdeda9335090efd55f6a6 gdb/doc/gdb.info-7 ! 7c26caebe3d193571bee4c352c872028 gdb/doc/gdb.info-8 ! 2961208b85511e4450a3a802fb101a76 gdb/doc/gdb.info-9 ! 27042d511091de370e7eb21b3dfeb4b7 gdb/doc/gdb.info-10 ! ea372148f15fc6fac00f0aceefdd6f2b gdb/doc/gdb.info-11 ! 2473f2b3b72bad8f249fe33ce5a621d0 gdb/doc/gdb.info-12 ! f10aef6a1131c4b52319cfa38d45f65c gdb/doc/gdb.info-13 ! f1a7b850cc011a7a789daf2aef9600a5 gdb/doc/gdb.info-14 ! 3754621df2dad142899ea8ab9eedc838 gdb/doc/gdb.info-15 ef01bb4f487de8e3f127b0fffcc79ffc gdb/doc/gdbint.info 8bdf02cbd2782b48c66ec3e08a8215da gdb/doc/gdbint.info-1 5be6d2b5882de54baee8c2a90b927bbf gdb/doc/gdbint.info-2 *************** *** 985,991 **** 6fa879fa4f40f3f54b03c3934c190d75 gdb/varobj.h 09daf3030e872d4006f8ecbf985502ef gdb/vax-tdep.c 5c5ded2e342d683a80ee1baef14bb084 gdb/version.h ! 4b81a23d8983e9729a586fc24d92ca4d gdb/version.in 89b6bcd89972a6bcd017a7e81acd2c30 gdb/w65-tdep.c 03ba153f57b70361abb6daaf880ac4c0 gdb/w89k-rom.c d38b7ceb7d81fd214d686083b2082cd0 gdb/win32-nat.c --- 987,993 ---- 6fa879fa4f40f3f54b03c3934c190d75 gdb/varobj.h 09daf3030e872d4006f8ecbf985502ef gdb/vax-tdep.c 5c5ded2e342d683a80ee1baef14bb084 gdb/version.h ! 6943de0d307f73489ddb2fc99297756a gdb/version.in 89b6bcd89972a6bcd017a7e81acd2c30 gdb/w65-tdep.c 03ba153f57b70361abb6daaf880ac4c0 gdb/w89k-rom.c d38b7ceb7d81fd214d686083b2082cd0 gdb/win32-nat.c *************** *** 1632,1643 **** bad11e5369a976df5aeee53190a53d31 gdb/gdbserver/server.c 2418f69e0d2aeb67fd1ccce62b09b0f0 gdb/gdbserver/server.h 93b45c28a5a91818c21b90ebdc1041c4 gdb/gdbserver/utils.c - 9c58ac7e897309a8422aed340bf59744 gdb/gdbserver/config.log - 19f4ec8384cf43d554569a7026731ff1 gdb/gdbserver/xm.h - 515fcd11ad75c98d34cb84a7be349045 gdb/gdbserver/config.status - dccab4bd6d7c0f72bb88616fa56b226c gdb/gdbserver/tm.h - 58d294ca7facc62ead9c2c26afa6f5ef gdb/gdbserver/nm.h - b39684180c2de97c97bd15e463137431 gdb/gdbserver/Makefile d9c805aa3da1f435f2bc4954cd64dcb1 gdb/nindy-share/Makefile 653d6127df0d8f98888fc57d492db362 gdb/nindy-share/Onindy.c 115001714fc35d672759152eb5fdbeca gdb/nindy-share/README --- 1634,1639 ---- *************** *** 1731,1737 **** 01a8436a5a50ec21efac89733867ca74 gdb/rdi-share/unixcomm.c 6002c66173a3c4f6001979896c888e2c gdb/rdi-share/unixcomm.h 32b68d52cb813a01f3eac71017f56d2e gdb/testsuite/.gdbinit ! 1a027656c8a5887683a69521af66d80b gdb/testsuite/ChangeLog dea156a57efb81fe99b2b56b6e77cfcd gdb/testsuite/Makefile.in 1b9bb551736dbc95577c91620b81fb6c gdb/testsuite/TODO a4cf76282f558aaf126217a96d77dec6 gdb/testsuite/aclocal.m4 --- 1727,1733 ---- 01a8436a5a50ec21efac89733867ca74 gdb/rdi-share/unixcomm.c 6002c66173a3c4f6001979896c888e2c gdb/rdi-share/unixcomm.h 32b68d52cb813a01f3eac71017f56d2e gdb/testsuite/.gdbinit ! 79731564bd0c3c94d9f8d7cfa15931df gdb/testsuite/ChangeLog dea156a57efb81fe99b2b56b6e77cfcd gdb/testsuite/Makefile.in 1b9bb551736dbc95577c91620b81fb6c gdb/testsuite/TODO a4cf76282f558aaf126217a96d77dec6 gdb/testsuite/aclocal.m4 *************** *** 2288,2294 **** 48a27665f33817b43a3452988f80966a gdb/testsuite/lib/emc-support.exp 0f503fcd91c8a903afc2390273eb3a36 gdb/testsuite/lib/gdb.exp 7a925979465f1dbaed26e478d6364dc2 gdb/testsuite/lib/java.exp ! cda0332d36a42e4c9c80d24dec57f549 gdb/testsuite/lib/mi-support.exp c68e4af9b47de335364e755bc9ad7337 gdb/testsuite/lib/trace-support.exp abbbb20b96830b7bd12c38753606a01f gdb/tui/ChangeLog 1802bc075b2758d500a4fdf307dc3fc6 gdb/tui/tui-file.c --- 2284,2290 ---- 48a27665f33817b43a3452988f80966a gdb/testsuite/lib/emc-support.exp 0f503fcd91c8a903afc2390273eb3a36 gdb/testsuite/lib/gdb.exp 7a925979465f1dbaed26e478d6364dc2 gdb/testsuite/lib/java.exp ! f316caf03a1113b447d1afba9e8bb2b3 gdb/testsuite/lib/mi-support.exp c68e4af9b47de335364e755bc9ad7337 gdb/testsuite/lib/trace-support.exp abbbb20b96830b7bd12c38753606a01f gdb/tui/ChangeLog 1802bc075b2758d500a4fdf307dc3fc6 gdb/tui/tui-file.c --------------060702010803020902090605-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cagney To: Andrew Cagney Cc: gdb@sources.redhat.com, insight@sources.redhat.com Subject: Re: Doh! gdb-5.0.94 available Date: Mon, 19 Nov 2001 10:57:00 -0000 Message-ID: <3BF955F9.10603@cygnus.com> References: <3BF934BD.3040502@cygnus.com> X-SW-Source: 2001-q4/msg00328.html Message-ID: <20011119105700.Lvo5_H0nwm93-jY8wIGrnrbxnC80VONHota7pnSHZ1w@z> For reference, attached are the raw differences between gdb-5.0.93 (the first one, not the second one) and gdb-5.0.94. Given I've foobar'd this, I'll leave rolling out 5.1 for an extra 24 hours (as was pointed out privately, it is otherwize not exactly fair). That makes it something like 2001-11-21 00:01 GMT. I've also edited my release notes to mention that each mini-release should also include a set of diffs. Hmm, yes, I'll submit a gdbint.texinfo patch. Andrew