* Re: current CVS gdb and SSE xmm registers don't work [RESEND]
[not found] ` <3B688E65.1040308@cygnus.com>
@ 2001-08-02 3:00 ` Mark Kettenis
2001-08-02 7:02 ` Eli Zaretskii
2001-08-02 10:11 ` current CVS gdb and SSE xmm registers don't work [RESEND] Andrew Cagney
0 siblings, 2 replies; 7+ messages in thread
From: Mark Kettenis @ 2001-08-02 3:00 UTC (permalink / raw)
To: ac131313; +Cc: gdb
Date: Wed, 01 Aug 2001 19:19:01 -0400
From: Andrew Cagney <ac131313@cygnus.com>
> Fixing this requires a serious amount of work. It requires changes to
> both GDB and glibc. It definitely isn't going to happen overnight,
> especially since I only have a Pentium MMX machine.
Mark, it would proably be useful to mention this in gdb/README under the
host/target section.
Which section do you mean? We only have a section `Host/target
specific installation notes'. Doesn't seem an appropriate section to
me. Should I add a section `Known problems' for this purpose (just
before or after `Reporting Bugs')?
Mark
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: current CVS gdb and SSE xmm registers don't work [RESEND]
2001-08-02 3:00 ` current CVS gdb and SSE xmm registers don't work [RESEND] Mark Kettenis
@ 2001-08-02 7:02 ` Eli Zaretskii
2001-08-02 10:12 ` Andrew Cagney
2001-08-02 12:00 ` [PATCH] Re: current CVS gdb and SSE xmm registers don't work Mark Kettenis
2001-08-02 10:11 ` current CVS gdb and SSE xmm registers don't work [RESEND] Andrew Cagney
1 sibling, 2 replies; 7+ messages in thread
From: Eli Zaretskii @ 2001-08-02 7:02 UTC (permalink / raw)
To: Mark Kettenis; +Cc: ac131313, gdb
On Thu, 2 Aug 2001, Mark Kettenis wrote:
> Mark, it would proably be useful to mention this in gdb/README under the
> host/target section.
>
> Which section do you mean? We only have a section `Host/target
> specific installation notes'.
How about in NEWS? We should tell there that SSE is supported (it wasn't
in v5.0, right?), and while at that, mention the limitations.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: current CVS gdb and SSE xmm registers don't work [RESEND]
2001-08-02 3:00 ` current CVS gdb and SSE xmm registers don't work [RESEND] Mark Kettenis
2001-08-02 7:02 ` Eli Zaretskii
@ 2001-08-02 10:11 ` Andrew Cagney
2001-08-02 12:06 ` Mark Kettenis
1 sibling, 1 reply; 7+ messages in thread
From: Andrew Cagney @ 2001-08-02 10:11 UTC (permalink / raw)
To: Mark Kettenis; +Cc: gdb
> Date: Wed, 01 Aug 2001 19:19:01 -0400
> From: Andrew Cagney <ac131313@cygnus.com>
>
>> Fixing this requires a serious amount of work. It requires changes to
> > both GDB and glibc. It definitely isn't going to happen overnight,
> > especially since I only have a Pentium MMX machine.
>
> Mark, it would proably be useful to mention this in gdb/README under the
> host/target section.
>
> Which section do you mean? We only have a section `Host/target
> specific installation notes'. Doesn't seem an appropriate section to
> me. Should I add a section `Known problems' for this purpose (just
> before or after `Reporting Bugs')?
If I changed the title to ``Host/target specific notes'' would it help?
I would like it to be possible for a user to just read (dare I say skim?
:-) the README file and then successfully build GDB. Having all the
host/target specific issues in one spot would hopefully help this.
Andrew
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: current CVS gdb and SSE xmm registers don't work [RESEND]
2001-08-02 7:02 ` Eli Zaretskii
@ 2001-08-02 10:12 ` Andrew Cagney
2001-08-02 12:00 ` [PATCH] Re: current CVS gdb and SSE xmm registers don't work Mark Kettenis
1 sibling, 0 replies; 7+ messages in thread
From: Andrew Cagney @ 2001-08-02 10:12 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: Mark Kettenis, gdb
>> Mark, it would proably be useful to mention this in gdb/README under the
>> host/target section.
>>
>> Which section do you mean? We only have a section `Host/target
>> specific installation notes'.
>
>
> How about in NEWS? We should tell there that SSE is supported (it wasn't
> in v5.0, right?), and while at that, mention the limitations.
If it wasn't in 5.0 then definitily a mention in news.
Andrew
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] Re: current CVS gdb and SSE xmm registers don't work
2001-08-02 7:02 ` Eli Zaretskii
2001-08-02 10:12 ` Andrew Cagney
@ 2001-08-02 12:00 ` Mark Kettenis
1 sibling, 0 replies; 7+ messages in thread
From: Mark Kettenis @ 2001-08-02 12:00 UTC (permalink / raw)
To: eliz; +Cc: ac131313, gdb, gdb-patches
Date: Thu, 2 Aug 2001 16:48:58 +0300 (IDT)
From: Eli Zaretskii <eliz@is.elta.co.il>
How about in NEWS? We should tell there that SSE is supported (it wasn't
in v5.0, right?), and while at that, mention the limitations.
SSE was already mentioned. Anyway, I checked in the attached patch.
Index: ChangeLog
from Mark Kettenis <kettenis@gnu.org>
* NEWS: Update.
Index: NEWS
===================================================================
RCS file: /cvs/src/src/gdb/NEWS,v
retrieving revision 1.31
diff -u -p -r1.31 NEWS
--- NEWS 2001/07/29 08:03:36 1.31
+++ NEWS 2001/08/02 18:35:06
@@ -120,9 +120,14 @@ documentation of `hookpost' in the GDB m
* Changes in GNU/Linux native debugging.
+Support for debugging multi-threaded programs has been completely
+revised for all platforms except m68k and sparc. You can now debug as
+many threads as your system allows you to have.
+
Attach/detach is supported for multi-threaded programs.
-Support for SSE registers was added.
+Support for SSE registers was added for x86. This doesn't work for
+multi-threaded programs though.
* Changes in MIPS configurations.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: current CVS gdb and SSE xmm registers don't work [RESEND]
2001-08-02 10:11 ` current CVS gdb and SSE xmm registers don't work [RESEND] Andrew Cagney
@ 2001-08-02 12:06 ` Mark Kettenis
2001-08-03 1:49 ` Eli Zaretskii
0 siblings, 1 reply; 7+ messages in thread
From: Mark Kettenis @ 2001-08-02 12:06 UTC (permalink / raw)
To: ac131313; +Cc: gdb
Date: Thu, 02 Aug 2001 13:11:12 -0400
From: Andrew Cagney <ac131313@cygnus.com>
If I changed the title to ``Host/target specific notes'' would it
help?
Yep, but ...
I would like it to be possible for a user to just read (dare I say skim?
:-) the README file and then successfully build GDB. Having all the
host/target specific issues in one spot would hopefully help this.
There is a considerable difference between Host/target specific
installation notes, Host/target specific runtime-problems. The
installation notes are only relevant to the person that installs GDB,
while the "Known problems" are relevant to all users of GDB. Perhaps
we can add a section to the GDB manual?
Mark
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: current CVS gdb and SSE xmm registers don't work [RESEND]
2001-08-02 12:06 ` Mark Kettenis
@ 2001-08-03 1:49 ` Eli Zaretskii
0 siblings, 0 replies; 7+ messages in thread
From: Eli Zaretskii @ 2001-08-03 1:49 UTC (permalink / raw)
To: kettenis; +Cc: ac131313, gdb
> Date: Thu, 2 Aug 2001 21:05:40 +0200
> From: Mark Kettenis <kettenis@wins.uva.nl>
>
> There is a considerable difference between Host/target specific
> installation notes, Host/target specific runtime-problems. The
> installation notes are only relevant to the person that installs GDB,
> while the "Known problems" are relevant to all users of GDB. Perhaps
> we can add a section to the GDB manual?
As Stan pointed out recently, we already have in the manual a chapter
named "Configuration-Specific Information". All system-specific
information as well as target-specific commands should be documented
there, in appropriately-named sections.
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2001-08-03 1:49 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <01073123414300.04519@astral>
[not found] ` <s3ibslzjsy4.fsf@soliton.wins.uva.nl>
[not found] ` <3B688E65.1040308@cygnus.com>
2001-08-02 3:00 ` current CVS gdb and SSE xmm registers don't work [RESEND] Mark Kettenis
2001-08-02 7:02 ` Eli Zaretskii
2001-08-02 10:12 ` Andrew Cagney
2001-08-02 12:00 ` [PATCH] Re: current CVS gdb and SSE xmm registers don't work Mark Kettenis
2001-08-02 10:11 ` current CVS gdb and SSE xmm registers don't work [RESEND] Andrew Cagney
2001-08-02 12:06 ` Mark Kettenis
2001-08-03 1:49 ` Eli Zaretskii
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox