Mercurial > emacs
annotate config.guess @ 29377:b614192b22ce
(isearch-other-meta-char): Fix previous change.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Fri, 02 Jun 2000 03:19:24 +0000 |
parents | fad18c8cd792 |
children | 65667218173f |
rev | line source |
---|---|
10703
7072187c3d81
add a space in #! for 4.2bsd dynix etc.
David J. MacKenzie <djm@gnu.org>
parents:
10660
diff
changeset
|
1 #! /bin/sh |
9610
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9599
diff
changeset
|
2 # Attempt to guess a canonical system name. |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
3 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000 |
24739
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
4 # Free Software Foundation, Inc. |
2907 | 5 # |
6 # This file is free software; you can redistribute it and/or modify it | |
7 # under the terms of the GNU General Public License as published by | |
8 # the Free Software Foundation; either version 2 of the License, or | |
9 # (at your option) any later version. | |
10 # | |
11 # This program is distributed in the hope that it will be useful, but | |
12 # WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 # General Public License for more details. | |
15 # | |
16 # You should have received a copy of the GNU General Public License | |
17 # along with this program; if not, write to the Free Software | |
12858
63ad7aaa9e35
Changes for Linux and LynxOS.
Per Bothner <bothner@cygnus.com>
parents:
12417
diff
changeset
|
18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
9610
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9599
diff
changeset
|
19 # |
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9599
diff
changeset
|
20 # As a special exception to the GNU General Public License, if you |
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9599
diff
changeset
|
21 # distribute this file as part of a program that contains a |
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9599
diff
changeset
|
22 # configuration script generated by Autoconf, you may include it under |
6c39fe6d9581
Add licensing exception for Autoconf.
David J. MacKenzie <djm@gnu.org>
parents:
9599
diff
changeset
|
23 # the same distribution terms that you use for the rest of that program. |
2907 | 24 |
8657
467447f7f6f5
Various fixes (freebsd, ncr, nextstep): See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
8640
diff
changeset
|
25 # Written by Per Bothner <bothner@cygnus.com>. |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
26 # Please send patches to <config-patches@gnu.org>. |
2907 | 27 # |
3622 | 28 # This script attempts to guess a canonical system name similar to |
8373 | 29 # config.sub. If it succeeds, it prints the system name on stdout, and |
30 # exits with 0. Otherwise, it exits with 1. | |
2907 | 31 # |
32 # The plan is that this can be called by configure scripts if you | |
33 # don't specify an explicit system type (host/target name). | |
34 # | |
35 # Only a few systems have been added to this list; please add others | |
36 # (but try to keep the structure clean). | |
37 # | |
38 | |
24588
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
39 # Use $HOST_CC if defined. $CC may point to a cross-compiler |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
40 if test x"$CC_FOR_BUILD" = x; then |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
41 if test x"$HOST_CC" != x; then |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
42 CC_FOR_BUILD="$HOST_CC" |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
43 else |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
44 if test x"$CC" != x; then |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
45 CC_FOR_BUILD="$CC" |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
46 else |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
47 CC_FOR_BUILD=cc |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
48 fi |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
49 fi |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
50 fi |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
51 |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
52 |
8628
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
53 # This is needed to find uname on a Pyramid OSx when run in the BSD universe. |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
54 # (ghazi@noc.rutgers.edu 8/24/94.) |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
55 if (test -f /.attbin/uname) >/dev/null 2>&1 ; then |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
56 PATH=$PATH:/.attbin ; export PATH |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
57 fi |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
58 |
2907 | 59 UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown |
60 UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown | |
61 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown | |
62 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown | |
63 | |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
64 dummy=dummy-$$ |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
65 trap 'rm -f $dummy.c $dummy.o $dummy; exit 1' 1 2 15 |
8373 | 66 |
2907 | 67 # Note: order is significant - the case branches are not exclusive. |
68 | |
69 case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in | |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
70 *:NetBSD:*:*) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
71 # Netbsd (nbsd) targets should (where applicable) match one or |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
72 # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
73 # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
74 # switched to ELF, *-*-netbsd* would select the old |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
75 # object file format. This provides both forward |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
76 # compatibility and a consistent mechanism for selecting the |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
77 # object file format. |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
78 # Determine the machine/vendor (is the vendor relevant). |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
79 case "${UNAME_MACHINE}" in |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
80 amiga) machine=m68k-cbm ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
81 arm32) machine=arm-unknown ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
82 atari*) machine=m68k-atari ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
83 sun3*) machine=m68k-sun ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
84 mac68k) machine=m68k-apple ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
85 macppc) machine=powerpc-apple ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
86 hp3[0-9][05]) machine=m68k-hp ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
87 ibmrt|romp-ibm) machine=romp-ibm ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
88 *) machine=${UNAME_MACHINE}-unknown ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
89 esac |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
90 # The Operating System including object format. |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
91 if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
92 | grep __ELF__ >/dev/null |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
93 then |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
94 # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
95 # Return netbsd for either. FIX? |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
96 os=netbsd |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
97 else |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
98 os=netbsdelf |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
99 fi |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
100 # The OS release |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
101 release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
102 # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
103 # contains redundant information, the shorter form: |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
104 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
105 echo "${machine}-${os}${release}" |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
106 exit 0 ;; |
15013
aad88afa6a0c
* config.guess: Combine two OSF1 rules.
Per Bothner <bothner@cygnus.com>
parents:
14961
diff
changeset
|
107 alpha:OSF1:*:*) |
19819
97dbdfb505f9
(alpha:OSF1:*:*): For V4.0, get the letter suffix.
Richard Kenner <kenner@gnu.org>
parents:
19540
diff
changeset
|
108 if test $UNAME_RELEASE = "V4.0"; then |
97dbdfb505f9
(alpha:OSF1:*:*): For V4.0, get the letter suffix.
Richard Kenner <kenner@gnu.org>
parents:
19540
diff
changeset
|
109 UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` |
97dbdfb505f9
(alpha:OSF1:*:*): For V4.0, get the letter suffix.
Richard Kenner <kenner@gnu.org>
parents:
19540
diff
changeset
|
110 fi |
15013
aad88afa6a0c
* config.guess: Combine two OSF1 rules.
Per Bothner <bothner@cygnus.com>
parents:
14961
diff
changeset
|
111 # A Vn.n version is a released version. |
aad88afa6a0c
* config.guess: Combine two OSF1 rules.
Per Bothner <bothner@cygnus.com>
parents:
14961
diff
changeset
|
112 # A Tn.n version is a released field test version. |
aad88afa6a0c
* config.guess: Combine two OSF1 rules.
Per Bothner <bothner@cygnus.com>
parents:
14961
diff
changeset
|
113 # A Xn.n version is an unreleased experimental baselevel. |
aad88afa6a0c
* config.guess: Combine two OSF1 rules.
Per Bothner <bothner@cygnus.com>
parents:
14961
diff
changeset
|
114 # 1.2 uses "1.2" for uname -r. |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
115 cat <<EOF >$dummy.s |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
116 .data |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
117 \$Lformat: |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
118 .byte 37,100,45,37,120,10,0 # "%d-%x\n" |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
119 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
120 .text |
18887
63da9a245413
(alpha*): Run program to see if ev4, ev5, or ev56.
Richard Kenner <kenner@gnu.org>
parents:
18823
diff
changeset
|
121 .globl main |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
122 .align 4 |
18887
63da9a245413
(alpha*): Run program to see if ev4, ev5, or ev56.
Richard Kenner <kenner@gnu.org>
parents:
18823
diff
changeset
|
123 .ent main |
63da9a245413
(alpha*): Run program to see if ev4, ev5, or ev56.
Richard Kenner <kenner@gnu.org>
parents:
18823
diff
changeset
|
124 main: |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
125 .frame \$30,16,\$26,0 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
126 ldgp \$29,0(\$27) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
127 .prologue 1 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
128 .long 0x47e03d80 # implver \$0 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
129 lda \$2,-1 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
130 .long 0x47e20c21 # amask \$2,\$1 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
131 lda \$16,\$Lformat |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
132 mov \$0,\$17 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
133 not \$1,\$18 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
134 jsr \$26,printf |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
135 ldgp \$29,0(\$26) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
136 mov 0,\$16 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
137 jsr \$26,exit |
18887
63da9a245413
(alpha*): Run program to see if ev4, ev5, or ev56.
Richard Kenner <kenner@gnu.org>
parents:
18823
diff
changeset
|
138 .end main |
63da9a245413
(alpha*): Run program to see if ev4, ev5, or ev56.
Richard Kenner <kenner@gnu.org>
parents:
18823
diff
changeset
|
139 EOF |
24588
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
140 $CC_FOR_BUILD $dummy.s -o $dummy 2>/dev/null |
18887
63da9a245413
(alpha*): Run program to see if ev4, ev5, or ev56.
Richard Kenner <kenner@gnu.org>
parents:
18823
diff
changeset
|
141 if test "$?" = 0 ; then |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
142 case `./$dummy` in |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
143 0-0) |
19847
f4f4b72d1239
(alpha): Replace CPU-determining program with one that's more precise
Richard Kenner <kenner@gnu.org>
parents:
19819
diff
changeset
|
144 UNAME_MACHINE="alpha" |
f4f4b72d1239
(alpha): Replace CPU-determining program with one that's more precise
Richard Kenner <kenner@gnu.org>
parents:
19819
diff
changeset
|
145 ;; |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
146 1-0) |
18887
63da9a245413
(alpha*): Run program to see if ev4, ev5, or ev56.
Richard Kenner <kenner@gnu.org>
parents:
18823
diff
changeset
|
147 UNAME_MACHINE="alphaev5" |
63da9a245413
(alpha*): Run program to see if ev4, ev5, or ev56.
Richard Kenner <kenner@gnu.org>
parents:
18823
diff
changeset
|
148 ;; |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
149 1-1) |
18887
63da9a245413
(alpha*): Run program to see if ev4, ev5, or ev56.
Richard Kenner <kenner@gnu.org>
parents:
18823
diff
changeset
|
150 UNAME_MACHINE="alphaev56" |
63da9a245413
(alpha*): Run program to see if ev4, ev5, or ev56.
Richard Kenner <kenner@gnu.org>
parents:
18823
diff
changeset
|
151 ;; |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
152 1-101) |
19847
f4f4b72d1239
(alpha): Replace CPU-determining program with one that's more precise
Richard Kenner <kenner@gnu.org>
parents:
19819
diff
changeset
|
153 UNAME_MACHINE="alphapca56" |
f4f4b72d1239
(alpha): Replace CPU-determining program with one that's more precise
Richard Kenner <kenner@gnu.org>
parents:
19819
diff
changeset
|
154 ;; |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
155 2-303) |
19847
f4f4b72d1239
(alpha): Replace CPU-determining program with one that's more precise
Richard Kenner <kenner@gnu.org>
parents:
19819
diff
changeset
|
156 UNAME_MACHINE="alphaev6" |
f4f4b72d1239
(alpha): Replace CPU-determining program with one that's more precise
Richard Kenner <kenner@gnu.org>
parents:
19819
diff
changeset
|
157 ;; |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
158 2-307) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
159 UNAME_MACHINE="alphaev67" |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
160 ;; |
18887
63da9a245413
(alpha*): Run program to see if ev4, ev5, or ev56.
Richard Kenner <kenner@gnu.org>
parents:
18823
diff
changeset
|
161 esac |
63da9a245413
(alpha*): Run program to see if ev4, ev5, or ev56.
Richard Kenner <kenner@gnu.org>
parents:
18823
diff
changeset
|
162 fi |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
163 rm -f $dummy.s $dummy |
24739
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
164 echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
165 exit 0 ;; |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
166 Alpha\ *:Windows_NT*:*) |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
167 # How do we know it's Interix rather than the generic POSIX subsystem? |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
168 # Should we change UNAME_MACHINE based on the output of uname instead |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
169 # of the specific Alpha model? |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
170 echo alpha-pc-interix |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
171 exit 0 ;; |
11967
cfc4dac71b6a
(21064:Windows_NT:50:3): New case.
Richard Kenner <kenner@gnu.org>
parents:
11814
diff
changeset
|
172 21064:Windows_NT:50:3) |
cfc4dac71b6a
(21064:Windows_NT:50:3): New case.
Richard Kenner <kenner@gnu.org>
parents:
11814
diff
changeset
|
173 echo alpha-dec-winnt3.5 |
cfc4dac71b6a
(21064:Windows_NT:50:3): New case.
Richard Kenner <kenner@gnu.org>
parents:
11814
diff
changeset
|
174 exit 0 ;; |
14556
e5c95b865af5
* config.guess: Support m68k-cbm-sysv4.
Per Bothner <bothner@cygnus.com>
parents:
14447
diff
changeset
|
175 Amiga*:UNIX_System_V:4.0:*) |
e5c95b865af5
* config.guess: Support m68k-cbm-sysv4.
Per Bothner <bothner@cygnus.com>
parents:
14447
diff
changeset
|
176 echo m68k-cbm-sysv4 |
e5c95b865af5
* config.guess: Support m68k-cbm-sysv4.
Per Bothner <bothner@cygnus.com>
parents:
14447
diff
changeset
|
177 exit 0;; |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
178 amiga:OpenBSD:*:*) |
17403
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
179 echo m68k-unknown-openbsd${UNAME_RELEASE} |
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
180 exit 0 ;; |
22785
3ec05468d4e7
(*:[Aa]miga[Oo][Ss]:*:*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
22477
diff
changeset
|
181 *:[Aa]miga[Oo][Ss]:*:*) |
3ec05468d4e7
(*:[Aa]miga[Oo][Ss]:*:*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
22477
diff
changeset
|
182 echo ${UNAME_MACHINE}-unknown-amigaos |
3ec05468d4e7
(*:[Aa]miga[Oo][Ss]:*:*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
22477
diff
changeset
|
183 exit 0 ;; |
17499
77604d2454dc
Fixes for MIPS OpenBSD systems (from Per Fogelstrom
Ian Lance Taylor <ian@cygnus.com>
parents:
17403
diff
changeset
|
184 arc64:OpenBSD:*:*) |
17403
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
185 echo mips64el-unknown-openbsd${UNAME_RELEASE} |
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
186 exit 0 ;; |
17499
77604d2454dc
Fixes for MIPS OpenBSD systems (from Per Fogelstrom
Ian Lance Taylor <ian@cygnus.com>
parents:
17403
diff
changeset
|
187 arc:OpenBSD:*:*) |
77604d2454dc
Fixes for MIPS OpenBSD systems (from Per Fogelstrom
Ian Lance Taylor <ian@cygnus.com>
parents:
17403
diff
changeset
|
188 echo mipsel-unknown-openbsd${UNAME_RELEASE} |
77604d2454dc
Fixes for MIPS OpenBSD systems (from Per Fogelstrom
Ian Lance Taylor <ian@cygnus.com>
parents:
17403
diff
changeset
|
189 exit 0 ;; |
77604d2454dc
Fixes for MIPS OpenBSD systems (from Per Fogelstrom
Ian Lance Taylor <ian@cygnus.com>
parents:
17403
diff
changeset
|
190 hkmips:OpenBSD:*:*) |
77604d2454dc
Fixes for MIPS OpenBSD systems (from Per Fogelstrom
Ian Lance Taylor <ian@cygnus.com>
parents:
17403
diff
changeset
|
191 echo mips-unknown-openbsd${UNAME_RELEASE} |
17403
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
192 exit 0 ;; |
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
193 pmax:OpenBSD:*:*) |
17499
77604d2454dc
Fixes for MIPS OpenBSD systems (from Per Fogelstrom
Ian Lance Taylor <ian@cygnus.com>
parents:
17403
diff
changeset
|
194 echo mipsel-unknown-openbsd${UNAME_RELEASE} |
77604d2454dc
Fixes for MIPS OpenBSD systems (from Per Fogelstrom
Ian Lance Taylor <ian@cygnus.com>
parents:
17403
diff
changeset
|
195 exit 0 ;; |
77604d2454dc
Fixes for MIPS OpenBSD systems (from Per Fogelstrom
Ian Lance Taylor <ian@cygnus.com>
parents:
17403
diff
changeset
|
196 sgi:OpenBSD:*:*) |
77604d2454dc
Fixes for MIPS OpenBSD systems (from Per Fogelstrom
Ian Lance Taylor <ian@cygnus.com>
parents:
17403
diff
changeset
|
197 echo mips-unknown-openbsd${UNAME_RELEASE} |
17403
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
198 exit 0 ;; |
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
199 wgrisc:OpenBSD:*:*) |
17499
77604d2454dc
Fixes for MIPS OpenBSD systems (from Per Fogelstrom
Ian Lance Taylor <ian@cygnus.com>
parents:
17403
diff
changeset
|
200 echo mipsel-unknown-openbsd${UNAME_RELEASE} |
17403
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
201 exit 0 ;; |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
202 *:OS/390:*:*) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
203 echo i370-ibm-openedition |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
204 exit 0 ;; |
8373 | 205 arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) |
206 echo arm-acorn-riscix${UNAME_RELEASE} | |
207 exit 0;; | |
16842
72276b334084
Add hppa1.1-hitachi-hiuxmpp support, passed along by rms.
David J. MacKenzie <djm@gnu.org>
parents:
16832
diff
changeset
|
208 SR2?01:HI-UX/MPP:*:*) |
72276b334084
Add hppa1.1-hitachi-hiuxmpp support, passed along by rms.
David J. MacKenzie <djm@gnu.org>
parents:
16832
diff
changeset
|
209 echo hppa1.1-hitachi-hiuxmpp |
72276b334084
Add hppa1.1-hitachi-hiuxmpp support, passed along by rms.
David J. MacKenzie <djm@gnu.org>
parents:
16832
diff
changeset
|
210 exit 0;; |
24739
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
211 Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
212 # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. |
8628
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
213 if test "`(/bin/universe) 2>/dev/null`" = att ; then |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
214 echo pyramid-pyramid-sysv3 |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
215 else |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
216 echo pyramid-pyramid-bsd |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
217 fi |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
218 exit 0 ;; |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
219 NILE*:*:*:dcosx) |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
220 echo pyramid-pyramid-svr4 |
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
221 exit 0 ;; |
22477
9bc88c123895
(sun4H:SunOS:5.*:*): New case.
Richard Kenner <kenner@gnu.org>
parents:
20831
diff
changeset
|
222 sun4H:SunOS:5.*:*) |
9bc88c123895
(sun4H:SunOS:5.*:*): New case.
Richard Kenner <kenner@gnu.org>
parents:
20831
diff
changeset
|
223 echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` |
9bc88c123895
(sun4H:SunOS:5.*:*): New case.
Richard Kenner <kenner@gnu.org>
parents:
20831
diff
changeset
|
224 exit 0 ;; |
16575
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
225 sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) |
3622 | 226 echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` |
227 exit 0 ;; | |
11797
562d7cdc38e3
Recognize PCs running Solaris2. Also, some cleaning up for CRAYs.
Per Bothner <bothner@cygnus.com>
parents:
11708
diff
changeset
|
228 i86pc:SunOS:5.*:*) |
16177
da1a2b74d099
Use pc instead of unknown, for pc clone systems.
Richard M. Stallman <rms@gnu.org>
parents:
15701
diff
changeset
|
229 echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` |
11797
562d7cdc38e3
Recognize PCs running Solaris2. Also, some cleaning up for CRAYs.
Per Bothner <bothner@cygnus.com>
parents:
11708
diff
changeset
|
230 exit 0 ;; |
3622 | 231 sun4*:SunOS:6*:*) |
232 # According to config.sub, this is the proper way to canonicalize | |
233 # SunOS6. Hard to guess exactly what SunOS6 will be like, but | |
234 # it's likely to be more like Solaris than SunOS4. | |
235 echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` | |
2907 | 236 exit 0 ;; |
237 sun4*:SunOS:*:*) | |
10205
df07a5978364
(sun4:SunOS:*:*): Handle Solbourne OS/MP systems.
Richard Kenner <kenner@gnu.org>
parents:
10119
diff
changeset
|
238 case "`/usr/bin/arch -k`" in |
df07a5978364
(sun4:SunOS:*:*): Handle Solbourne OS/MP systems.
Richard Kenner <kenner@gnu.org>
parents:
10119
diff
changeset
|
239 Series*|S4*) |
df07a5978364
(sun4:SunOS:*:*): Handle Solbourne OS/MP systems.
Richard Kenner <kenner@gnu.org>
parents:
10119
diff
changeset
|
240 UNAME_RELEASE=`uname -v` |
df07a5978364
(sun4:SunOS:*:*): Handle Solbourne OS/MP systems.
Richard Kenner <kenner@gnu.org>
parents:
10119
diff
changeset
|
241 ;; |
df07a5978364
(sun4:SunOS:*:*): Handle Solbourne OS/MP systems.
Richard Kenner <kenner@gnu.org>
parents:
10119
diff
changeset
|
242 esac |
8930
166ebab32ffa
Patches for HPUX, and SunOS4 (Japanese).
Per Bothner <bothner@cygnus.com>
parents:
8657
diff
changeset
|
243 # Japanese Language versions have a version number like `4.1.3-JL'. |
166ebab32ffa
Patches for HPUX, and SunOS4 (Japanese).
Per Bothner <bothner@cygnus.com>
parents:
8657
diff
changeset
|
244 echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` |
2907 | 245 exit 0 ;; |
246 sun3*:SunOS:*:*) | |
247 echo m68k-sun-sunos${UNAME_RELEASE} | |
248 exit 0 ;; | |
18999 | 249 sun*:*:4.2BSD:*) |
250 UNAME_RELEASE=`(head -1 /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` | |
251 test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 | |
19029
9ccea8ddd344
update from main archive 970728
Ulrich Drepper <drepper@redhat.com>
parents:
18999
diff
changeset
|
252 case "`/bin/arch`" in |
18999 | 253 sun3) |
254 echo m68k-sun-sunos${UNAME_RELEASE} | |
255 ;; | |
256 sun4) | |
257 echo sparc-sun-sunos${UNAME_RELEASE} | |
258 ;; | |
259 esac | |
260 exit 0 ;; | |
16575
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
261 aushp:SunOS:*:*) |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
262 echo sparc-auspex-sunos${UNAME_RELEASE} |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
263 exit 0 ;; |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
264 atari*:OpenBSD:*:*) |
17403
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
265 echo m68k-unknown-openbsd${UNAME_RELEASE} |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
266 exit 0 ;; |
24588
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
267 # The situation for MiNT is a little confusing. The machine name |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
268 # can be virtually everything (everything which is not |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
269 # "atarist" or "atariste" at least should have a processor |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
270 # > m68000). The system name ranges from "MiNT" over "FreeMiNT" |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
271 # to the lowercase version "mint" (or "freemint"). Finally |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
272 # the system name "TOS" denotes a system which is actually not |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
273 # MiNT. But MiNT is downward compatible to TOS, so this should |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
274 # be no problem. |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
275 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
276 echo m68k-atari-mint${UNAME_RELEASE} |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
277 exit 0 ;; |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
278 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
279 echo m68k-atari-mint${UNAME_RELEASE} |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
280 exit 0 ;; |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
281 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
282 echo m68k-atari-mint${UNAME_RELEASE} |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
283 exit 0 ;; |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
284 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
285 echo m68k-milan-mint${UNAME_RELEASE} |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
286 exit 0 ;; |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
287 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
288 echo m68k-hades-mint${UNAME_RELEASE} |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
289 exit 0 ;; |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
290 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
291 echo m68k-unknown-mint${UNAME_RELEASE} |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
292 exit 0 ;; |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
293 sun3*:OpenBSD:*:*) |
17403
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
294 echo m68k-unknown-openbsd${UNAME_RELEASE} |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
295 exit 0 ;; |
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
296 mac68k:OpenBSD:*:*) |
17403
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
297 echo m68k-unknown-openbsd${UNAME_RELEASE} |
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
298 exit 0 ;; |
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
299 mvme68k:OpenBSD:*:*) |
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
300 echo m68k-unknown-openbsd${UNAME_RELEASE} |
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
301 exit 0 ;; |
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
302 mvme88k:OpenBSD:*:*) |
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
303 echo m88k-unknown-openbsd${UNAME_RELEASE} |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
304 exit 0 ;; |
16663
773436c9b680
* config.guess: Recognize machten.
David J. MacKenzie <djm@gnu.org>
parents:
16637
diff
changeset
|
305 powerpc:machten:*:*) |
773436c9b680
* config.guess: Recognize machten.
David J. MacKenzie <djm@gnu.org>
parents:
16637
diff
changeset
|
306 echo powerpc-apple-machten${UNAME_RELEASE} |
773436c9b680
* config.guess: Recognize machten.
David J. MacKenzie <djm@gnu.org>
parents:
16637
diff
changeset
|
307 exit 0 ;; |
16575
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
308 RISC*:Mach:*:*) |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
309 echo mips-dec-mach_bsd4.3 |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
310 exit 0 ;; |
2907 | 311 RISC*:ULTRIX:*:*) |
312 echo mips-dec-ultrix${UNAME_RELEASE} | |
313 exit 0 ;; | |
314 VAX*:ULTRIX*:*:*) | |
315 echo vax-dec-ultrix${UNAME_RELEASE} | |
316 exit 0 ;; | |
24588
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
317 2020:CLIX:*:* | 2430:CLIX:*:*) |
17674
c4bf2875d072
CLIX patch from Thomas Dickey via urs@akk.uni-karlsruhe.de (Urs Janssen).
Per Bothner <bothner@cygnus.com>
parents:
17499
diff
changeset
|
318 echo clipper-intergraph-clix${UNAME_RELEASE} |
c4bf2875d072
CLIX patch from Thomas Dickey via urs@akk.uni-karlsruhe.de (Urs Janssen).
Per Bothner <bothner@cygnus.com>
parents:
17499
diff
changeset
|
319 exit 0 ;; |
15333
21a333789311
* config.guess: Combine mips-mips-riscos cases, and use cpp to
Per Bothner <bothner@cygnus.com>
parents:
15318
diff
changeset
|
320 mips:*:*:UMIPS | mips:*:*:RISCos) |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
321 sed 's/^ //' << EOF >$dummy.c |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
322 #ifdef __cplusplus |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
323 #include <stdio.h> /* for printf() prototype */ |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
324 int main (int argc, char *argv[]) { |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
325 #else |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
326 int main (argc, argv) int argc; char *argv[]; { |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
327 #endif |
15333
21a333789311
* config.guess: Combine mips-mips-riscos cases, and use cpp to
Per Bothner <bothner@cygnus.com>
parents:
15318
diff
changeset
|
328 #if defined (host_mips) && defined (MIPSEB) |
21a333789311
* config.guess: Combine mips-mips-riscos cases, and use cpp to
Per Bothner <bothner@cygnus.com>
parents:
15318
diff
changeset
|
329 #if defined (SYSTYPE_SYSV) |
21a333789311
* config.guess: Combine mips-mips-riscos cases, and use cpp to
Per Bothner <bothner@cygnus.com>
parents:
15318
diff
changeset
|
330 printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); |
21a333789311
* config.guess: Combine mips-mips-riscos cases, and use cpp to
Per Bothner <bothner@cygnus.com>
parents:
15318
diff
changeset
|
331 #endif |
21a333789311
* config.guess: Combine mips-mips-riscos cases, and use cpp to
Per Bothner <bothner@cygnus.com>
parents:
15318
diff
changeset
|
332 #if defined (SYSTYPE_SVR4) |
21a333789311
* config.guess: Combine mips-mips-riscos cases, and use cpp to
Per Bothner <bothner@cygnus.com>
parents:
15318
diff
changeset
|
333 printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); |
21a333789311
* config.guess: Combine mips-mips-riscos cases, and use cpp to
Per Bothner <bothner@cygnus.com>
parents:
15318
diff
changeset
|
334 #endif |
21a333789311
* config.guess: Combine mips-mips-riscos cases, and use cpp to
Per Bothner <bothner@cygnus.com>
parents:
15318
diff
changeset
|
335 #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) |
21a333789311
* config.guess: Combine mips-mips-riscos cases, and use cpp to
Per Bothner <bothner@cygnus.com>
parents:
15318
diff
changeset
|
336 printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); |
21a333789311
* config.guess: Combine mips-mips-riscos cases, and use cpp to
Per Bothner <bothner@cygnus.com>
parents:
15318
diff
changeset
|
337 #endif |
21a333789311
* config.guess: Combine mips-mips-riscos cases, and use cpp to
Per Bothner <bothner@cygnus.com>
parents:
15318
diff
changeset
|
338 #endif |
21a333789311
* config.guess: Combine mips-mips-riscos cases, and use cpp to
Per Bothner <bothner@cygnus.com>
parents:
15318
diff
changeset
|
339 exit (-1); |
21a333789311
* config.guess: Combine mips-mips-riscos cases, and use cpp to
Per Bothner <bothner@cygnus.com>
parents:
15318
diff
changeset
|
340 } |
21a333789311
* config.guess: Combine mips-mips-riscos cases, and use cpp to
Per Bothner <bothner@cygnus.com>
parents:
15318
diff
changeset
|
341 EOF |
24588
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
342 $CC_FOR_BUILD $dummy.c -o $dummy \ |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
343 && ./$dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \ |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
344 && rm $dummy.c $dummy && exit 0 |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
345 rm -f $dummy.c $dummy |
15553
6a77264bef21
(mips:*:*:UMIPS): Fix typo in last change.
Richard Kenner <kenner@gnu.org>
parents:
15462
diff
changeset
|
346 echo mips-mips-riscos${UNAME_RELEASE} |
8373 | 347 exit 0 ;; |
13703
a185c48f6b61
(powerpc-harris-powerunix): Add guess for port to new target.
Per Bothner <bothner@cygnus.com>
parents:
13685
diff
changeset
|
348 Night_Hawk:Power_UNIX:*:*) |
a185c48f6b61
(powerpc-harris-powerunix): Add guess for port to new target.
Per Bothner <bothner@cygnus.com>
parents:
13685
diff
changeset
|
349 echo powerpc-harris-powerunix |
a185c48f6b61
(powerpc-harris-powerunix): Add guess for port to new target.
Per Bothner <bothner@cygnus.com>
parents:
13685
diff
changeset
|
350 exit 0 ;; |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
351 m88k:CX/UX:7*:*) |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
352 echo m88k-harris-cxux7 |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
353 exit 0 ;; |
2907 | 354 m88k:*:4*:R4*) |
355 echo m88k-motorola-sysv4 | |
356 exit 0 ;; | |
357 m88k:*:3*:R3*) | |
358 echo m88k-motorola-sysv3 | |
359 exit 0 ;; | |
8373 | 360 AViiON:dgux:*:*) |
13740 | 361 # DG/UX returns AViiON for all architectures |
15013
aad88afa6a0c
* config.guess: Combine two OSF1 rules.
Per Bothner <bothner@cygnus.com>
parents:
14961
diff
changeset
|
362 UNAME_PROCESSOR=`/usr/bin/uname -p` |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
363 if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110] |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
364 then |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
365 if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
366 [ ${TARGET_BINARY_INTERFACE}x = x ] |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
367 then |
8520 | 368 echo m88k-dg-dgux${UNAME_RELEASE} |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
369 else |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
370 echo m88k-dg-dguxbcs${UNAME_RELEASE} |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
371 fi |
8520 | 372 else |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
373 echo i586-dg-dgux${UNAME_RELEASE} |
8520 | 374 fi |
8373 | 375 exit 0 ;; |
8557 | 376 M88*:DolphinOS:*:*) # DolphinOS (SVR3) |
377 echo m88k-dolphin-sysv3 | |
378 exit 0 ;; | |
8373 | 379 M88*:*:R3*:*) |
380 # Delta 88k system running SVR3 | |
381 echo m88k-motorola-sysv3 | |
382 exit 0 ;; | |
383 XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) | |
384 echo m88k-tektronix-sysv3 | |
385 exit 0 ;; | |
386 Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) | |
387 echo m68k-tektronix-bsd | |
388 exit 0 ;; | |
10660 | 389 *:IRIX*:*:*) |
390 echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` | |
2907 | 391 exit 0 ;; |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
392 ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. |
10066
990cbb066385
Add cases for romp-ibm-aix and romp-ibm-bsd.
Richard Kenner <kenner@gnu.org>
parents:
9918
diff
changeset
|
393 echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id |
990cbb066385
Add cases for romp-ibm-aix and romp-ibm-bsd.
Richard Kenner <kenner@gnu.org>
parents:
9918
diff
changeset
|
394 exit 0 ;; # Note that: echo "'`uname -s`'" gives 'AIX ' |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
395 i?86:AIX:*:*) |
2907 | 396 echo i386-ibm-aix |
397 exit 0 ;; | |
398 *:AIX:2:3) | |
8373 | 399 if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
400 sed 's/^ //' << EOF >$dummy.c |
8639
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
401 #include <sys/systemcfg.h> |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
402 |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
403 main() |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
404 { |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
405 if (!__power_pc()) |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
406 exit(1); |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
407 puts("powerpc-ibm-aix3.2.5"); |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
408 exit(0); |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
409 } |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
410 EOF |
24588
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
411 $CC_FOR_BUILD $dummy.c -o $dummy && ./$dummy && rm $dummy.c $dummy && exit 0 |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
412 rm -f $dummy.c $dummy |
8373 | 413 echo rs6000-ibm-aix3.2.5 |
414 elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then | |
415 echo rs6000-ibm-aix3.2.4 | |
416 else | |
417 echo rs6000-ibm-aix3.2 | |
418 fi | |
2907 | 419 exit 0 ;; |
9598
fa57d5ed7df8
Revise support for AIX 4.1 on POWER and PowerPC.
Richard Kenner <kenner@gnu.org>
parents:
9575
diff
changeset
|
420 *:AIX:*:4) |
23336 | 421 IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | head -1 | awk '{ print $1 }'` |
422 if /usr/sbin/lsattr -EHl ${IBM_CPU_ID} | grep POWER >/dev/null 2>&1; then | |
9598
fa57d5ed7df8
Revise support for AIX 4.1 on POWER and PowerPC.
Richard Kenner <kenner@gnu.org>
parents:
9575
diff
changeset
|
423 IBM_ARCH=rs6000 |
9575
ff5a8ffc542c
Add support for AIX 4.1 and architecture.
Richard Kenner <kenner@gnu.org>
parents:
9371
diff
changeset
|
424 else |
9598
fa57d5ed7df8
Revise support for AIX 4.1 on POWER and PowerPC.
Richard Kenner <kenner@gnu.org>
parents:
9575
diff
changeset
|
425 IBM_ARCH=powerpc |
9575
ff5a8ffc542c
Add support for AIX 4.1 and architecture.
Richard Kenner <kenner@gnu.org>
parents:
9371
diff
changeset
|
426 fi |
12417
b4d39d2b9795
(AIX4): More robust release numbering discovery.
Richard Kenner <kenner@gnu.org>
parents:
12364
diff
changeset
|
427 if [ -x /usr/bin/oslevel ] ; then |
b4d39d2b9795
(AIX4): More robust release numbering discovery.
Richard Kenner <kenner@gnu.org>
parents:
12364
diff
changeset
|
428 IBM_REV=`/usr/bin/oslevel` |
9598
fa57d5ed7df8
Revise support for AIX 4.1 on POWER and PowerPC.
Richard Kenner <kenner@gnu.org>
parents:
9575
diff
changeset
|
429 else |
9599
3fdda4389923
Minor update to last change.
Richard Kenner <kenner@gnu.org>
parents:
9598
diff
changeset
|
430 IBM_REV=4.${UNAME_RELEASE} |
9598
fa57d5ed7df8
Revise support for AIX 4.1 on POWER and PowerPC.
Richard Kenner <kenner@gnu.org>
parents:
9575
diff
changeset
|
431 fi |
fa57d5ed7df8
Revise support for AIX 4.1 on POWER and PowerPC.
Richard Kenner <kenner@gnu.org>
parents:
9575
diff
changeset
|
432 echo ${IBM_ARCH}-ibm-aix${IBM_REV} |
9575
ff5a8ffc542c
Add support for AIX 4.1 and architecture.
Richard Kenner <kenner@gnu.org>
parents:
9371
diff
changeset
|
433 exit 0 ;; |
2907 | 434 *:AIX:*:*) |
435 echo rs6000-ibm-aix | |
436 exit 0 ;; | |
10091
f444ea4046e9
(ibmrt): Add more cases for various forms of BSD.
Richard Kenner <kenner@gnu.org>
parents:
10066
diff
changeset
|
437 ibmrt:4.4BSD:*|romp-ibm:BSD:*) |
f444ea4046e9
(ibmrt): Add more cases for various forms of BSD.
Richard Kenner <kenner@gnu.org>
parents:
10066
diff
changeset
|
438 echo romp-ibm-bsd4.4 |
f444ea4046e9
(ibmrt): Add more cases for various forms of BSD.
Richard Kenner <kenner@gnu.org>
parents:
10066
diff
changeset
|
439 exit 0 ;; |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
440 ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and |
15286
66a70f0f8ebe
(AViiON:dgux:*:*): Fix typo in recognizing mc88110.
Roland McGrath <roland@gnu.org>
parents:
15013
diff
changeset
|
441 echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to |
10066
990cbb066385
Add cases for romp-ibm-aix and romp-ibm-bsd.
Richard Kenner <kenner@gnu.org>
parents:
9918
diff
changeset
|
442 exit 0 ;; # report: romp-ibm BSD 4.3 |
2907 | 443 *:BOSX:*:*) |
444 echo rs6000-bull-bosx | |
445 exit 0 ;; | |
8373 | 446 DPX/2?00:B.O.S.:*:*) |
447 echo m68k-bull-sysv3 | |
448 exit 0 ;; | |
449 9000/[34]??:4.3bsd:1.*:*) | |
450 echo m68k-hp-bsd | |
451 exit 0 ;; | |
452 hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) | |
453 echo m68k-hp-bsd4.4 | |
2907 | 454 exit 0 ;; |
23336 | 455 9000/[34678]??:HP-UX:*:*) |
8373 | 456 case "${UNAME_MACHINE}" in |
457 9000/31? ) HP_ARCH=m68000 ;; | |
458 9000/[34]?? ) HP_ARCH=m68k ;; | |
24739
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
459 9000/[678][0-9][0-9]) |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
460 sed 's/^ //' << EOF >$dummy.c |
22970
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
461 #include <stdlib.h> |
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
462 #include <unistd.h> |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
463 |
22970
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
464 int main () |
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
465 { |
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
466 #if defined(_SC_KERNEL_BITS) |
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
467 long bits = sysconf(_SC_KERNEL_BITS); |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
468 #endif |
22970
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
469 long cpu = sysconf (_SC_CPU_VERSION); |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
470 |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
471 switch (cpu) |
22970
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
472 { |
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
473 case CPU_PA_RISC1_0: puts ("hppa1.0"); break; |
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
474 case CPU_PA_RISC1_1: puts ("hppa1.1"); break; |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
475 case CPU_PA_RISC2_0: |
22970
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
476 #if defined(_SC_KERNEL_BITS) |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
477 switch (bits) |
22970
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
478 { |
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
479 case 64: puts ("hppa2.0w"); break; |
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
480 case 32: puts ("hppa2.0n"); break; |
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
481 default: puts ("hppa2.0"); break; |
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
482 } break; |
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
483 #else /* !defined(_SC_KERNEL_BITS) */ |
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
484 puts ("hppa2.0"); break; |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
485 #endif |
22970
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
486 default: puts ("hppa1.0"); break; |
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
487 } |
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
488 exit (0); |
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
489 } |
ea0e3bbd3703
Detect HPPA 2.0 architecture.
Richard M. Stallman <rms@gnu.org>
parents:
22786
diff
changeset
|
490 EOF |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
491 (CCOPTS= $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null ) && HP_ARCH=`./$dummy` |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
492 rm -f $dummy.c $dummy |
8373 | 493 esac |
8930
166ebab32ffa
Patches for HPUX, and SunOS4 (Japanese).
Per Bothner <bothner@cygnus.com>
parents:
8657
diff
changeset
|
494 HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` |
8373 | 495 echo ${HP_ARCH}-hp-hpux${HPUX_REV} |
2907 | 496 exit 0 ;; |
8373 | 497 3050*:HI-UX:*:*) |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
498 sed 's/^ //' << EOF >$dummy.c |
8373 | 499 #include <unistd.h> |
500 int | |
501 main () | |
502 { | |
503 long cpu = sysconf (_SC_CPU_VERSION); | |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
504 /* The order matters, because CPU_IS_HP_MC68K erroneously returns |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
505 true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
506 results, however. */ |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
507 if (CPU_IS_PA_RISC (cpu)) |
8373 | 508 { |
509 switch (cpu) | |
510 { | |
511 case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; | |
512 case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; | |
513 case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; | |
514 default: puts ("hppa-hitachi-hiuxwe2"); break; | |
515 } | |
516 } | |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
517 else if (CPU_IS_HP_MC68K (cpu)) |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
518 puts ("m68k-hitachi-hiuxwe2"); |
8373 | 519 else puts ("unknown-hitachi-hiuxwe2"); |
520 exit (0); | |
521 } | |
522 EOF | |
24588
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
523 $CC_FOR_BUILD $dummy.c -o $dummy && ./$dummy && rm $dummy.c $dummy && exit 0 |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
524 rm -f $dummy.c $dummy |
8373 | 525 echo unknown-hitachi-hiuxwe2 |
2907 | 526 exit 0 ;; |
13230
ad1d4be6bb8d
* config.guess: Recognize HP model 819 machines has having
Jeff Law <law@redhat.com>
parents:
12858
diff
changeset
|
527 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) |
3622 | 528 echo hppa1.1-hp-bsd |
529 exit 0 ;; | |
530 9000/8??:4.3bsd:*:*) | |
531 echo hppa1.0-hp-bsd | |
532 exit 0 ;; | |
24739
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
533 *9??*:MPE/iX:*:*) |
23836
60713925e762
Check for hppa1.0-hp-mpeix
Ian Lance Taylor <ian@cygnus.com>
parents:
23336
diff
changeset
|
534 echo hppa1.0-hp-mpeix |
60713925e762
Check for hppa1.0-hp-mpeix
Ian Lance Taylor <ian@cygnus.com>
parents:
23336
diff
changeset
|
535 exit 0 ;; |
13230
ad1d4be6bb8d
* config.guess: Recognize HP model 819 machines has having
Jeff Law <law@redhat.com>
parents:
12858
diff
changeset
|
536 hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
537 echo hppa1.1-hp-osf |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
538 exit 0 ;; |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
539 hp8??:OSF1:*:*) |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
540 echo hppa1.0-hp-osf |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
541 exit 0 ;; |
16575
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
542 i?86:OSF1:*:*) |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
543 if [ -x /usr/sbin/sysversion ] ; then |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
544 echo ${UNAME_MACHINE}-unknown-osf1mk |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
545 else |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
546 echo ${UNAME_MACHINE}-unknown-osf1 |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
547 fi |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
548 exit 0 ;; |
11601
a4ca183ca59e
Support Linux elf and a.out systems; Add parisc support
Michael Meissner <gnu@the-meissners.org>
parents:
11600
diff
changeset
|
549 parisc*:Lites*:*:*) |
a4ca183ca59e
Support Linux elf and a.out systems; Add parisc support
Michael Meissner <gnu@the-meissners.org>
parents:
11600
diff
changeset
|
550 echo hppa1.1-hp-lites |
a4ca183ca59e
Support Linux elf and a.out systems; Add parisc support
Michael Meissner <gnu@the-meissners.org>
parents:
11600
diff
changeset
|
551 exit 0 ;; |
24739
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
552 hppa*:OpenBSD:*:*) |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
553 echo hppa-unknown-openbsd |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
554 exit 0 ;; |
8988
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
555 C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) |
2907 | 556 echo c1-convex-bsd |
557 exit 0 ;; | |
8988
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
558 C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
559 if getsysinfo -f scalar_acc |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
560 then echo c32-convex-bsd |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
561 else echo c2-convex-bsd |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
562 fi |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
563 exit 0 ;; |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
564 C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
565 echo c34-convex-bsd |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
566 exit 0 ;; |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
567 C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
568 echo c38-convex-bsd |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
569 exit 0 ;; |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
570 C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
571 echo c4-convex-bsd |
2907 | 572 exit 0 ;; |
11797
562d7cdc38e3
Recognize PCs running Solaris2. Also, some cleaning up for CRAYs.
Per Bothner <bothner@cygnus.com>
parents:
11708
diff
changeset
|
573 CRAY*X-MP:*:*:*) |
2907 | 574 echo xmp-cray-unicos |
575 exit 0 ;; | |
11600
6d5385d82232
(CRAY*Y-MP:*:*:*): New entry.
Richard Kenner <kenner@gnu.org>
parents:
10802
diff
changeset
|
576 CRAY*Y-MP:*:*:*) |
11814
f9c9e52a7ef5
* config.guess: Recognize Cray90 (from Pete TerMaat).
Per Bothner <bothner@cygnus.com>
parents:
11797
diff
changeset
|
577 echo ymp-cray-unicos${UNAME_RELEASE} |
f9c9e52a7ef5
* config.guess: Recognize Cray90 (from Pete TerMaat).
Per Bothner <bothner@cygnus.com>
parents:
11797
diff
changeset
|
578 exit 0 ;; |
15672
d91ddc424d9a
Generalize C90 alternative to all x90 machines.
Torbjorn Granlund <tege@swox.com>
parents:
15553
diff
changeset
|
579 CRAY*[A-Z]90:*:*:*) |
d91ddc424d9a
Generalize C90 alternative to all x90 machines.
Torbjorn Granlund <tege@swox.com>
parents:
15553
diff
changeset
|
580 echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ |
15701
5db02009315e
Fix previous change. Use sed's y command instead.
Karl Heuer <kwzh@gnu.org>
parents:
15700
diff
changeset
|
581 | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ |
5db02009315e
Fix previous change. Use sed's y command instead.
Karl Heuer <kwzh@gnu.org>
parents:
15700
diff
changeset
|
582 -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ |
11814
f9c9e52a7ef5
* config.guess: Recognize Cray90 (from Pete TerMaat).
Per Bothner <bothner@cygnus.com>
parents:
11797
diff
changeset
|
583 exit 0 ;; |
16567 | 584 CRAY*TS:*:*:*) |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
585 echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' |
16567 | 586 exit 0 ;; |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
587 CRAY*T3E:*:*:*) |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
588 echo alpha-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
589 exit 0 ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
590 CRAY*SV1:*:*:*) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
591 echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
592 exit 0 ;; |
11797
562d7cdc38e3
Recognize PCs running Solaris2. Also, some cleaning up for CRAYs.
Per Bothner <bothner@cygnus.com>
parents:
11708
diff
changeset
|
593 CRAY-2:*:*:*) |
2907 | 594 echo cray2-cray-unicos |
595 exit 0 ;; | |
16575
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
596 F300:UNIX_System_V:*:*) |
24739
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
597 FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` |
16575
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
598 FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
599 echo "f300-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
600 exit 0 ;; |
16601 | 601 F301:UNIX_System_V:*:*) |
602 echo f301-fujitsu-uxpv`echo $UNAME_RELEASE | sed 's/ .*//'` | |
603 exit 0 ;; | |
17403
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
604 hp300:OpenBSD:*:*) |
5c3cd24dd8ee
Recognize OpenBSD systems correctly (from Niklas Hallqvist
Ian Lance Taylor <ian@cygnus.com>
parents:
16842
diff
changeset
|
605 echo m68k-unknown-openbsd${UNAME_RELEASE} |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
606 exit 0 ;; |
24739
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
607 i?86:BSD/386:*:* | i?86:BSD/OS:*:*) |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
608 echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
609 exit 0 ;; |
23336 | 610 sparc*:BSD/OS:*:*) |
611 echo sparc-unknown-bsdi${UNAME_RELEASE} | |
612 exit 0 ;; | |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
613 *:BSD/OS:*:*) |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
614 echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
615 exit 0 ;; |
8640
3351fa6afe8f
(netbsd, freebsd, linux): Accept any machine, not just i[34]86.
Per Bothner <bothner@cygnus.com>
parents:
8639
diff
changeset
|
616 *:FreeBSD:*:*) |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
617 if test -x /usr/bin/objformat; then |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
618 if test "elf" = "`/usr/bin/objformat`"; then |
24588
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
619 echo ${UNAME_MACHINE}-unknown-freebsdelf`echo ${UNAME_RELEASE}|sed -e 's/[-_].*//'` |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
620 exit 0 |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
621 fi |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
622 fi |
9806
7542dbfaea18
(*-unknown-freebsd): Remove [-(] from UNAME_RELEASE.
Per Bothner <bothner@cygnus.com>
parents:
9634
diff
changeset
|
623 echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` |
8373 | 624 exit 0 ;; |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
625 *:OpenBSD:*:*) |
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
626 echo ${UNAME_MACHINE}-unknown-openbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` |
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
627 exit 0 ;; |
14558
a1805a3ff5c6
* config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
Per Bothner <bothner@cygnus.com>
parents:
14556
diff
changeset
|
628 i*:CYGWIN*:*) |
24031
c14fe5d32ce5
Final merge from autoconf 2.13.
Ben Elliston <bje@air.net.au>
parents:
23836
diff
changeset
|
629 echo ${UNAME_MACHINE}-pc-cygwin |
14558
a1805a3ff5c6
* config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
Per Bothner <bothner@cygnus.com>
parents:
14556
diff
changeset
|
630 exit 0 ;; |
18471 | 631 i*:MINGW*:*) |
20796
2d662878358c
Use ${UNAME_MACHINE} rather than i386 for cygwin32 and mingw32.
Ian Lance Taylor <ian@cygnus.com>
parents:
19847
diff
changeset
|
632 echo ${UNAME_MACHINE}-pc-mingw32 |
18471 | 633 exit 0 ;; |
24739
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
634 i*:Windows_NT*:* | Pentium*:Windows_NT*:*) |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
635 # How do we know it's Interix rather than the generic POSIX subsystem? |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
636 # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
637 # UNAME_MACHINE based on the output of uname instead of i386? |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
638 echo i386-pc-interix |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
639 exit 0 ;; |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
640 i*:UWIN*:*) |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
641 echo ${UNAME_MACHINE}-pc-uwin |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
642 exit 0 ;; |
14558
a1805a3ff5c6
* config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
Per Bothner <bothner@cygnus.com>
parents:
14556
diff
changeset
|
643 p*:CYGWIN*:*) |
24031
c14fe5d32ce5
Final merge from autoconf 2.13.
Ben Elliston <bje@air.net.au>
parents:
23836
diff
changeset
|
644 echo powerpcle-unknown-cygwin |
14558
a1805a3ff5c6
* config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
Per Bothner <bothner@cygnus.com>
parents:
14556
diff
changeset
|
645 exit 0 ;; |
14961
2c7b32c3c6aa
Add Solaris on PowerPC support
Michael Meissner <gnu@the-meissners.org>
parents:
14808
diff
changeset
|
646 prep*:SunOS:5.*:*) |
2c7b32c3c6aa
Add Solaris on PowerPC support
Michael Meissner <gnu@the-meissners.org>
parents:
14808
diff
changeset
|
647 echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` |
2c7b32c3c6aa
Add Solaris on PowerPC support
Michael Meissner <gnu@the-meissners.org>
parents:
14808
diff
changeset
|
648 exit 0 ;; |
9246 | 649 *:GNU:*:*) |
17692
426dde653028
Recognize either / or - as a machine/suptype separator from uname -m
Thomas Bushnell, BSG <thomas@gnu.org>
parents:
17674
diff
changeset
|
650 echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` |
9246 | 651 exit 0 ;; |
8640
3351fa6afe8f
(netbsd, freebsd, linux): Accept any machine, not just i[34]86.
Per Bothner <bothner@cygnus.com>
parents:
8639
diff
changeset
|
652 *:Linux:*:*) |
20831
b2ca9c4f82a5
Add support for Linux/ARM.
Richard Kenner <kenner@gnu.org>
parents:
20796
diff
changeset
|
653 |
12858
63ad7aaa9e35
Changes for Linux and LynxOS.
Per Bothner <bothner@cygnus.com>
parents:
12417
diff
changeset
|
654 # The BFD linker knows what the default object file format is, so |
24588
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
655 # first see if it will tell us. cd to the root directory to prevent |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
656 # problems with other programs or directories called `ld' in the path. |
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
657 ld_help_string=`cd /; ld --help 2>&1` |
18208 | 658 ld_supported_emulations=`echo $ld_help_string \ |
18206 | 659 | sed -ne '/supported emulations:/!d |
660 s/[ ][ ]*/ /g | |
661 s/.*supported emulations: *// | |
662 s/ .*// | |
663 p'` | |
664 case "$ld_supported_emulations" in | |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
665 *ia64) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
666 echo "${UNAME_MACHINE}-unknown-linux" |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
667 exit 0 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
668 ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
669 i?86linux) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
670 echo "${UNAME_MACHINE}-pc-linux-gnuaout" |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
671 exit 0 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
672 ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
673 i?86coff) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
674 echo "${UNAME_MACHINE}-pc-linux-gnucoff" |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
675 exit 0 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
676 ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
677 sparclinux) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
678 echo "${UNAME_MACHINE}-unknown-linux-gnuaout" |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
679 exit 0 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
680 ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
681 armlinux) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
682 echo "${UNAME_MACHINE}-unknown-linux-gnuaout" |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
683 exit 0 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
684 ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
685 elf32arm*) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
686 echo "${UNAME_MACHINE}-unknown-linux-gnuoldld" |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
687 exit 0 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
688 ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
689 armelf_linux*) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
690 echo "${UNAME_MACHINE}-unknown-linux-gnu" |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
691 exit 0 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
692 ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
693 m68klinux) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
694 echo "${UNAME_MACHINE}-unknown-linux-gnuaout" |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
695 exit 0 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
696 ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
697 elf32ppc | elf32ppclinux) |
24739
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
698 # Determine Lib Version |
24775
983487283d36
1999-05-26 Ben Elliston <bje@cygnus.com>
Ben Elliston <bje@air.net.au>
parents:
24754
diff
changeset
|
699 cat >$dummy.c <<EOF |
24739
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
700 #include <features.h> |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
701 #if defined(__GLIBC__) |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
702 extern char __libc_version[]; |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
703 extern char __libc_release[]; |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
704 #endif |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
705 main(argc, argv) |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
706 int argc; |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
707 char *argv[]; |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
708 { |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
709 #if defined(__GLIBC__) |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
710 printf("%s %s\n", __libc_version, __libc_release); |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
711 #else |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
712 printf("unkown\n"); |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
713 #endif |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
714 return 0; |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
715 } |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
716 EOF |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
717 LIBC="" |
24775
983487283d36
1999-05-26 Ben Elliston <bje@cygnus.com>
Ben Elliston <bje@air.net.au>
parents:
24754
diff
changeset
|
718 $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null |
24739
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
719 if test "$?" = 0 ; then |
24775
983487283d36
1999-05-26 Ben Elliston <bje@cygnus.com>
Ben Elliston <bje@air.net.au>
parents:
24754
diff
changeset
|
720 ./$dummy | grep 1\.99 > /dev/null |
24739
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
721 if test "$?" = 0 ; then |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
722 LIBC="libc1" |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
723 fi |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
724 fi |
24775
983487283d36
1999-05-26 Ben Elliston <bje@cygnus.com>
Ben Elliston <bje@air.net.au>
parents:
24754
diff
changeset
|
725 rm -f $dummy.c $dummy |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
726 echo powerpc-unknown-linux-gnu${LIBC} |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
727 exit 0 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
728 ;; |
18206 | 729 esac |
730 | |
731 if test "${UNAME_MACHINE}" = "alpha" ; then | |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
732 cat <<EOF >$dummy.s |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
733 .data |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
734 \$Lformat: |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
735 .byte 37,100,45,37,120,10,0 # "%d-%x\n" |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
736 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
737 .text |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
738 .globl main |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
739 .align 4 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
740 .ent main |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
741 main: |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
742 .frame \$30,16,\$26,0 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
743 ldgp \$29,0(\$27) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
744 .prologue 1 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
745 .long 0x47e03d80 # implver \$0 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
746 lda \$2,-1 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
747 .long 0x47e20c21 # amask \$2,\$1 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
748 lda \$16,\$Lformat |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
749 mov \$0,\$17 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
750 not \$1,\$18 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
751 jsr \$26,printf |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
752 ldgp \$29,0(\$26) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
753 mov 0,\$16 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
754 jsr \$26,exit |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
755 .end main |
18887
63da9a245413
(alpha*): Run program to see if ev4, ev5, or ev56.
Richard Kenner <kenner@gnu.org>
parents:
18823
diff
changeset
|
756 EOF |
19540
06552ba973ce
(*:Linux:*:*): Recognize alpha-linux-gnulibc1.
Richard Kenner <kenner@gnu.org>
parents:
19029
diff
changeset
|
757 LIBC="" |
24588
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
758 $CC_FOR_BUILD $dummy.s -o $dummy 2>/dev/null |
18887
63da9a245413
(alpha*): Run program to see if ev4, ev5, or ev56.
Richard Kenner <kenner@gnu.org>
parents:
18823
diff
changeset
|
759 if test "$?" = 0 ; then |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
760 case `./$dummy` in |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
761 0-0) |
19847
f4f4b72d1239
(alpha): Replace CPU-determining program with one that's more precise
Richard Kenner <kenner@gnu.org>
parents:
19819
diff
changeset
|
762 UNAME_MACHINE="alpha" |
f4f4b72d1239
(alpha): Replace CPU-determining program with one that's more precise
Richard Kenner <kenner@gnu.org>
parents:
19819
diff
changeset
|
763 ;; |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
764 1-0) |
19847
f4f4b72d1239
(alpha): Replace CPU-determining program with one that's more precise
Richard Kenner <kenner@gnu.org>
parents:
19819
diff
changeset
|
765 UNAME_MACHINE="alphaev5" |
f4f4b72d1239
(alpha): Replace CPU-determining program with one that's more precise
Richard Kenner <kenner@gnu.org>
parents:
19819
diff
changeset
|
766 ;; |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
767 1-1) |
19847
f4f4b72d1239
(alpha): Replace CPU-determining program with one that's more precise
Richard Kenner <kenner@gnu.org>
parents:
19819
diff
changeset
|
768 UNAME_MACHINE="alphaev56" |
f4f4b72d1239
(alpha): Replace CPU-determining program with one that's more precise
Richard Kenner <kenner@gnu.org>
parents:
19819
diff
changeset
|
769 ;; |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
770 1-101) |
19847
f4f4b72d1239
(alpha): Replace CPU-determining program with one that's more precise
Richard Kenner <kenner@gnu.org>
parents:
19819
diff
changeset
|
771 UNAME_MACHINE="alphapca56" |
f4f4b72d1239
(alpha): Replace CPU-determining program with one that's more precise
Richard Kenner <kenner@gnu.org>
parents:
19819
diff
changeset
|
772 ;; |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
773 2-303) |
19847
f4f4b72d1239
(alpha): Replace CPU-determining program with one that's more precise
Richard Kenner <kenner@gnu.org>
parents:
19819
diff
changeset
|
774 UNAME_MACHINE="alphaev6" |
f4f4b72d1239
(alpha): Replace CPU-determining program with one that's more precise
Richard Kenner <kenner@gnu.org>
parents:
19819
diff
changeset
|
775 ;; |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
776 2-307) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
777 UNAME_MACHINE="alphaev67" |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
778 ;; |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
779 esac |
19540
06552ba973ce
(*:Linux:*:*): Recognize alpha-linux-gnulibc1.
Richard Kenner <kenner@gnu.org>
parents:
19029
diff
changeset
|
780 |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
781 objdump --private-headers $dummy | \ |
19540
06552ba973ce
(*:Linux:*:*): Recognize alpha-linux-gnulibc1.
Richard Kenner <kenner@gnu.org>
parents:
19029
diff
changeset
|
782 grep ld.so.1 > /dev/null |
06552ba973ce
(*:Linux:*:*): Recognize alpha-linux-gnulibc1.
Richard Kenner <kenner@gnu.org>
parents:
19029
diff
changeset
|
783 if test "$?" = 0 ; then |
06552ba973ce
(*:Linux:*:*): Recognize alpha-linux-gnulibc1.
Richard Kenner <kenner@gnu.org>
parents:
19029
diff
changeset
|
784 LIBC="libc1" |
06552ba973ce
(*:Linux:*:*): Recognize alpha-linux-gnulibc1.
Richard Kenner <kenner@gnu.org>
parents:
19029
diff
changeset
|
785 fi |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
786 fi |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
787 rm -f $dummy.s $dummy |
19540
06552ba973ce
(*:Linux:*:*): Recognize alpha-linux-gnulibc1.
Richard Kenner <kenner@gnu.org>
parents:
19029
diff
changeset
|
788 echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} ; exit 0 |
16800
d250966726a4
Recognize mips-unknown-linux-gnu
Ian Lance Taylor <ian@cygnus.com>
parents:
16663
diff
changeset
|
789 elif test "${UNAME_MACHINE}" = "mips" ; then |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
790 cat >$dummy.c <<EOF |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
791 #ifdef __cplusplus |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
792 #include <stdio.h> /* for printf() prototype */ |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
793 int main (int argc, char *argv[]) { |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
794 #else |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
795 int main (argc, argv) int argc; char *argv[]; { |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
796 #endif |
16800
d250966726a4
Recognize mips-unknown-linux-gnu
Ian Lance Taylor <ian@cygnus.com>
parents:
16663
diff
changeset
|
797 #ifdef __MIPSEB__ |
d250966726a4
Recognize mips-unknown-linux-gnu
Ian Lance Taylor <ian@cygnus.com>
parents:
16663
diff
changeset
|
798 printf ("%s-unknown-linux-gnu\n", argv[1]); |
d250966726a4
Recognize mips-unknown-linux-gnu
Ian Lance Taylor <ian@cygnus.com>
parents:
16663
diff
changeset
|
799 #endif |
d250966726a4
Recognize mips-unknown-linux-gnu
Ian Lance Taylor <ian@cygnus.com>
parents:
16663
diff
changeset
|
800 #ifdef __MIPSEL__ |
d250966726a4
Recognize mips-unknown-linux-gnu
Ian Lance Taylor <ian@cygnus.com>
parents:
16663
diff
changeset
|
801 printf ("%sel-unknown-linux-gnu\n", argv[1]); |
d250966726a4
Recognize mips-unknown-linux-gnu
Ian Lance Taylor <ian@cygnus.com>
parents:
16663
diff
changeset
|
802 #endif |
d250966726a4
Recognize mips-unknown-linux-gnu
Ian Lance Taylor <ian@cygnus.com>
parents:
16663
diff
changeset
|
803 return 0; |
d250966726a4
Recognize mips-unknown-linux-gnu
Ian Lance Taylor <ian@cygnus.com>
parents:
16663
diff
changeset
|
804 } |
d250966726a4
Recognize mips-unknown-linux-gnu
Ian Lance Taylor <ian@cygnus.com>
parents:
16663
diff
changeset
|
805 EOF |
24588
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
806 $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy "${UNAME_MACHINE}" && rm $dummy.c $dummy && exit 0 |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
807 rm -f $dummy.c $dummy |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
808 elif test "${UNAME_MACHINE}" = "s390"; then |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
809 echo s390-ibm-linux && exit 0 |
11607
c23dd70bf6a3
Support for pre-BFD versions of Linux ld.
Michael Meissner <gnu@the-meissners.org>
parents:
11606
diff
changeset
|
810 else |
18146
fcec3a7a91d9
(*:Linux:*:*): Recognize sparclinux.
Richard M. Stallman <rms@gnu.org>
parents:
17692
diff
changeset
|
811 # Either a pre-BFD a.out linker (linux-gnuoldld) |
fcec3a7a91d9
(*:Linux:*:*): Recognize sparclinux.
Richard M. Stallman <rms@gnu.org>
parents:
17692
diff
changeset
|
812 # or one that does not give us useful --help. |
18206 | 813 # GCC wants to distinguish between linux-gnuoldld and linux-gnuaout. |
814 # If ld does not provide *any* "supported emulations:" | |
815 # that means it is gnuoldld. | |
816 echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations:" | |
817 test $? != 0 && echo "${UNAME_MACHINE}-pc-linux-gnuoldld" && exit 0 | |
818 | |
18146
fcec3a7a91d9
(*:Linux:*:*): Recognize sparclinux.
Richard M. Stallman <rms@gnu.org>
parents:
17692
diff
changeset
|
819 case "${UNAME_MACHINE}" in |
18173 | 820 i?86) |
18146
fcec3a7a91d9
(*:Linux:*:*): Recognize sparclinux.
Richard M. Stallman <rms@gnu.org>
parents:
17692
diff
changeset
|
821 VENDOR=pc; |
fcec3a7a91d9
(*:Linux:*:*): Recognize sparclinux.
Richard M. Stallman <rms@gnu.org>
parents:
17692
diff
changeset
|
822 ;; |
fcec3a7a91d9
(*:Linux:*:*): Recognize sparclinux.
Richard M. Stallman <rms@gnu.org>
parents:
17692
diff
changeset
|
823 *) |
fcec3a7a91d9
(*:Linux:*:*): Recognize sparclinux.
Richard M. Stallman <rms@gnu.org>
parents:
17692
diff
changeset
|
824 VENDOR=unknown; |
fcec3a7a91d9
(*:Linux:*:*): Recognize sparclinux.
Richard M. Stallman <rms@gnu.org>
parents:
17692
diff
changeset
|
825 ;; |
fcec3a7a91d9
(*:Linux:*:*): Recognize sparclinux.
Richard M. Stallman <rms@gnu.org>
parents:
17692
diff
changeset
|
826 esac |
12858
63ad7aaa9e35
Changes for Linux and LynxOS.
Per Bothner <bothner@cygnus.com>
parents:
12417
diff
changeset
|
827 # Determine whether the default compiler is a.out or elf |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
828 cat >$dummy.c <<EOF |
18146
fcec3a7a91d9
(*:Linux:*:*): Recognize sparclinux.
Richard M. Stallman <rms@gnu.org>
parents:
17692
diff
changeset
|
829 #include <features.h> |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
830 #ifdef __cplusplus |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
831 #include <stdio.h> /* for printf() prototype */ |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
832 int main (int argc, char *argv[]) { |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
833 #else |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
834 int main (argc, argv) int argc; char *argv[]; { |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
835 #endif |
11601
a4ca183ca59e
Support Linux elf and a.out systems; Add parisc support
Michael Meissner <gnu@the-meissners.org>
parents:
11600
diff
changeset
|
836 #ifdef __ELF__ |
18146
fcec3a7a91d9
(*:Linux:*:*): Recognize sparclinux.
Richard M. Stallman <rms@gnu.org>
parents:
17692
diff
changeset
|
837 # ifdef __GLIBC__ |
fcec3a7a91d9
(*:Linux:*:*): Recognize sparclinux.
Richard M. Stallman <rms@gnu.org>
parents:
17692
diff
changeset
|
838 # if __GLIBC__ >= 2 |
fcec3a7a91d9
(*:Linux:*:*): Recognize sparclinux.
Richard M. Stallman <rms@gnu.org>
parents:
17692
diff
changeset
|
839 printf ("%s-${VENDOR}-linux-gnu\n", argv[1]); |
fcec3a7a91d9
(*:Linux:*:*): Recognize sparclinux.
Richard M. Stallman <rms@gnu.org>
parents:
17692
diff
changeset
|
840 # else |
fcec3a7a91d9
(*:Linux:*:*): Recognize sparclinux.
Richard M. Stallman <rms@gnu.org>
parents:
17692
diff
changeset
|
841 printf ("%s-${VENDOR}-linux-gnulibc1\n", argv[1]); |
fcec3a7a91d9
(*:Linux:*:*): Recognize sparclinux.
Richard M. Stallman <rms@gnu.org>
parents:
17692
diff
changeset
|
842 # endif |
fcec3a7a91d9
(*:Linux:*:*): Recognize sparclinux.
Richard M. Stallman <rms@gnu.org>
parents:
17692
diff
changeset
|
843 # else |
fcec3a7a91d9
(*:Linux:*:*): Recognize sparclinux.
Richard M. Stallman <rms@gnu.org>
parents:
17692
diff
changeset
|
844 printf ("%s-${VENDOR}-linux-gnulibc1\n", argv[1]); |
fcec3a7a91d9
(*:Linux:*:*): Recognize sparclinux.
Richard M. Stallman <rms@gnu.org>
parents:
17692
diff
changeset
|
845 # endif |
11601
a4ca183ca59e
Support Linux elf and a.out systems; Add parisc support
Michael Meissner <gnu@the-meissners.org>
parents:
11600
diff
changeset
|
846 #else |
18163
8064de096e1f
(*:Linux:*:*): Always use ${VENDOR}.
Richard M. Stallman <rms@gnu.org>
parents:
18147
diff
changeset
|
847 printf ("%s-${VENDOR}-linux-gnuaout\n", argv[1]); |
11601
a4ca183ca59e
Support Linux elf and a.out systems; Add parisc support
Michael Meissner <gnu@the-meissners.org>
parents:
11600
diff
changeset
|
848 #endif |
a4ca183ca59e
Support Linux elf and a.out systems; Add parisc support
Michael Meissner <gnu@the-meissners.org>
parents:
11600
diff
changeset
|
849 return 0; |
a4ca183ca59e
Support Linux elf and a.out systems; Add parisc support
Michael Meissner <gnu@the-meissners.org>
parents:
11600
diff
changeset
|
850 } |
a4ca183ca59e
Support Linux elf and a.out systems; Add parisc support
Michael Meissner <gnu@the-meissners.org>
parents:
11600
diff
changeset
|
851 EOF |
24588
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
852 $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy "${UNAME_MACHINE}" && rm $dummy.c $dummy && exit 0 |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
853 rm -f $dummy.c $dummy |
12858
63ad7aaa9e35
Changes for Linux and LynxOS.
Per Bothner <bothner@cygnus.com>
parents:
12417
diff
changeset
|
854 fi ;; |
9185
a5b9b922a853
(i[34]86:UNIX_SV:4.*:*): Remove "UNIX_SV" for Unixware; move DYNIX
Richard Kenner <kenner@gnu.org>
parents:
8988
diff
changeset
|
855 # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. earlier versions |
a5b9b922a853
(i[34]86:UNIX_SV:4.*:*): Remove "UNIX_SV" for Unixware; move DYNIX
Richard Kenner <kenner@gnu.org>
parents:
8988
diff
changeset
|
856 # are messed up and put the nodename in both sysname and nodename. |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
857 i?86:DYNIX/ptx:4*:*) |
9185
a5b9b922a853
(i[34]86:UNIX_SV:4.*:*): Remove "UNIX_SV" for Unixware; move DYNIX
Richard Kenner <kenner@gnu.org>
parents:
8988
diff
changeset
|
858 echo i386-sequent-sysv4 |
a5b9b922a853
(i[34]86:UNIX_SV:4.*:*): Remove "UNIX_SV" for Unixware; move DYNIX
Richard Kenner <kenner@gnu.org>
parents:
8988
diff
changeset
|
859 exit 0 ;; |
18662
ff357940f89c
(i?86:UNIX_SV:4.2MP:2.*): Recognize unixware.
Richard M. Stallman <rms@gnu.org>
parents:
18471
diff
changeset
|
860 i?86:UNIX_SV:4.2MP:2.*) |
ff357940f89c
(i?86:UNIX_SV:4.2MP:2.*): Recognize unixware.
Richard M. Stallman <rms@gnu.org>
parents:
18471
diff
changeset
|
861 # Unixware is an offshoot of SVR4, but it has its own version |
ff357940f89c
(i?86:UNIX_SV:4.2MP:2.*): Recognize unixware.
Richard M. Stallman <rms@gnu.org>
parents:
18471
diff
changeset
|
862 # number series starting with 2... |
ff357940f89c
(i?86:UNIX_SV:4.2MP:2.*): Recognize unixware.
Richard M. Stallman <rms@gnu.org>
parents:
18471
diff
changeset
|
863 # I am not positive that other SVR4 systems won't match this, |
ff357940f89c
(i?86:UNIX_SV:4.2MP:2.*): Recognize unixware.
Richard M. Stallman <rms@gnu.org>
parents:
18471
diff
changeset
|
864 # I just have to hope. -- rms. |
ff357940f89c
(i?86:UNIX_SV:4.2MP:2.*): Recognize unixware.
Richard M. Stallman <rms@gnu.org>
parents:
18471
diff
changeset
|
865 # Use sysv4.2uw... so that sysv4* matches it. |
ff357940f89c
(i?86:UNIX_SV:4.2MP:2.*): Recognize unixware.
Richard M. Stallman <rms@gnu.org>
parents:
18471
diff
changeset
|
866 echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} |
ff357940f89c
(i?86:UNIX_SV:4.2MP:2.*): Recognize unixware.
Richard M. Stallman <rms@gnu.org>
parents:
18471
diff
changeset
|
867 exit 0 ;; |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
868 i?86:*:4.*:* | i?86:SYSTEM_V:4.*:*) |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
869 UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` |
3622 | 870 if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
871 echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} |
3622 | 872 else |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
873 echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} |
3622 | 874 fi |
2907 | 875 exit 0 ;; |
24739
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
876 i?86:*:5:7*) |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
877 # Fixed at (any) Pentium or better |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
878 UNAME_MACHINE=i586 |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
879 if [ ${UNAME_SYSTEM} = "UnixWare" ] ; then |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
880 echo ${UNAME_MACHINE}-sco-sysv${UNAME_RELEASE}uw${UNAME_VERSION} |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
881 else |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
882 echo ${UNAME_MACHINE}-pc-sysv${UNAME_RELEASE} |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
883 fi |
24739
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
884 exit 0 ;; |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
885 i?86:*:3.2:*) |
11606
e90c3c69416a
(i[34]86:*:3.2:*) test for /usr/options/cb.name before calling uname.
Richard Kenner <kenner@gnu.org>
parents:
11601
diff
changeset
|
886 if test -f /usr/options/cb.name; then |
e90c3c69416a
(i[34]86:*:3.2:*) test for /usr/options/cb.name before calling uname.
Richard Kenner <kenner@gnu.org>
parents:
11601
diff
changeset
|
887 UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name` |
16177
da1a2b74d099
Use pc instead of unknown, for pc clone systems.
Richard M. Stallman <rms@gnu.org>
parents:
15701
diff
changeset
|
888 echo ${UNAME_MACHINE}-pc-isc$UNAME_REL |
11606
e90c3c69416a
(i[34]86:*:3.2:*) test for /usr/options/cb.name before calling uname.
Richard Kenner <kenner@gnu.org>
parents:
11601
diff
changeset
|
889 elif /bin/uname -X 2>/dev/null >/dev/null ; then |
2907 | 890 UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')` |
891 (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486 | |
13678
7d9570072e6c
* config.guess: Recognize Pentium under SCO.
Per Bothner <bothner@cygnus.com>
parents:
13230
diff
changeset
|
892 (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \ |
7d9570072e6c
* config.guess: Recognize Pentium under SCO.
Per Bothner <bothner@cygnus.com>
parents:
13230
diff
changeset
|
893 && UNAME_MACHINE=i586 |
24739
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
894 (/bin/uname -X|egrep '^Machine.*Pent ?II' >/dev/null) \ |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
895 && UNAME_MACHINE=i686 |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
896 (/bin/uname -X|egrep '^Machine.*Pentium Pro' >/dev/null) \ |
3bb3442a3fde
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24588
diff
changeset
|
897 && UNAME_MACHINE=i686 |
16177
da1a2b74d099
Use pc instead of unknown, for pc clone systems.
Richard M. Stallman <rms@gnu.org>
parents:
15701
diff
changeset
|
898 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL |
2907 | 899 else |
16177
da1a2b74d099
Use pc instead of unknown, for pc clone systems.
Richard M. Stallman <rms@gnu.org>
parents:
15701
diff
changeset
|
900 echo ${UNAME_MACHINE}-pc-sysv32 |
8373 | 901 fi |
902 exit 0 ;; | |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
903 i?86:*DOS:*:*) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
904 echo ${UNAME_MACHINE}-pc-msdosdjgpp |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
905 exit 0 ;; |
18779
c47ea87f3bd7
(pc:*:*:*): New entry, for DJGPP.
Richard M. Stallman <rms@gnu.org>
parents:
18662
diff
changeset
|
906 pc:*:*:*) |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
907 # Left here for compatibility: |
18779
c47ea87f3bd7
(pc:*:*:*): New entry, for DJGPP.
Richard M. Stallman <rms@gnu.org>
parents:
18662
diff
changeset
|
908 # uname -m prints for DJGPP always 'pc', but it prints nothing about |
c47ea87f3bd7
(pc:*:*:*): New entry, for DJGPP.
Richard M. Stallman <rms@gnu.org>
parents:
18662
diff
changeset
|
909 # the processor, so we play safe by assuming i386. |
c47ea87f3bd7
(pc:*:*:*): New entry, for DJGPP.
Richard M. Stallman <rms@gnu.org>
parents:
18662
diff
changeset
|
910 echo i386-pc-msdosdjgpp |
c47ea87f3bd7
(pc:*:*:*): New entry, for DJGPP.
Richard M. Stallman <rms@gnu.org>
parents:
18662
diff
changeset
|
911 exit 0 ;; |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
912 Intel:Mach:3*:*) |
16177
da1a2b74d099
Use pc instead of unknown, for pc clone systems.
Richard M. Stallman <rms@gnu.org>
parents:
15701
diff
changeset
|
913 echo i386-pc-mach3 |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
914 exit 0 ;; |
9918
5a86de94adff
Support paragon as i860-intel-osf1. (From RMS.)
Per Bothner <bothner@cygnus.com>
parents:
9806
diff
changeset
|
915 paragon:*:*:*) |
5a86de94adff
Support paragon as i860-intel-osf1. (From RMS.)
Per Bothner <bothner@cygnus.com>
parents:
9806
diff
changeset
|
916 echo i860-intel-osf1 |
5a86de94adff
Support paragon as i860-intel-osf1. (From RMS.)
Per Bothner <bothner@cygnus.com>
parents:
9806
diff
changeset
|
917 exit 0 ;; |
8373 | 918 i860:*:4.*:*) # i860-SVR4 |
919 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then | |
920 echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 | |
921 else # Add other i860-SVR4 vendors below as they are discovered. | |
922 echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 | |
2907 | 923 fi |
924 exit 0 ;; | |
925 mini*:CTIX:SYS*5:*) | |
926 # "miniframe" | |
927 echo m68010-convergent-sysv | |
928 exit 0 ;; | |
16820
9b9ba0a44008
(M68*:*:R3V[567]*:*): Use uppercase 'M'.
Richard Kenner <kenner@gnu.org>
parents:
16800
diff
changeset
|
929 M68*:*:R3V[567]*:*) |
3622 | 930 test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; |
15359
832e49a9a8ea
* config.guess (i?86-ncr-sysv*): Emit minor release numbers.
Per Bothner <bothner@cygnus.com>
parents:
15333
diff
changeset
|
931 3[34]??:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 4850:*:4.0:3.0) |
16575
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
932 OS_REL='' |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
933 test -r /etc/.relid \ |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
934 && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
935 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
936 && echo i486-ncr-sysv4.3${OS_REL} && exit 0 |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
937 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
938 && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;; |
9634 | 939 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) |
16575
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
940 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ |
9634 | 941 && echo i486-ncr-sysv4 && exit 0 ;; |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
942 m68*:LynxOS:2.*:*) |
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
943 echo m68k-unknown-lynxos${UNAME_RELEASE} |
8373 | 944 exit 0 ;; |
945 mc68030:UNIX_System_V:4.*:*) | |
8640
3351fa6afe8f
(netbsd, freebsd, linux): Accept any machine, not just i[34]86.
Per Bothner <bothner@cygnus.com>
parents:
8639
diff
changeset
|
946 echo m68k-atari-sysv4 |
3351fa6afe8f
(netbsd, freebsd, linux): Accept any machine, not just i[34]86.
Per Bothner <bothner@cygnus.com>
parents:
8639
diff
changeset
|
947 exit 0 ;; |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
948 i?86:LynxOS:2.*:* | i?86:LynxOS:3.[01]*:*) |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
949 echo i386-unknown-lynxos${UNAME_RELEASE} |
8373 | 950 exit 0 ;; |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
951 TSUNAMI:LynxOS:2.*:*) |
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
952 echo sparc-unknown-lynxos${UNAME_RELEASE} |
8373 | 953 exit 0 ;; |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
954 rs6000:LynxOS:2.*:* | PowerPC:LynxOS:2.*:*) |
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
955 echo rs6000-unknown-lynxos${UNAME_RELEASE} |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
956 exit 0 ;; |
16575
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
957 SM[BE]S:UNIX_SV:*:*) |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
958 echo mips-dde-sysv${UNAME_RELEASE} |
3c85d35d84a2
Bunch of updates. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
16571
diff
changeset
|
959 exit 0 ;; |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
960 RM*:ReliantUNIX-*:*:*) |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
961 echo mips-sni-sysv4 |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
962 exit 0 ;; |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
963 RM*:SINIX-*:*:*) |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
964 echo mips-sni-sysv4 |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
965 exit 0 ;; |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
966 *:SINIX-*:*:*) |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
967 if uname -p 2>/dev/null >/dev/null ; then |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
968 UNAME_MACHINE=`(uname -p) 2>/dev/null` |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
969 echo ${UNAME_MACHINE}-sni-sysv4 |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
970 else |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
971 echo ns32k-sni-sysv |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
972 fi |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
973 exit 0 ;; |
16637
960c425726cb
(PENTIUM:CPunix:4.0*:*): New case.
Richard Kenner <kenner@gnu.org>
parents:
16606
diff
changeset
|
974 PENTIUM:CPunix:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort |
960c425726cb
(PENTIUM:CPunix:4.0*:*): New case.
Richard Kenner <kenner@gnu.org>
parents:
16606
diff
changeset
|
975 # says <Richard.M.Bartel@ccMail.Census.GOV> |
960c425726cb
(PENTIUM:CPunix:4.0*:*): New case.
Richard Kenner <kenner@gnu.org>
parents:
16606
diff
changeset
|
976 echo i586-unisys-sysv4 |
960c425726cb
(PENTIUM:CPunix:4.0*:*): New case.
Richard Kenner <kenner@gnu.org>
parents:
16606
diff
changeset
|
977 exit 0 ;; |
16539
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
978 *:UNIX_System_V:4*:FTX*) |
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
979 # From Gerald Hewes <hewes@openmarket.com>. |
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
980 # How about differentiating between stratus architectures? -djm |
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
981 echo hppa1.1-stratus-sysv4 |
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
982 exit 0 ;; |
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
983 *:*:*:FTX*) |
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
984 # From seanf@swdc.stratus.com. |
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
985 echo i860-stratus-sysv4 |
901db650f48e
patches from bug-gnu-utils to support more architectures
David J. MacKenzie <djm@gnu.org>
parents:
16177
diff
changeset
|
986 exit 0 ;; |
14447 | 987 mc68*:A/UX:*:*) |
988 echo m68k-apple-aux${UNAME_RELEASE} | |
989 exit 0 ;; | |
18384 | 990 news*:NEWS-OS:*:6*) |
991 echo mips-sony-newsos6 | |
992 exit 0 ;; | |
24754
b900ed44aab2
1999-05-22 Ben Elliston <bje@cygnus.com>
Ben Elliston <bje@air.net.au>
parents:
24743
diff
changeset
|
993 R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) |
14808 | 994 if [ -d /usr/nec ]; then |
995 echo mips-nec-sysv${UNAME_RELEASE} | |
996 else | |
997 echo mips-unknown-sysv${UNAME_RELEASE} | |
998 fi | |
999 exit 0 ;; | |
22785
3ec05468d4e7
(*:[Aa]miga[Oo][Ss]:*:*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
22477
diff
changeset
|
1000 BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. |
3ec05468d4e7
(*:[Aa]miga[Oo][Ss]:*:*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
22477
diff
changeset
|
1001 echo powerpc-be-beos |
3ec05468d4e7
(*:[Aa]miga[Oo][Ss]:*:*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
22477
diff
changeset
|
1002 exit 0 ;; |
3ec05468d4e7
(*:[Aa]miga[Oo][Ss]:*:*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
22477
diff
changeset
|
1003 BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. |
3ec05468d4e7
(*:[Aa]miga[Oo][Ss]:*:*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
22477
diff
changeset
|
1004 echo powerpc-apple-beos |
3ec05468d4e7
(*:[Aa]miga[Oo][Ss]:*:*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
22477
diff
changeset
|
1005 exit 0 ;; |
3ec05468d4e7
(*:[Aa]miga[Oo][Ss]:*:*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
22477
diff
changeset
|
1006 BePC:BeOS:*:*) # BeOS running on Intel PC compatible. |
3ec05468d4e7
(*:[Aa]miga[Oo][Ss]:*:*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
22477
diff
changeset
|
1007 echo i586-pc-beos |
3ec05468d4e7
(*:[Aa]miga[Oo][Ss]:*:*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
22477
diff
changeset
|
1008 exit 0 ;; |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
1009 SX-4:SUPER-UX:*:*) |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
1010 echo sx4-nec-superux${UNAME_RELEASE} |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
1011 exit 0 ;; |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
1012 SX-5:SUPER-UX:*:*) |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
1013 echo sx5-nec-superux${UNAME_RELEASE} |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
1014 exit 0 ;; |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
1015 Power*:Rhapsody:*:*) |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
1016 echo powerpc-apple-rhapsody${UNAME_RELEASE} |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
1017 exit 0 ;; |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
1018 *:Rhapsody:*:*) |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
1019 echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
1020 exit 0 ;; |
28103
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
1021 Power*:Mac*OS:*:*) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
1022 echo powerpc-apple-macos${UNAME_RELEASE} |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
1023 exit 0 ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
1024 *:Mac*OS:*:*) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
1025 echo ${UNAME_MACHINE}-apple-macos${UNAME_RELEASE} |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
1026 exit 0 ;; |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
1027 *:QNX:*:4*) |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
1028 echo i386-qnx-qnx${UNAME_VERSION} |
fad18c8cd792
Use the versions of the file from subversions.
Gerd Moellmann <gerd@gnu.org>
parents:
24775
diff
changeset
|
1029 exit 0 ;; |
2907 | 1030 esac |
1031 | |
8373 | 1032 #echo '(No uname command or uname output not recognized.)' 1>&2 |
2907 | 1033 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 |
1034 | |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
1035 cat >$dummy.c <<EOF |
12364
a910242e72c0
(i386-sequent-ptx): Properly get version number.
Richard Kenner <kenner@gnu.org>
parents:
12363
diff
changeset
|
1036 #ifdef _SEQUENT_ |
a910242e72c0
(i386-sequent-ptx): Properly get version number.
Richard Kenner <kenner@gnu.org>
parents:
12363
diff
changeset
|
1037 # include <sys/types.h> |
a910242e72c0
(i386-sequent-ptx): Properly get version number.
Richard Kenner <kenner@gnu.org>
parents:
12363
diff
changeset
|
1038 # include <sys/utsname.h> |
a910242e72c0
(i386-sequent-ptx): Properly get version number.
Richard Kenner <kenner@gnu.org>
parents:
12363
diff
changeset
|
1039 #endif |
8630 | 1040 main () |
2907 | 1041 { |
1042 #if defined (sony) | |
1043 #if defined (MIPSEB) | |
8373 | 1044 /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, |
1045 I don't know.... */ | |
1046 printf ("mips-sony-bsd\n"); exit (0); | |
2907 | 1047 #else |
10119
ef5354babb14
(dummy.c) [sony]: Include <sys/param.h> and emit newsos4 #ifdef NEWSOS4.
Roland McGrath <roland@gnu.org>
parents:
10091
diff
changeset
|
1048 #include <sys/param.h> |
ef5354babb14
(dummy.c) [sony]: Include <sys/param.h> and emit newsos4 #ifdef NEWSOS4.
Roland McGrath <roland@gnu.org>
parents:
10091
diff
changeset
|
1049 printf ("m68k-sony-newsos%s\n", |
ef5354babb14
(dummy.c) [sony]: Include <sys/param.h> and emit newsos4 #ifdef NEWSOS4.
Roland McGrath <roland@gnu.org>
parents:
10091
diff
changeset
|
1050 #ifdef NEWSOS4 |
ef5354babb14
(dummy.c) [sony]: Include <sys/param.h> and emit newsos4 #ifdef NEWSOS4.
Roland McGrath <roland@gnu.org>
parents:
10091
diff
changeset
|
1051 "4" |
ef5354babb14
(dummy.c) [sony]: Include <sys/param.h> and emit newsos4 #ifdef NEWSOS4.
Roland McGrath <roland@gnu.org>
parents:
10091
diff
changeset
|
1052 #else |
ef5354babb14
(dummy.c) [sony]: Include <sys/param.h> and emit newsos4 #ifdef NEWSOS4.
Roland McGrath <roland@gnu.org>
parents:
10091
diff
changeset
|
1053 "" |
ef5354babb14
(dummy.c) [sony]: Include <sys/param.h> and emit newsos4 #ifdef NEWSOS4.
Roland McGrath <roland@gnu.org>
parents:
10091
diff
changeset
|
1054 #endif |
ef5354babb14
(dummy.c) [sony]: Include <sys/param.h> and emit newsos4 #ifdef NEWSOS4.
Roland McGrath <roland@gnu.org>
parents:
10091
diff
changeset
|
1055 ); exit (0); |
2907 | 1056 #endif |
1057 #endif | |
1058 | |
8373 | 1059 #if defined (__arm) && defined (__acorn) && defined (__unix) |
8630 | 1060 printf ("arm-acorn-riscix"); exit (0); |
8373 | 1061 #endif |
1062 | |
8630 | 1063 #if defined (hp300) && !defined (hpux) |
1064 printf ("m68k-hp-bsd\n"); exit (0); | |
2907 | 1065 #endif |
1066 | |
8630 | 1067 #if defined (NeXT) |
1068 #if !defined (__ARCHITECTURE__) | |
8373 | 1069 #define __ARCHITECTURE__ "m68k" |
1070 #endif | |
1071 int version; | |
1072 version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; | |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
1073 if (version < 4) |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
1074 printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
1075 else |
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
1076 printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
1077 exit (0); |
8373 | 1078 #endif |
1079 | |
2907 | 1080 #if defined (MULTIMAX) || defined (n16) |
1081 #if defined (UMAXV) | |
8630 | 1082 printf ("ns32k-encore-sysv\n"); exit (0); |
2907 | 1083 #else |
1084 #if defined (CMU) | |
8630 | 1085 printf ("ns32k-encore-mach\n"); exit (0); |
2907 | 1086 #else |
8630 | 1087 printf ("ns32k-encore-bsd\n"); exit (0); |
2907 | 1088 #endif |
1089 #endif | |
1090 #endif | |
1091 | |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
1092 #if defined (__386BSD__) |
16177
da1a2b74d099
Use pc instead of unknown, for pc clone systems.
Richard M. Stallman <rms@gnu.org>
parents:
15701
diff
changeset
|
1093 printf ("i386-pc-bsd\n"); exit (0); |
2907 | 1094 #endif |
1095 | |
8630 | 1096 #if defined (sequent) |
1097 #if defined (i386) | |
1098 printf ("i386-sequent-dynix\n"); exit (0); | |
3622 | 1099 #endif |
1100 #if defined (ns32000) | |
8630 | 1101 printf ("ns32k-sequent-dynix\n"); exit (0); |
3622 | 1102 #endif |
1103 #endif | |
1104 | |
8630 | 1105 #if defined (_SEQUENT_) |
12364
a910242e72c0
(i386-sequent-ptx): Properly get version number.
Richard Kenner <kenner@gnu.org>
parents:
12363
diff
changeset
|
1106 struct utsname un; |
a910242e72c0
(i386-sequent-ptx): Properly get version number.
Richard Kenner <kenner@gnu.org>
parents:
12363
diff
changeset
|
1107 |
a910242e72c0
(i386-sequent-ptx): Properly get version number.
Richard Kenner <kenner@gnu.org>
parents:
12363
diff
changeset
|
1108 uname(&un); |
a910242e72c0
(i386-sequent-ptx): Properly get version number.
Richard Kenner <kenner@gnu.org>
parents:
12363
diff
changeset
|
1109 |
a910242e72c0
(i386-sequent-ptx): Properly get version number.
Richard Kenner <kenner@gnu.org>
parents:
12363
diff
changeset
|
1110 if (strncmp(un.version, "V2", 2) == 0) { |
a910242e72c0
(i386-sequent-ptx): Properly get version number.
Richard Kenner <kenner@gnu.org>
parents:
12363
diff
changeset
|
1111 printf ("i386-sequent-ptx2\n"); exit (0); |
a910242e72c0
(i386-sequent-ptx): Properly get version number.
Richard Kenner <kenner@gnu.org>
parents:
12363
diff
changeset
|
1112 } |
a910242e72c0
(i386-sequent-ptx): Properly get version number.
Richard Kenner <kenner@gnu.org>
parents:
12363
diff
changeset
|
1113 if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ |
a910242e72c0
(i386-sequent-ptx): Properly get version number.
Richard Kenner <kenner@gnu.org>
parents:
12363
diff
changeset
|
1114 printf ("i386-sequent-ptx1\n"); exit (0); |
a910242e72c0
(i386-sequent-ptx): Properly get version number.
Richard Kenner <kenner@gnu.org>
parents:
12363
diff
changeset
|
1115 } |
a910242e72c0
(i386-sequent-ptx): Properly get version number.
Richard Kenner <kenner@gnu.org>
parents:
12363
diff
changeset
|
1116 printf ("i386-sequent-ptx\n"); exit (0); |
a910242e72c0
(i386-sequent-ptx): Properly get version number.
Richard Kenner <kenner@gnu.org>
parents:
12363
diff
changeset
|
1117 |
3622 | 1118 #endif |
1119 | |
8630 | 1120 #if defined (vax) |
1121 #if !defined (ultrix) | |
1122 printf ("vax-dec-bsd\n"); exit (0); | |
8373 | 1123 #else |
8630 | 1124 printf ("vax-dec-ultrix\n"); exit (0); |
1125 #endif | |
8373 | 1126 #endif |
8630 | 1127 |
1128 #if defined (alliant) && defined (i860) | |
1129 printf ("i860-alliant-bsd\n"); exit (0); | |
8373 | 1130 #endif |
1131 | |
2907 | 1132 exit (1); |
1133 } | |
1134 EOF | |
1135 | |
24588
fdce161ec335
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24478
diff
changeset
|
1136 $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy && rm $dummy.c $dummy && exit 0 |
24469
c23008607eb9
Merge recent additions from autoconf source tree.
Ben Elliston <bje@air.net.au>
parents:
24068
diff
changeset
|
1137 rm -f $dummy.c $dummy |
2907 | 1138 |
8373 | 1139 # Apollos put the system type in the environment. |
1140 | |
1141 test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; } | |
1142 | |
9371
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1143 # Convex versions that predate uname can use getsysinfo(1) |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1144 |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1145 if [ -x /usr/convex/getsysinfo ] |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1146 then |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1147 case `getsysinfo -f cpu_type` in |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1148 c1*) |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1149 echo c1-convex-bsd |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1150 exit 0 ;; |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1151 c2*) |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1152 if getsysinfo -f scalar_acc |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1153 then echo c32-convex-bsd |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1154 else echo c2-convex-bsd |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1155 fi |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1156 exit 0 ;; |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1157 c34*) |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1158 echo c34-convex-bsd |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1159 exit 0 ;; |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1160 c38*) |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1161 echo c38-convex-bsd |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1162 exit 0 ;; |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1163 c4*) |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1164 echo c4-convex-bsd |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1165 exit 0 ;; |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1166 esac |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1167 fi |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
1168 |
8373 | 1169 #echo '(Unable to guess system type)' 1>&2 |
2907 | 1170 |
1171 exit 1 |