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