* Re: GDB 5.1.1
[not found] <20020124073228.728EA3D8C@localhost.cygnus.com>
@ 2002-01-24 0:57 ` Pierre Muller
2002-01-24 8:14 ` Andrew Cagney
0 siblings, 1 reply; 4+ messages in thread
From: Pierre Muller @ 2002-01-24 0:57 UTC (permalink / raw)
To: Andrew Cagney; +Cc: gdb-patches
At 08:32 24/01/2002 , vous avez écrit:
> GDB 5.1.1 is released!
>
>Version 5.1.1 of GDB, the GNU Debugger, is now available via anonymous
>FTP. GDB is a source-level debugger for C, C++, Pascal and many other
>languages. GDB can target (i.e. debug programs running on) dozens of
>different processor architectures, and GDB itself can run on most
>popular Unix and Microsoft Windows variants.
>
>You can download GDB from Project GNU's FTP server in the directory:
>
> ftp://ftp.gnu.org/gnu/gdb
>
>The previous version, 5.1, was released roughly 2 months; and in that
>time a number of serious bugs have been fixed. Details below.
>
>The vital stats:
>
>-rw-rw-r-- 1 gdbadmin gdb 13874218 Jan 24 01:29 gdb-5.1.1.tar.gz
>
>The md5sum checksum:
>
>805163efd455663745532c12893a96ca gdb-5.1.1.tar.gz
>
>There is a web page for GDB at:
>
> http://www.gnu.org/software/gdb/
>
>That page includes information about GDB mailing lists (an
>announcement mailing list, developers discussion lists, etc.), details
>on how to access GDB's CVS repository, locations for development
>snapshots, preformatted documentation, and links to related
>information around the net. We will put errata notes and host-specific
>tips for this release on-line as any problems come up. All mailing
>lists archives are also browsable via the web.
>
>Many people have contributed to this release. Thanks to everybody for
>the help!
>
>Keep those fixes and improvements coming in! (Send them to
>bug-gdb@gnu.org)
>
> Andrew Cagney
> on behalf of the GDB Developers.
>
>
> What has changed in GDB?
>
>*** Changes in GDB 5.1.1:
>
>Fix compile problem on DJGPP.
>
>Fix a problem with floating-point registers on the i386 being
>corrupted.
Where is that change supposed to be???
I ran
diff -b -c -r gdb-5.1/gdb gdb-5.1.1/gdb > 51to511diffs
and
grep "diff -b" 51to511diffs
The only i386 specific file that is changed is go32-nat.c...
It remark comes a little too late, sorry...
Pierre Muller
Institut Charles Sadron
6,rue Boussingault
F 67083 STRASBOURG CEDEX (France)
mailto:muller@ics.u-strasbg.fr
Phone : (33)-3-88-41-40-07 Fax : (33)-3-88-41-40-99
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: GDB 5.1.1
2002-01-24 0:57 ` GDB 5.1.1 Pierre Muller
@ 2002-01-24 8:14 ` Andrew Cagney
2002-01-24 8:25 ` Pierre Muller
0 siblings, 1 reply; 4+ messages in thread
From: Andrew Cagney @ 2002-01-24 8:14 UTC (permalink / raw)
To: Pierre Muller; +Cc: gdb-patches
Sigh,
Your right. I based the news on the ChangeLog without checking for
corresponding patches.
Andrew
+ 2002-01-24 Andrew Cagney <ac131313@redhat.com>
+
+ * version.in: Bump version to 5.1.1.0_0000-00-00-cvs.
+
+ 2002-01-20 Michael Chastain <mec@shout.net>
+
+ * top.c (print_gdb_version): Bump copyright year to 2002.
+
+ 2002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
+
+ * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
+ white space which prevented compilation. Reported by DSK
+ <dsk@student.unsw.edu.au>.
+
+ 2001-12-18 Kevin Buettner <kevinb@redhat.com>
+
+ * i387-nat.c (i387_fill_fxsave): Change type of ``val'' from char
+ to short so that we don't memcpy() beyond the end of this buffer.
+ Also, change shift value used in computing val to account for the
+ fact that only eight bits are used.
+
+ 2001-12-07 Andrew Cagney <ac131313@redhat.com>
+
+ * PROBLEMS: New file. Add title.
+ * README: Move known problems to PROBLEMS file.
+
+ 2001-12-06 Elena Zannoni <ezannoni@redhat.com>
+
+ From Jakub Jelinek <jakub@redhat.com>:
+
+ * dwarf2read.c (dwarf_str_buffer): New.
+ (struct dwarf2_pinfo): Add dwarf_str_buffer and dwarf_str_size.
+ (DWARF_STR_BUFFER, DWARF_STR_SIZE): Define.
+ (dwarf2_has_info): Clear dwarf_str_offset.
+ (dwarf2_build_psymtabs): Read .debug_str section if present.
+ (dwarf2_build_psymtabs_hard): Save DWARF_STR_BUFFER and
+ DWARF_STR_SIZE.
+ (psymtab_to_symtab_1): Restore DWARF_STR_BUFFER and
DWARF_STR_SIZE.
+ (read_attribute): Handle DW_FORM_strp.
+ (read_n_bytes, read_string): Remove HOST_CHAR_BIT != 8
+ handling code.
+ (read_indirect_string): New.
+ (dump_die): Handle DW_FORM_strp.
+
+ 2001-11-27 Andrew Cagney <ac131313@redhat.com>
+
+ * version.in: Bump version to 5.1.0_0000-00-00-cvs.
+
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: GDB 5.1.1
2002-01-24 8:14 ` Andrew Cagney
@ 2002-01-24 8:25 ` Pierre Muller
2002-01-24 22:44 ` Kevin Buettner
0 siblings, 1 reply; 4+ messages in thread
From: Pierre Muller @ 2002-01-24 8:25 UTC (permalink / raw)
To: Andrew Cagney, kevinb; +Cc: gdb-patches
At 17:14 24/01/2002 , Andrew Cagney a écrit:
>Sigh,
>
>Your right. I based the news on the ChangeLog without checking for corresponding patches.
>
>Andrew
>
>+ 2002-01-24 Andrew Cagney <ac131313@redhat.com>
>+
>+ * version.in: Bump version to 5.1.1.0_0000-00-00-cvs.
>+
>+ 2002-01-20 Michael Chastain <mec@shout.net>
>+
>+ * top.c (print_gdb_version): Bump copyright year to 2002.
>+
>+ 2002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
>+
>+ * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
>+ white space which prevented compilation. Reported by DSK
>+ <dsk@student.unsw.edu.au>.
>+
>+ 2001-12-18 Kevin Buettner <kevinb@redhat.com>
>+
>+ * i387-nat.c (i387_fill_fxsave): Change type of ``val'' from char
>+ to short so that we don't memcpy() beyond the end of this buffer.
>+ Also, change shift value used in computing val to account for the
>+ fact that only eight bits are used.
It seems like there was an error here...
I don't see the corresponding log entry
Parsing back, I found this email from gdb-cvs mailing list,
but this only changes the ChangeLog file without changing
the i387-nat.c .....
CVSROOT: /cvs/src
Module name: src
Branch: gdb_5_1-2001-07-29-branch
Changes by: kevinb@sources.redhat.com 2001-12-18 16:20:29
Modified files:
gdb : ChangeLog
Log message:
Fix x86 floating point vs. thread problem in 5.1 branch.
Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/gdb/ChangeLog.diff?cvsroot=src&only_with_tag=gdb_5_1-2001-07-29-branch&r1=1.1527.2.62&r2=1.1527.2.63
Pierre Muller
Institut Charles Sadron
6,rue Boussingault
F 67083 STRASBOURG CEDEX (France)
mailto:muller@ics.u-strasbg.fr
Phone : (33)-3-88-41-40-07 Fax : (33)-3-88-41-40-99
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: GDB 5.1.1
2002-01-24 8:25 ` Pierre Muller
@ 2002-01-24 22:44 ` Kevin Buettner
0 siblings, 0 replies; 4+ messages in thread
From: Kevin Buettner @ 2002-01-24 22:44 UTC (permalink / raw)
To: Pierre Muller, Andrew Cagney, kevinb; +Cc: gdb-patches
On Jan 24, 5:25pm, Pierre Muller wrote:
> CVSROOT: /cvs/src
> Module name: src
> Branch: gdb_5_1-2001-07-29-branch
> Changes by: kevinb@sources.redhat.com 2001-12-18 16:20:29
>
> Modified files:
> gdb : ChangeLog
>
> Log message:
> Fix x86 floating point vs. thread problem in 5.1 branch.
>
> Patches:
> http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/gdb/ChangeLog.diff?cvsroot=src&only_with_tag=gdb_5_1-2001-07-29-branch&r1=1.1527.2.62&r2=1.1527.2.63
Hmm...
Yep, I still have that patch sitting in my sandbox. I've just committed
it.
Sorry about that.
Kevin
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2002-01-25 6:44 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <20020124073228.728EA3D8C@localhost.cygnus.com>
2002-01-24 0:57 ` GDB 5.1.1 Pierre Muller
2002-01-24 8:14 ` Andrew Cagney
2002-01-24 8:25 ` Pierre Muller
2002-01-24 22:44 ` Kevin Buettner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox