* 4.17.87 patch SVR5
1999-04-01 0:00 4.17.87 patch SVR5 Robert Lipe
@ 1999-03-26 11:09 ` Robert Lipe
1999-04-01 0:00 ` Stan Shebs
1 sibling, 0 replies; 8+ messages in thread
From: Robert Lipe @ 1999-03-26 11:09 UTC (permalink / raw)
To: gdb-patches
Much better. Missed it by only one line this time. :-)
(robertl) rjlinux:/home/robertl/tmp/gdb/gdb-4.17.87/gdb
$ diff -u configure.tgt_ configure.tgt
--- configure.tgt_ Fri Mar 26 12:43:35 1999
+++ configure.tgt Fri Mar 26 12:45:41 1999
@@ -100,6 +100,7 @@
i[3456]86-*-sunos*) gdb_target=sun386 ;;
i[3456]86-*-sysv4.2MP) gdb_target=i386v42mp ;;
i[3456]86-*-sysv4.2uw2*) gdb_target=i386v42mp ;;
+i[3456]86-*-sysv5*) gdb_target=i386v42mp ;;
i[3456]86-*-sysv4*) gdb_target=i386v4 ;;
i[3456]86-*-unixware2*) gdb_target=i386v42mp ;;
i[3456]86-*-unixware*) gdb_target=i386v4 ;;
Test results to follow.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: 4.17.87 patch SVR5
1999-04-01 0:00 ` Stan Shebs
@ 1999-03-26 12:21 ` Stan Shebs
1999-03-26 12:41 ` Robert Lipe
1 sibling, 0 replies; 8+ messages in thread
From: Stan Shebs @ 1999-03-26 12:21 UTC (permalink / raw)
To: robertl; +Cc: gdb-patches
Date: Fri, 26 Mar 1999 13:09:14 -0600
From: Robert Lipe <robertl@sco.com>
Much better. Missed it by only one line this time. :-)
Ah ha, you've been holding out on me, you dirty software hoarder. :-) :-)
I'm adding that to the repository now. In exchange for the added
line, I collapsed the two 4.2 configs:
i[3456]86-*-sysv4.2MP) gdb_target=i386v42mp ;;
i[3456]86-*-sysv4.2uw2*) gdb_target=i386v42mp ;;
to
i[3456]86-*-sysv4.2*) gdb_target=i386v42mp ;;
I assume this is a plausible thing to do, but I'll go along with people
who know more about the minutiae of SCO/Unixware configs.
Stan
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: 4.17.87 patch SVR5
1999-04-01 0:00 ` Stan Shebs
1999-03-26 12:21 ` Stan Shebs
@ 1999-03-26 12:41 ` Robert Lipe
1999-03-31 16:25 ` Stan Shebs
1999-04-01 0:00 ` Robert Lipe
1 sibling, 2 replies; 8+ messages in thread
From: Robert Lipe @ 1999-03-26 12:41 UTC (permalink / raw)
To: Stan Shebs; +Cc: gdb-patches
> Much better. Missed it by only one line this time. :-)
> Ah ha, you've been holding out on me, you dirty software hoarder. :-) :-)
I offer exhibit A in which it is clearly shown the defendant is not
a hoarder and has offered this very patch before:
http://www.cygnus.com/ml/gdb-patches/1999-Mar/0065.html
> I'm adding that to the repository now.
Thank you.
> In exchange for the added line
The shame of the bloat was killing me. :-)
> I collapsed the two 4.2 configs:
>
> i[3456]86-*-sysv4.2MP) gdb_target=i386v42mp ;;
> i[3456]86-*-sysv4.2uw2*) gdb_target=i386v42mp ;;
>
> to
>
> i[3456]86-*-sysv4.2*) gdb_target=i386v42mp ;;
>
> I assume this is a plausible thing to do, but I'll go along with people
> who know more about the minutiae of SCO/Unixware configs.
Executive summary: Looks fine to me.
I don't know *what* had been going on with this particular config in
various GNU configure mechanisms. As I remember history (and I could
be wrong) on X86 the only commercially available SVR4.2 product was
UnixWare and it was available only in MP version, but did run on a uni.
UW1* and UW2* were both MP-capable but I think they did differ in how
they represented /proc. So why these were ever differentiated to GDB
in this way utterly escapes me. This was also indirectly responsible
for me wandering around inside procfs for completely too long when I
overrode --host and got the "wrong" case on MP and therefor got the
wrong /proc handling. So I think you're doing the world a favor in
collapsing the above *if* config.guess doesn't outsmart us on that
target.
Perhaps it all predates standardized config.guess schemes and different
packages just picked different representations. I don't know. I didn't
closely follow UW during that era.
Rodney, can you confirm this doesn't hose UW2?
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: 4.17.87 patch SVR5
1999-03-26 12:41 ` Robert Lipe
@ 1999-03-31 16:25 ` Stan Shebs
1999-04-01 0:00 ` Stan Shebs
1999-04-01 0:00 ` Robert Lipe
1 sibling, 1 reply; 8+ messages in thread
From: Stan Shebs @ 1999-03-31 16:25 UTC (permalink / raw)
To: robertl; +Cc: gdb-patches
Date: Fri, 26 Mar 1999 14:41:06 -0600
From: Robert Lipe <robertl@sco.com>
> Much better. Missed it by only one line this time. :-)
> Ah ha, you've been holding out on me, you dirty software hoarder. :-) :-)
I offer exhibit A in which it is clearly shown the defendant is not
a hoarder and has offered this very patch before:
http://www.cygnus.com/ml/gdb-patches/1999-Mar/0065.html
You're right and I'm lame... :-)
I don't know *what* had been going on with this particular config in
various GNU configure mechanisms.
Different people with different ideas about which systems are which.
Cygnus has tangled with versions of Unixware a couple times, but the
systems were so difficult to use that they didn't get much dedicated
attention. This is one area where I'd like to rely on people who
have more hands-on experience with the actual systems...
Stan
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: 4.17.87 patch SVR5
1999-04-01 0:00 4.17.87 patch SVR5 Robert Lipe
1999-03-26 11:09 ` Robert Lipe
@ 1999-04-01 0:00 ` Stan Shebs
1999-03-26 12:21 ` Stan Shebs
1999-03-26 12:41 ` Robert Lipe
1 sibling, 2 replies; 8+ messages in thread
From: Stan Shebs @ 1999-04-01 0:00 UTC (permalink / raw)
To: robertl; +Cc: gdb-patches
Date: Fri, 26 Mar 1999 13:09:14 -0600
From: Robert Lipe <robertl@sco.com>
Much better. Missed it by only one line this time. :-)
Ah ha, you've been holding out on me, you dirty software hoarder. :-) :-)
I'm adding that to the repository now. In exchange for the added
line, I collapsed the two 4.2 configs:
i[3456]86-*-sysv4.2MP) gdb_target=i386v42mp ;;
i[3456]86-*-sysv4.2uw2*) gdb_target=i386v42mp ;;
to
i[3456]86-*-sysv4.2*) gdb_target=i386v42mp ;;
I assume this is a plausible thing to do, but I'll go along with people
who know more about the minutiae of SCO/Unixware configs.
Stan
^ permalink raw reply [flat|nested] 8+ messages in thread
* 4.17.87 patch SVR5
@ 1999-04-01 0:00 Robert Lipe
1999-03-26 11:09 ` Robert Lipe
1999-04-01 0:00 ` Stan Shebs
0 siblings, 2 replies; 8+ messages in thread
From: Robert Lipe @ 1999-04-01 0:00 UTC (permalink / raw)
To: gdb-patches
Much better. Missed it by only one line this time. :-)
(robertl) rjlinux:/home/robertl/tmp/gdb/gdb-4.17.87/gdb
$ diff -u configure.tgt_ configure.tgt
--- configure.tgt_ Fri Mar 26 12:43:35 1999
+++ configure.tgt Fri Mar 26 12:45:41 1999
@@ -100,6 +100,7 @@
i[3456]86-*-sunos*) gdb_target=sun386 ;;
i[3456]86-*-sysv4.2MP) gdb_target=i386v42mp ;;
i[3456]86-*-sysv4.2uw2*) gdb_target=i386v42mp ;;
+i[3456]86-*-sysv5*) gdb_target=i386v42mp ;;
i[3456]86-*-sysv4*) gdb_target=i386v4 ;;
i[3456]86-*-unixware2*) gdb_target=i386v42mp ;;
i[3456]86-*-unixware*) gdb_target=i386v4 ;;
Test results to follow.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: 4.17.87 patch SVR5
1999-03-31 16:25 ` Stan Shebs
@ 1999-04-01 0:00 ` Stan Shebs
0 siblings, 0 replies; 8+ messages in thread
From: Stan Shebs @ 1999-04-01 0:00 UTC (permalink / raw)
To: robertl; +Cc: gdb-patches
Date: Fri, 26 Mar 1999 14:41:06 -0600
From: Robert Lipe <robertl@sco.com>
> Much better. Missed it by only one line this time. :-)
> Ah ha, you've been holding out on me, you dirty software hoarder. :-) :-)
I offer exhibit A in which it is clearly shown the defendant is not
a hoarder and has offered this very patch before:
http://www.cygnus.com/ml/gdb-patches/1999-Mar/0065.html
You're right and I'm lame... :-)
I don't know *what* had been going on with this particular config in
various GNU configure mechanisms.
Different people with different ideas about which systems are which.
Cygnus has tangled with versions of Unixware a couple times, but the
systems were so difficult to use that they didn't get much dedicated
attention. This is one area where I'd like to rely on people who
have more hands-on experience with the actual systems...
Stan
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: 4.17.87 patch SVR5
1999-03-26 12:41 ` Robert Lipe
1999-03-31 16:25 ` Stan Shebs
@ 1999-04-01 0:00 ` Robert Lipe
1 sibling, 0 replies; 8+ messages in thread
From: Robert Lipe @ 1999-04-01 0:00 UTC (permalink / raw)
To: Stan Shebs; +Cc: gdb-patches
> Much better. Missed it by only one line this time. :-)
> Ah ha, you've been holding out on me, you dirty software hoarder. :-) :-)
I offer exhibit A in which it is clearly shown the defendant is not
a hoarder and has offered this very patch before:
http://www.cygnus.com/ml/gdb-patches/1999-Mar/0065.html
> I'm adding that to the repository now.
Thank you.
> In exchange for the added line
The shame of the bloat was killing me. :-)
> I collapsed the two 4.2 configs:
>
> i[3456]86-*-sysv4.2MP) gdb_target=i386v42mp ;;
> i[3456]86-*-sysv4.2uw2*) gdb_target=i386v42mp ;;
>
> to
>
> i[3456]86-*-sysv4.2*) gdb_target=i386v42mp ;;
>
> I assume this is a plausible thing to do, but I'll go along with people
> who know more about the minutiae of SCO/Unixware configs.
Executive summary: Looks fine to me.
I don't know *what* had been going on with this particular config in
various GNU configure mechanisms. As I remember history (and I could
be wrong) on X86 the only commercially available SVR4.2 product was
UnixWare and it was available only in MP version, but did run on a uni.
UW1* and UW2* were both MP-capable but I think they did differ in how
they represented /proc. So why these were ever differentiated to GDB
in this way utterly escapes me. This was also indirectly responsible
for me wandering around inside procfs for completely too long when I
overrode --host and got the "wrong" case on MP and therefor got the
wrong /proc handling. So I think you're doing the world a favor in
collapsing the above *if* config.guess doesn't outsmart us on that
target.
Perhaps it all predates standardized config.guess schemes and different
packages just picked different representations. I don't know. I didn't
closely follow UW during that era.
Rodney, can you confirm this doesn't hose UW2?
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~1999-04-01 0:00 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-04-01 0:00 4.17.87 patch SVR5 Robert Lipe
1999-03-26 11:09 ` Robert Lipe
1999-04-01 0:00 ` Stan Shebs
1999-03-26 12:21 ` Stan Shebs
1999-03-26 12:41 ` Robert Lipe
1999-03-31 16:25 ` Stan Shebs
1999-04-01 0:00 ` Stan Shebs
1999-04-01 0:00 ` Robert Lipe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox