]>
Commit | Line | Data |
---|---|---|
ebc447f4 BK |
1 | #!/bin/sh |
2 | # This script attempts to guess a canonical system name. | |
574516bf | 3 | # Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc. |
ebc447f4 BK |
4 | # |
5 | # This file is free software; you can redistribute it and/or modify it | |
6 | # under the terms of the GNU General Public License as published by | |
7 | # the Free Software Foundation; either version 2 of the License, or | |
8 | # (at your option) any later version. | |
9 | # | |
10 | # This program is distributed in the hope that it will be useful, but | |
11 | # WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | # General Public License for more details. | |
14 | # | |
15 | # You should have received a copy of the GNU General Public License | |
16 | # along with this program; if not, write to the Free Software | |
17 | # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
18 | ||
19 | # | |
5c49a353 | 20 | # This script attempts to guess a canonical system name similar to |
4b99c982 DZ |
21 | # config.sub. If it succeeds, it prints the system name on stdout, and |
22 | # exits with 0. Otherwise, it exits with 1. | |
ebc447f4 BK |
23 | # |
24 | # The plan is that this can be called by configure scripts if you | |
25 | # don't specify an explicit system type (host/target name). | |
26 | # | |
27 | # Only a few systems have been added to this list; please add others | |
28 | # (but try to keep the structure clean). | |
29 | # | |
30 | ||
574516bf PB |
31 | # This is needed to find uname on a Pyramid OSx when run in the BSD universe. |
32 | # ([email protected] 8/24/94.) | |
33 | if (test -f /.attbin/uname) >/dev/null 2>&1 ; then | |
34 | PATH=$PATH:/.attbin ; export PATH | |
35 | fi | |
36 | ||
ebc447f4 BK |
37 | UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown |
38 | UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown | |
39 | UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown | |
40 | UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown | |
41 | ||
6f023e8a PB |
42 | trap 'rm -f dummy.c dummy.o dummy; exit 1' 1 2 15 |
43 | ||
ebc447f4 BK |
44 | # Note: order is significant - the case branches are not exclusive. |
45 | ||
46 | case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in | |
a4798dec PB |
47 | alpha:OSF1:V*:*) |
48 | # After 1.2, OSF1 uses "V1.3" for uname -r. | |
49 | echo alpha-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^V//'` | |
50 | exit 0 ;; | |
51 | alpha:OSF1:*:*) | |
9117f609 | 52 | # 1.2 uses "1.2" for uname -r. |
ebc447f4 BK |
53 | echo alpha-dec-osf${UNAME_RELEASE} |
54 | exit 0 ;; | |
d0454ea8 JK |
55 | arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) |
56 | echo arm-acorn-riscix${UNAME_RELEASE} | |
57 | exit 0;; | |
574516bf PB |
58 | Pyramid*:OSx*:*:*) |
59 | if test "`(/bin/universe) 2>/dev/null`" = att ; then | |
60 | echo pyramid-pyramid-sysv3 | |
61 | else | |
62 | echo pyramid-pyramid-bsd | |
63 | fi | |
64 | exit 0 ;; | |
5c49a353 PB |
65 | sun4*:SunOS:5.*:*) |
66 | echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` | |
ebc447f4 | 67 | exit 0 ;; |
a6c508f1 JK |
68 | sun4*:SunOS:6*:*) |
69 | # According to config.sub, this is the proper way to canonicalize | |
70 | # SunOS6. Hard to guess exactly what SunOS6 will be like, but | |
71 | # it's likely to be more like Solaris than SunOS4. | |
72 | echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` | |
73 | exit 0 ;; | |
ebc447f4 BK |
74 | sun4*:SunOS:*:*) |
75 | echo sparc-sun-sunos${UNAME_RELEASE} | |
76 | exit 0 ;; | |
77 | sun3*:SunOS:*:*) | |
78 | echo m68k-sun-sunos${UNAME_RELEASE} | |
79 | exit 0 ;; | |
a4798dec PB |
80 | mc68030:UNIX_System_V:4.*:*) |
81 | echo m68k-atari-sysv4 | |
82 | exit 0 ;; | |
ebc447f4 BK |
83 | RISC*:ULTRIX:*:*) |
84 | echo mips-dec-ultrix${UNAME_RELEASE} | |
85 | exit 0 ;; | |
86 | VAX*:ULTRIX*:*:*) | |
87 | echo vax-dec-ultrix${UNAME_RELEASE} | |
88 | exit 0 ;; | |
d1711145 JK |
89 | mips:*:5*:RISCos) |
90 | echo mips-mips-riscos${UNAME_RELEASE} | |
91 | exit 0 ;; | |
a4798dec PB |
92 | m88k:CX/UX:7*:*) |
93 | echo m88k-harris-cxux7 | |
94 | exit 0 ;; | |
ebc447f4 BK |
95 | m88k:*:4*:R4*) |
96 | echo m88k-motorola-sysv4 | |
97 | exit 0 ;; | |
98 | m88k:*:3*:R3*) | |
99 | echo m88k-motorola-sysv3 | |
100 | exit 0 ;; | |
4b99c982 | 101 | AViiON:dgux:*:*) |
574516bf PB |
102 | if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx \ |
103 | -o ${TARGET_BINARY_INTERFACE}x = x ] ; then | |
104 | echo m88k-dg-dgux${UNAME_RELEASE} | |
105 | else | |
106 | echo m88k-dg-dguxbcs${UNAME_RELEASE} | |
107 | fi | |
4b99c982 | 108 | exit 0 ;; |
574516bf PB |
109 | M88*:DolphinOS:*:*) # DolphinOS (SVR3) |
110 | echo m88k-dolphin-sysv3 | |
111 | exit 0 ;; | |
4b99c982 DZ |
112 | M88*:*:R3*:*) |
113 | # Delta 88k system running SVR3 | |
114 | echo m88k-motorola-sysv3 | |
115 | exit 0 ;; | |
ffbec213 PB |
116 | XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) |
117 | echo m88k-tektronix-sysv3 | |
118 | exit 0 ;; | |
119 | Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) | |
120 | echo m68k-tektronix-bsd | |
121 | exit 0 ;; | |
ebc447f4 BK |
122 | *:IRIX:*:*) |
123 | echo mips-sgi-irix${UNAME_RELEASE} | |
124 | exit 0 ;; | |
125 | i[34]86:AIX:*:*) | |
126 | echo i386-ibm-aix | |
127 | exit 0 ;; | |
128 | *:AIX:2:3) | |
0ffe8814 PB |
129 | if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then |
130 | echo rs6000-ibm-aix3.2.5 | |
131 | elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then | |
132 | echo rs6000-ibm-aix3.2.4 | |
133 | else | |
134 | echo rs6000-ibm-aix3.2 | |
135 | fi | |
ebc447f4 BK |
136 | exit 0 ;; |
137 | *:AIX:*:*) | |
138 | echo rs6000-ibm-aix | |
139 | exit 0 ;; | |
140 | *:BOSX:*:*) | |
141 | echo rs6000-bull-bosx | |
142 | exit 0 ;; | |
d1711145 JK |
143 | DPX/2?00:B.O.S.:*:*) |
144 | echo m68k-bull-sysv3 | |
145 | exit 0 ;; | |
08a0da68 JK |
146 | 9000/[34]??:4.3bsd:1.*:*) |
147 | echo m68k-hp-bsd | |
148 | exit 0 ;; | |
149 | hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) | |
9117f609 | 150 | echo m68k-hp-bsd4.4 |
08a0da68 | 151 | exit 0 ;; |
0ffe8814 PB |
152 | 9000/[3478]??:HP-UX:*:*) |
153 | case "${UNAME_MACHINE}" in | |
154 | 9000/31? ) HP_ARCH=m68000 ;; | |
155 | 9000/[34]?? ) HP_ARCH=m68k ;; | |
156 | 9000/7?? | 9000/8?7 ) HP_ARCH=hppa1.1 ;; | |
157 | 9000/8?? ) HP_ARCH=hppa1.0 ;; | |
158 | esac | |
159 | case ${UNAME_RELEASE} in | |
160 | *.B7.* ) HPUX_REV=7 ;; | |
161 | *.[B0]8.* ) HPUX_REV=8 ;; | |
162 | *.09.* ) HPUX_REV=9 ;; | |
163 | esac | |
164 | echo ${HP_ARCH}-hp-hpux${HPUX_REV} | |
ebc447f4 | 165 | exit 0 ;; |
9117f609 JK |
166 | 3050*:HI-UX:*:*) |
167 | sed 's/^ //' << EOF >dummy.c | |
168 | #include <unistd.h> | |
169 | int | |
170 | main () | |
171 | { | |
172 | long cpu = sysconf (_SC_CPU_VERSION); | |
db7ea4ea PB |
173 | /* The order matters, because CPU_IS_HP_MC68K erroneously returns |
174 | true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct | |
175 | results, however. */ | |
e7b02f0e | 176 | if (CPU_IS_PA_RISC (cpu)) |
9117f609 JK |
177 | { |
178 | switch (cpu) | |
179 | { | |
180 | case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; | |
181 | case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; | |
182 | case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; | |
183 | default: puts ("hppa-hitachi-hiuxwe2"); break; | |
184 | } | |
185 | } | |
db7ea4ea | 186 | else if (CPU_IS_HP_MC68K (cpu)) |
e7b02f0e | 187 | puts ("m68k-hitachi-hiuxwe2"); |
9117f609 JK |
188 | else puts ("unknown-hitachi-hiuxwe2"); |
189 | exit (0); | |
190 | } | |
191 | EOF | |
192 | ${CC-cc} dummy.c -o dummy && ./dummy && rm dummy.c dummy && exit 0 | |
193 | rm -f dummy.c dummy | |
194 | echo unknown-hitachi-hiuxwe2 | |
195 | exit 0 ;; | |
d1711145 | 196 | 9000/7??:4.3bsd:*:* | 9000/8?7:4.3bsd:*:* ) |
4f23a101 PB |
197 | echo hppa1.1-hp-bsd |
198 | exit 0 ;; | |
199 | 9000/8??:4.3bsd:*:*) | |
200 | echo hppa1.0-hp-bsd | |
201 | exit 0 ;; | |
b11e31ed JK |
202 | hp7??:OSF1:*:* | hp8?7:OSF1:*:* ) |
203 | echo hppa1.1-hp-osf | |
204 | exit 0 ;; | |
205 | hp8??:OSF1:*:*) | |
206 | echo hppa1.0-hp-osf | |
207 | exit 0 ;; | |
ffbec213 | 208 | C1*:ConvexOS:*:* | convex:ConvexOS:C1:*) |
ebc447f4 BK |
209 | echo c1-convex-bsd |
210 | exit 0 ;; | |
ffbec213 | 211 | C2*:ConvexOS:*:* | convex:ConvexOS:C2:*) |
ebc447f4 BK |
212 | echo c2-convex-bsd |
213 | exit 0 ;; | |
214 | CRAY*X-MP:UNICOS:*:*) | |
215 | echo xmp-cray-unicos | |
216 | exit 0 ;; | |
217 | CRAY*Y-MP:UNICOS:*:*) | |
218 | echo ymp-cray-unicos | |
219 | exit 0 ;; | |
220 | CRAY-2:UNICOS:*:*) | |
221 | echo cray2-cray-unicos | |
222 | exit 0 ;; | |
9117f609 JK |
223 | hp3[0-9][05]:NetBSD:*:*) |
224 | echo m68k-hp-netbsd${UNAME_RELEASE} | |
225 | exit 0 ;; | |
96364ec4 PB |
226 | i[34]86:BSD/386:*:*) |
227 | echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} | |
228 | exit 0 ;; | |
545f07da PB |
229 | i[34]86:FreeBSD:*:*) |
230 | echo ${UNAME_MACHINE}-unknown-freebsd${UNAME_RELEASE} | |
231 | exit 0 ;; | |
9117f609 JK |
232 | i[34]86:NetBSD:*:*) |
233 | echo ${UNAME_MACHINE}-unknown-netbsd${UNAME_RELEASE} | |
234 | exit 0 ;; | |
ebc447f4 BK |
235 | i[34]86:Linux:*:*) |
236 | echo ${UNAME_MACHINE}-unknown-linux | |
237 | exit 0 ;; | |
238 | i[34]86:UNIX_SV:4.*:*) | |
9c069486 | 239 | if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then |
cd5d2efd | 240 | echo ${UNAME_MACHINE}-univel-sysv${UNAME_RELEASE} |
9c069486 ILT |
241 | else |
242 | echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE} | |
243 | fi | |
ebc447f4 BK |
244 | exit 0 ;; |
245 | i[34]86:*:3.2:*) | |
246 | if /bin/uname -X 2>/dev/null >/dev/null ; then | |
247 | UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')` | |
248 | (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486 | |
249 | echo ${UNAME_MACHINE}-unknown-sco$UNAME_REL | |
a4798dec PB |
250 | elif test -f /usr/options/cb.name; then |
251 | UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name` | |
252 | echo ${UNAME_MACHINE}-unknown-isc$UNAME_REL | |
ebc447f4 | 253 | else |
d0454ea8 | 254 | echo ${UNAME_MACHINE}-unknown-sysv32 |
ebc447f4 BK |
255 | fi |
256 | exit 0 ;; | |
b11e31ed JK |
257 | # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. earlier versions |
258 | # are messed up and put the nodename in both sysname and nodename. | |
259 | i[34]86:DYNIX/ptx:4*:*) | |
260 | echo i386-sequent-sysv4 | |
261 | exit 0 ;; | |
a4798dec PB |
262 | Intel:Mach:3*:*) |
263 | echo i386-unknown-mach3 | |
264 | exit 0 ;; | |
574516bf PB |
265 | i860:*:4.*:*) # i860-SVR4 |
266 | if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then | |
267 | echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 | |
268 | else # Add other i860-SVR4 vendors below as they are discovered. | |
269 | echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 | |
270 | fi | |
271 | exit 0 ;; | |
ebc447f4 BK |
272 | mini*:CTIX:SYS*5:*) |
273 | # "miniframe" | |
274 | echo m68010-convergent-sysv | |
275 | exit 0 ;; | |
4f23a101 | 276 | M680[234]0:*:R3V[567]*:*) |
cd5d2efd | 277 | test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; |
9117f609 | 278 | 3[34]??:*:4.0:*) |
4f23a101 PB |
279 | uname -p 2>/dev/null | grep 86 >/dev/null \ |
280 | && echo i486-ncr-sysv4 && exit 0 ;; | |
ee65efa8 JK |
281 | 33[56]0,3???:*:4.0:*) |
282 | uname -p 2>/dev/null | grep 86 >/dev/null \ | |
283 | && echo i486-ncr-sysv43 && exit 0 ;; | |
d0454ea8 JK |
284 | m680[234]0:LynxOS:2.2*:*) |
285 | echo m68k-lynx-lynxos${UNAME_RELEASE} | |
286 | exit 0 ;; | |
287 | i[34]86:LynxOS:2.2*:*) | |
288 | echo i386-lynx-lynxos${UNAME_RELEASE} | |
289 | exit 0 ;; | |
290 | TSUNAMI:LynxOS:2.2*:*) | |
291 | echo sparc-lynx-lynxos${UNAME_RELEASE} | |
292 | exit 0 ;; | |
47515657 SG |
293 | rs6000:LynxOS:2.2*:*) |
294 | echo rs6000-lynx-lynxos${UNAME_RELEASE} | |
295 | exit 0 ;; | |
96364ec4 PB |
296 | RM*:SINIX-*:*:*) |
297 | echo mips-sni-sysv4 | |
298 | exit 0 ;; | |
299 | *:SINIX-*:*:*) | |
300 | if uname -p 2>/dev/null >/dev/null ; then | |
301 | UNAME_MACHINE=`(uname -p) 2>/dev/null` | |
302 | echo ${UNAME_MACHINE}-sni-sysv4 | |
303 | else | |
304 | echo ns32k-sni-sysv | |
305 | fi | |
306 | exit 0 ;; | |
ebc447f4 BK |
307 | esac |
308 | ||
8d159a48 | 309 | #echo '(No uname command or uname output not recognized.)' 1>&2 |
ebc447f4 BK |
310 | #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 |
311 | ||
312 | cat >dummy.c <<EOF | |
6f023e8a | 313 | main () |
ebc447f4 BK |
314 | { |
315 | #if defined (sony) | |
316 | #if defined (MIPSEB) | |
d0454ea8 JK |
317 | /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, |
318 | I don't know.... */ | |
319 | printf ("mips-sony-bsd\n"); exit (0); | |
ebc447f4 | 320 | #else |
6f023e8a | 321 | printf ("m68k-sony-newsos\n"); exit (0); |
ebc447f4 BK |
322 | #endif |
323 | #endif | |
324 | ||
d0454ea8 | 325 | #if defined (__arm) && defined (__acorn) && defined (__unix) |
6f023e8a | 326 | printf ("arm-acorn-riscix"); exit (0); |
d0454ea8 JK |
327 | #endif |
328 | ||
6f023e8a PB |
329 | #if defined (hp300) && !defined (hpux) |
330 | printf ("m68k-hp-bsd\n"); exit (0); | |
ebc447f4 BK |
331 | #endif |
332 | ||
6f023e8a PB |
333 | #if defined (NeXT) |
334 | #if !defined (__ARCHITECTURE__) | |
ffbec213 PB |
335 | #define __ARCHITECTURE__ "m68k" |
336 | #endif | |
6f023e8a PB |
337 | int version; |
338 | version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; | |
339 | printf ("%s-next-neststep%s\n", __ARCHITECTURE__, version==2 ? "2" : "3"); | |
340 | exit (0); | |
8d159a48 JG |
341 | #endif |
342 | ||
ebc447f4 BK |
343 | #if defined (MULTIMAX) || defined (n16) |
344 | #if defined (UMAXV) | |
6f023e8a | 345 | printf ("ns32k-encore-sysv\n"); exit (0); |
ebc447f4 BK |
346 | #else |
347 | #if defined (CMU) | |
6f023e8a | 348 | printf ("ns32k-encore-mach\n"); exit (0); |
ebc447f4 | 349 | #else |
6f023e8a | 350 | printf ("ns32k-encore-bsd\n"); exit (0); |
ebc447f4 BK |
351 | #endif |
352 | #endif | |
353 | #endif | |
354 | ||
6f023e8a PB |
355 | #if defined (__386BSD__) |
356 | printf ("i386-unknown-bsd\n"); exit (0); | |
ebc447f4 BK |
357 | #endif |
358 | ||
6f023e8a PB |
359 | #if defined (sequent) |
360 | #if defined (i386) | |
361 | printf ("i386-sequent-dynix\n"); exit (0); | |
5c49a353 PB |
362 | #endif |
363 | #if defined (ns32000) | |
6f023e8a | 364 | printf ("ns32k-sequent-dynix\n"); exit (0); |
ebc447f4 BK |
365 | #endif |
366 | #endif | |
367 | ||
6f023e8a PB |
368 | #if defined (_SEQUENT_) |
369 | printf ("i386-sequent-ptx\n"); exit (0); | |
ebc447f4 BK |
370 | #endif |
371 | ||
6f023e8a PB |
372 | #if defined (vax) |
373 | #if !defined (ultrix) | |
374 | printf ("vax-dec-bsd\n"); exit (0); | |
47515657 | 375 | #else |
6f023e8a | 376 | printf ("vax-dec-ultrix\n"); exit (0); |
47515657 SG |
377 | #endif |
378 | #endif | |
379 | ||
574516bf PB |
380 | #if defined (alliant) && defined (i860) |
381 | printf ("i860-alliant-bsd\n"); exit (0); | |
382 | #endif | |
383 | ||
ebc447f4 BK |
384 | exit (1); |
385 | } | |
386 | EOF | |
387 | ||
6f023e8a | 388 | ${CC-cc} dummy.c -o dummy 2>/dev/null && ./dummy && rm dummy.c dummy && exit 0 |
ebc447f4 BK |
389 | rm -f dummy.c dummy |
390 | ||
ffbec213 PB |
391 | # Apollos put the system type in the environment. |
392 | ||
393 | test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; } | |
394 | ||
8d159a48 | 395 | #echo '(Unable to guess system type)' 1>&2 |
ebc447f4 BK |
396 | |
397 | exit 1 |