patch for config.guess on unixware 7.0.1. Was: new system compilation

Robert Lipe robertl@dgii.com
Tue Oct 20 10:13:00 GMT 1998


[ Please try to pick good subjects to your message is likely to catch
the eyes of the people that can best help.  Given the volume on this
list, I doubt that everybody reads everything. ]


Allan Meidlein wrote:

> I have successfully compiled egcs 1.1b on an Intel Pentium 200 MMX
> running SCO UnixWare 7.0.1 using gcc 2.8.0; I had to modify the
> config.guess from i?86:*:5:7 to i?86:*:5:7.0.1 so that it would
> recognize "uname -v" which returns 7.0.1.

That forward compatibility thing is tough, but I should have seen this
one coming.

If there are no objections, I'll install the following patch:

	* config.guess: Match any version of Unixware7.

Index: config.guess
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/config.guess,v
retrieving revision 1.19
diff -u -p -r1.19 config.guess
--- config.guess        1998/10/09 00:15:05     1.19
+++ config.guess        1998/10/20 16:21:11
@@ -688,7 +688,7 @@ EOF
                echo ${UNAME_MACHINE}-pc-sysv${UNAME_RELEASE}
        fi
        exit 0 ;;
-    i?86:*:5:7)
+    i?86:*:5:7*)
        UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')`
        (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486
        (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \


Jeff, since the 7.0.1 update is free and is downloadable, I suspect we
should probably do this in the release branch, too.   Can you please apply
it over there?   I can do it on the trunk.

Thanx,
RJL



More information about the Gcc-patches mailing list