Subversion Repositories freemyipod

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
445 theseven 1
#! /bin/sh
2
# Configuration validation subroutine script.
3
#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4
#   2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
5
 
6
timestamp='2005-04-22'
7
 
8
# This file is (in principle) common to ALL GNU software.
9
# The presence of a machine in this file suggests that SOME GNU software
10
# can handle that machine.  It does not imply ALL GNU software can.
11
#
12
# This file is free software; you can redistribute it and/or modify
13
# it under the terms of the GNU General Public License as published by
14
# the Free Software Foundation; either version 2 of the License, or
15
# (at your option) any later version.
16
#
17
# This program is distributed in the hope that it will be useful,
18
# but WITHOUT ANY WARRANTY; without even the implied warranty of
19
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20
# GNU General Public License for more details.
21
#
22
# You should have received a copy of the GNU General Public License
23
# along with this program; if not, write to the Free Software
24
# Foundation, Inc., 59 Temple Place - Suite 330,
25
# Boston, MA 02111-1307, USA.
26
 
27
# As a special exception to the GNU General Public License, if you
28
# distribute this file as part of a program that contains a
29
# configuration script generated by Autoconf, you may include it under
30
# the same distribution terms that you use for the rest of that program.
31
 
32
# Please send patches to <config-patches@gnu.org>.  Submit a context
33
# diff and a properly formatted ChangeLog entry.
34
#
35
# Configuration subroutine to validate and canonicalize a configuration type.
36
# Supply the specified configuration type as an argument.
37
# If it is invalid, we print an error message on stderr and exit with code 1.
38
# Otherwise, we print the canonical config type on stdout and succeed.
39
 
40
# This file is supposed to be the same for all GNU packages
41
# and recognize all the CPU types, system types and aliases
42
# that are meaningful with *any* GNU software.
43
# Each package is responsible for reporting which valid configurations
44
# it does not support.  The user should be able to distinguish
45
# a failure to support a valid configuration from a meaningless
46
# configuration.
47
 
48
# The goal of this file is to map all the various variations of a given
49
# machine specification into a single specification in the form:
50
#	CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
51
# or in some cases, the newer four-part form:
52
#	CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
53
# It is wrong to echo any other type of specification.
54
 
55
me=`echo "$0" | sed -e 's,.*/,,'`
56
 
57
usage="\
58
Usage: $0 [OPTION] CPU-MFR-OPSYS
59
       $0 [OPTION] ALIAS
60
 
61
Canonicalize a configuration name.
62
 
63
Operation modes:
64
  -h, --help         print this help, then exit
65
  -t, --time-stamp   print date of last modification, then exit
66
  -v, --version      print version number, then exit
67
 
68
Report bugs and patches to <config-patches@gnu.org>."
69
 
70
version="\
71
GNU config.sub ($timestamp)
72
 
73
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
74
Free Software Foundation, Inc.
75
 
76
This is free software; see the source for copying conditions.  There is NO
77
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
78
 
79
help="
80
Try \`$me --help' for more information."
81
 
82
# Parse command line
83
while test $# -gt 0 ; do
84
  case $1 in
85
    --time-stamp | --time* | -t )
86
       echo "$timestamp" ; exit 0 ;;
87
    --version | -v )
88
       echo "$version" ; exit 0 ;;
89
    --help | --h* | -h )
90
       echo "$usage"; exit 0 ;;
91
    -- )     # Stop option processing
92
       shift; break ;;
93
    - )	# Use stdin as input.
94
       break ;;
95
    -* )
96
       echo "$me: invalid option $1$help"
97
       exit 1 ;;
98
 
99
    *local*)
100
       # First pass through any local machine types.
101
       echo $1
102
       exit 0;;
103
 
104
    * )
105
       break ;;
106
  esac
107
done
108
 
109
case $# in
110
 0) echo "$me: missing argument$help" >&2
111
    exit 1;;
112
 1) ;;
113
 *) echo "$me: too many arguments$help" >&2
114
    exit 1;;
115
esac
116
 
117
# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
118
# Here we must recognize all the valid KERNEL-OS combinations.
119
maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
120
case $maybe_os in
121
  nto-qnx* | linux-gnu* | linux-dietlibc | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | \
122
  kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*)
123
    os=-$maybe_os
124
    basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
125
    ;;
126
  *)
127
    basic_machine=`echo $1 | sed 's/-[^-]*$//'`
128
    if [ $basic_machine != $1 ]
129
    then os=`echo $1 | sed 's/.*-/-/'`
130
    else os=; fi
131
    ;;
132
esac
133
 
134
### Let's recognize common machines as not being operating systems so
135
### that things like config.sub decstation-3100 work.  We also
136
### recognize some manufacturers as not being operating systems, so we
137
### can provide default operating systems below.
138
case $os in
139
	-sun*os*)
140
		# Prevent following clause from handling this invalid input.
141
		;;
142
	-dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
143
	-att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
144
	-unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
145
	-convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
146
	-c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
147
	-harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
148
	-apple | -axis | -knuth | -cray)
149
		os=
150
		basic_machine=$1
151
		;;
152
	-sim | -cisco | -oki | -wec | -winbond)
153
		os=
154
		basic_machine=$1
155
		;;
156
	-scout)
157
		;;
158
	-wrs)
159
		os=-vxworks
160
		basic_machine=$1
161
		;;
162
	-chorusos*)
163
		os=-chorusos
164
		basic_machine=$1
165
		;;
166
 	-chorusrdb)
167
 		os=-chorusrdb
168
		basic_machine=$1
169
 		;;
170
	-hiux*)
171
		os=-hiuxwe2
172
		;;
173
	-sco5)
174
		os=-sco3.2v5
175
		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
176
		;;
177
	-sco4)
178
		os=-sco3.2v4
179
		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
180
		;;
181
	-sco3.2.[4-9]*)
182
		os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
183
		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
184
		;;
185
	-sco3.2v[4-9]*)
186
		# Don't forget version if it is 3.2v4 or newer.
187
		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
188
		;;
189
	-sco*)
190
		os=-sco3.2v2
191
		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
192
		;;
193
	-udk*)
194
		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
195
		;;
196
	-isc)
197
		os=-isc2.2
198
		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
199
		;;
200
	-clix*)
201
		basic_machine=clipper-intergraph
202
		;;
203
	-isc*)
204
		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
205
		;;
206
	-lynx*)
207
		os=-lynxos
208
		;;
209
	-ptx*)
210
		basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
211
		;;
212
	-windowsnt*)
213
		os=`echo $os | sed -e 's/windowsnt/winnt/'`
214
		;;
215
	-psos*)
216
		os=-psos
217
		;;
218
	-mint | -mint[0-9]*)
219
		basic_machine=m68k-atari
220
		os=-mint
221
		;;
222
esac
223
 
224
# Decode aliases for certain CPU-COMPANY combinations.
225
case $basic_machine in
226
	# Recognize the basic CPU types without company name.
227
	# Some are omitted here because they have special meanings below.
228
	1750a | 580 \
229
	| a29k \
230
	| alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
231
	| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
232
	| am33_2.0 \
233
	| arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \
234
	| bfin \
235
	| c4x | clipper \
236
	| d10v | d30v | dlx | dsp16xx \
237
	| fr30 | frv \
238
	| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
239
	| i370 | i860 | i960 | ia64 \
240
	| ip2k | iq2000 \
241
	| m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \
242
	| mips | mipsbe | mipseb | mipsel | mipsle \
243
	| mips16 \
244
	| mips64 | mips64el \
245
	| mips64vr | mips64vrel \
246
	| mips64orion | mips64orionel \
247
	| mips64vr4100 | mips64vr4100el \
248
	| mips64vr4300 | mips64vr4300el \
249
	| mips64vr5000 | mips64vr5000el \
250
	| mipsisa32 | mipsisa32el \
251
	| mipsisa32r2 | mipsisa32r2el \
252
	| mipsisa64 | mipsisa64el \
253
	| mipsisa64r2 | mipsisa64r2el \
254
	| mipsisa64sb1 | mipsisa64sb1el \
255
	| mipsisa64sr71k | mipsisa64sr71kel \
256
	| mipstx39 | mipstx39el \
257
	| mn10200 | mn10300 \
258
	| msp430 \
259
	| nios | nios2 \
260
	| ns16k | ns32k \
261
	| openrisc | or32 \
262
	| pdp10 | pdp11 | pj | pjl \
263
	| powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
264
	| pyramid \
265
	| sh | sh[1234] | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \
266
	| sh64 | sh64le \
267
	| sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \
268
	| sparcv8 | sparcv9 | sparcv9b \
269
	| strongarm \
270
	| tahoe | thumb | tic4x | tic80 | tron \
271
	| v850 | v850e \
272
	| microblaze \
273
	| we32k \
274
	| x86 | xscale | xscalee[bl] | xstormy16 | xtensa \
275
	| z8k)
276
		basic_machine=$basic_machine-unknown
277
		;;
278
	m32c)
279
		basic_machine=$basic_machine-unknown
280
		;;
281
	m6811 | m68hc11 | m6812 | m68hc12)
282
		# Motorola 68HC11/12.
283
		basic_machine=$basic_machine-unknown
284
		os=-none
285
		;;
286
	m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
287
		;;
288
 
289
	# We use `pc' rather than `unknown'
290
	# because (1) that's what they normally are, and
291
	# (2) the word "unknown" tends to confuse beginning users.
292
	i*86 | x86_64)
293
	  basic_machine=$basic_machine-pc
294
	  ;;
295
	# Object if more than one company name word.
296
	*-*-*)
297
		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
298
		exit 1
299
		;;
300
	# Recognize the basic CPU types with company name.
301
	580-* \
302
	| a29k-* \
303
	| alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
304
	| alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
305
	| alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
306
	| arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
307
	| avr-* \
308
	| bfin-* | bs2000-* \
309
	| c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \
310
	| clipper-* | craynv-* | cydra-* \
311
	| d10v-* | d30v-* | dlx-* \
312
	| elxsi-* \
313
	| f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \
314
	| h8300-* | h8500-* \
315
	| hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
316
	| i*86-* | i860-* | i960-* | ia64-* \
317
	| ip2k-* | iq2000-* \
318
	| m32r-* | m32rle-* \
319
	| m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
320
	| m88110-* | m88k-* | maxq-* | mcore-* \
321
	| mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
322
	| mips16-* \
323
	| mips64-* | mips64el-* \
324
	| mips64vr-* | mips64vrel-* \
325
	| mips64orion-* | mips64orionel-* \
326
	| mips64vr4100-* | mips64vr4100el-* \
327
	| mips64vr4300-* | mips64vr4300el-* \
328
	| mips64vr5000-* | mips64vr5000el-* \
329
	| mipsisa32-* | mipsisa32el-* \
330
	| mipsisa32r2-* | mipsisa32r2el-* \
331
	| mipsisa64-* | mipsisa64el-* \
332
	| mipsisa64r2-* | mipsisa64r2el-* \
333
	| mipsisa64sb1-* | mipsisa64sb1el-* \
334
	| mipsisa64sr71k-* | mipsisa64sr71kel-* \
335
	| mipstx39-* | mipstx39el-* \
336
	| mmix-* \
337
	| msp430-* \
338
	| nios-* | nios2-* \
339
	| none-* | np1-* | ns16k-* | ns32k-* \
340
	| orion-* \
341
	| pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
342
	| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
343
	| pyramid-* \
344
	| romp-* | rs6000-* \
345
	| sh-* | sh[1234]-* | sh[23]e-* | sh[34]eb-* | shbe-* \
346
	| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
347
	| sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \
348
	| sparclite-* \
349
	| sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \
350
	| tahoe-* | thumb-* \
351
	| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
352
	| tron-* \
353
	| v850-* | v850e-* | vax-* \
354
	| we32k-* \
355
	| x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \
356
	| xstormy16-* | xtensa-* \
357
	| ymp-* \
358
	| z8k-*)
359
		;;
360
	m32c-*)
361
		;;
362
	# Recognize the various machine names and aliases which stand
363
	# for a CPU type and a company and sometimes even an OS.
364
	386bsd)
365
		basic_machine=i386-unknown
366
		os=-bsd
367
		;;
368
	3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
369
		basic_machine=m68000-att
370
		;;
371
	3b*)
372
		basic_machine=we32k-att
373
		;;
374
	a29khif)
375
		basic_machine=a29k-amd
376
		os=-udi
377
		;;
378
    	abacus)
379
		basic_machine=abacus-unknown
380
		;;
381
	adobe68k)
382
		basic_machine=m68010-adobe
383
		os=-scout
384
		;;
385
	alliant | fx80)
386
		basic_machine=fx80-alliant
387
		;;
388
	altos | altos3068)
389
		basic_machine=m68k-altos
390
		;;
391
	am29k)
392
		basic_machine=a29k-none
393
		os=-bsd
394
		;;
395
	amd64)
396
		basic_machine=x86_64-pc
397
		;;
398
	amd64-*)
399
		basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`
400
		;;
401
	amdahl)
402
		basic_machine=580-amdahl
403
		os=-sysv
404
		;;
405
	amiga | amiga-*)
406
		basic_machine=m68k-unknown
407
		;;
408
	amigaos | amigados)
409
		basic_machine=m68k-unknown
410
		os=-amigaos
411
		;;
412
	amigaunix | amix)
413
		basic_machine=m68k-unknown
414
		os=-sysv4
415
		;;
416
	apollo68)
417
		basic_machine=m68k-apollo
418
		os=-sysv
419
		;;
420
	apollo68bsd)
421
		basic_machine=m68k-apollo
422
		os=-bsd
423
		;;
424
	aux)
425
		basic_machine=m68k-apple
426
		os=-aux
427
		;;
428
	balance)
429
		basic_machine=ns32k-sequent
430
		os=-dynix
431
		;;
432
	c90)
433
		basic_machine=c90-cray
434
		os=-unicos
435
		;;
436
	convex-c1)
437
		basic_machine=c1-convex
438
		os=-bsd
439
		;;
440
	convex-c2)
441
		basic_machine=c2-convex
442
		os=-bsd
443
		;;
444
	convex-c32)
445
		basic_machine=c32-convex
446
		os=-bsd
447
		;;
448
	convex-c34)
449
		basic_machine=c34-convex
450
		os=-bsd
451
		;;
452
	convex-c38)
453
		basic_machine=c38-convex
454
		os=-bsd
455
		;;
456
	cray | j90)
457
		basic_machine=j90-cray
458
		os=-unicos
459
		;;
460
	craynv)
461
		basic_machine=craynv-cray
462
		os=-unicosmp
463
		;;
464
	cr16c)
465
		basic_machine=cr16c-unknown
466
		os=-elf
467
		;;
468
	crds | unos)
469
		basic_machine=m68k-crds
470
		;;
471
	crisv32 | crisv32-* | etraxfs*)
472
		basic_machine=crisv32-axis
473
		;;
474
	cris | cris-* | etrax*)
475
		basic_machine=cris-axis
476
		;;
477
	crx)
478
		basic_machine=crx-unknown
479
		os=-elf
480
		;;
481
	da30 | da30-*)
482
		basic_machine=m68k-da30
483
		;;
484
	decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
485
		basic_machine=mips-dec
486
		;;
487
	decsystem10* | dec10*)
488
		basic_machine=pdp10-dec
489
		os=-tops10
490
		;;
491
	decsystem20* | dec20*)
492
		basic_machine=pdp10-dec
493
		os=-tops20
494
		;;
495
	delta | 3300 | motorola-3300 | motorola-delta \
496
	      | 3300-motorola | delta-motorola)
497
		basic_machine=m68k-motorola
498
		;;
499
	delta88)
500
		basic_machine=m88k-motorola
501
		os=-sysv3
502
		;;
503
	djgpp)
504
		basic_machine=i586-pc
505
		os=-msdosdjgpp
506
		;;
507
	dpx20 | dpx20-*)
508
		basic_machine=rs6000-bull
509
		os=-bosx
510
		;;
511
	dpx2* | dpx2*-bull)
512
		basic_machine=m68k-bull
513
		os=-sysv3
514
		;;
515
	ebmon29k)
516
		basic_machine=a29k-amd
517
		os=-ebmon
518
		;;
519
	elxsi)
520
		basic_machine=elxsi-elxsi
521
		os=-bsd
522
		;;
523
	encore | umax | mmax)
524
		basic_machine=ns32k-encore
525
		;;
526
	es1800 | OSE68k | ose68k | ose | OSE)
527
		basic_machine=m68k-ericsson
528
		os=-ose
529
		;;
530
	fx2800)
531
		basic_machine=i860-alliant
532
		;;
533
	genix)
534
		basic_machine=ns32k-ns
535
		;;
536
	gmicro)
537
		basic_machine=tron-gmicro
538
		os=-sysv
539
		;;
540
	go32)
541
		basic_machine=i386-pc
542
		os=-go32
543
		;;
544
	h3050r* | hiux*)
545
		basic_machine=hppa1.1-hitachi
546
		os=-hiuxwe2
547
		;;
548
	h8300hms)
549
		basic_machine=h8300-hitachi
550
		os=-hms
551
		;;
552
	h8300xray)
553
		basic_machine=h8300-hitachi
554
		os=-xray
555
		;;
556
	h8500hms)
557
		basic_machine=h8500-hitachi
558
		os=-hms
559
		;;
560
	harris)
561
		basic_machine=m88k-harris
562
		os=-sysv3
563
		;;
564
	hp300-*)
565
		basic_machine=m68k-hp
566
		;;
567
	hp300bsd)
568
		basic_machine=m68k-hp
569
		os=-bsd
570
		;;
571
	hp300hpux)
572
		basic_machine=m68k-hp
573
		os=-hpux
574
		;;
575
	hp3k9[0-9][0-9] | hp9[0-9][0-9])
576
		basic_machine=hppa1.0-hp
577
		;;
578
	hp9k2[0-9][0-9] | hp9k31[0-9])
579
		basic_machine=m68000-hp
580
		;;
581
	hp9k3[2-9][0-9])
582
		basic_machine=m68k-hp
583
		;;
584
	hp9k6[0-9][0-9] | hp6[0-9][0-9])
585
		basic_machine=hppa1.0-hp
586
		;;
587
	hp9k7[0-79][0-9] | hp7[0-79][0-9])
588
		basic_machine=hppa1.1-hp
589
		;;
590
	hp9k78[0-9] | hp78[0-9])
591
		# FIXME: really hppa2.0-hp
592
		basic_machine=hppa1.1-hp
593
		;;
594
	hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
595
		# FIXME: really hppa2.0-hp
596
		basic_machine=hppa1.1-hp
597
		;;
598
	hp9k8[0-9][13679] | hp8[0-9][13679])
599
		basic_machine=hppa1.1-hp
600
		;;
601
	hp9k8[0-9][0-9] | hp8[0-9][0-9])
602
		basic_machine=hppa1.0-hp
603
		;;
604
	hppa-next)
605
		os=-nextstep3
606
		;;
607
	hppaosf)
608
		basic_machine=hppa1.1-hp
609
		os=-osf
610
		;;
611
	hppro)
612
		basic_machine=hppa1.1-hp
613
		os=-proelf
614
		;;
615
	i370-ibm* | ibm*)
616
		basic_machine=i370-ibm
617
		;;
618
# I'm not sure what "Sysv32" means.  Should this be sysv3.2?
619
	i*86v32)
620
		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
621
		os=-sysv32
622
		;;
623
	i*86v4*)
624
		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
625
		os=-sysv4
626
		;;
627
	i*86v)
628
		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
629
		os=-sysv
630
		;;
631
	i*86sol2)
632
		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
633
		os=-solaris2
634
		;;
635
	i386mach)
636
		basic_machine=i386-mach
637
		os=-mach
638
		;;
639
	i386-vsta | vsta)
640
		basic_machine=i386-unknown
641
		os=-vsta
642
		;;
643
	iris | iris4d)
644
		basic_machine=mips-sgi
645
		case $os in
646
		    -irix*)
647
			;;
648
		    *)
649
			os=-irix4
650
			;;
651
		esac
652
		;;
653
	isi68 | isi)
654
		basic_machine=m68k-isi
655
		os=-sysv
656
		;;
657
	m88k-omron*)
658
		basic_machine=m88k-omron
659
		;;
660
	magnum | m3230)
661
		basic_machine=mips-mips
662
		os=-sysv
663
		;;
664
	merlin)
665
		basic_machine=ns32k-utek
666
		os=-sysv
667
		;;
668
	mingw32)
669
		basic_machine=i386-pc
670
		os=-mingw32
671
		;;
672
	miniframe)
673
		basic_machine=m68000-convergent
674
		;;
675
	*mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*)
676
		basic_machine=m68k-atari
677
		os=-mint
678
		;;
679
	mips3*-*)
680
		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
681
		;;
682
	mips3*)
683
		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
684
		;;
685
	monitor)
686
		basic_machine=m68k-rom68k
687
		os=-coff
688
		;;
689
	morphos)
690
		basic_machine=powerpc-unknown
691
		os=-morphos
692
		;;
693
	msdos)
694
		basic_machine=i386-pc
695
		os=-msdos
696
		;;
697
	mvs)
698
		basic_machine=i370-ibm
699
		os=-mvs
700
		;;
701
	ncr3000)
702
		basic_machine=i486-ncr
703
		os=-sysv4
704
		;;
705
	netbsd386)
706
		basic_machine=i386-unknown
707
		os=-netbsd
708
		;;
709
	netwinder)
710
		basic_machine=armv4l-rebel
711
		os=-linux
712
		;;
713
	news | news700 | news800 | news900)
714
		basic_machine=m68k-sony
715
		os=-newsos
716
		;;
717
	news1000)
718
		basic_machine=m68030-sony
719
		os=-newsos
720
		;;
721
	news-3600 | risc-news)
722
		basic_machine=mips-sony
723
		os=-newsos
724
		;;
725
	necv70)
726
		basic_machine=v70-nec
727
		os=-sysv
728
		;;
729
	next | m*-next )
730
		basic_machine=m68k-next
731
		case $os in
732
		    -nextstep* )
733
			;;
734
		    -ns2*)
735
		      os=-nextstep2
736
			;;
737
		    *)
738
		      os=-nextstep3
739
			;;
740
		esac
741
		;;
742
	nh3000)
743
		basic_machine=m68k-harris
744
		os=-cxux
745
		;;
746
	nh[45]000)
747
		basic_machine=m88k-harris
748
		os=-cxux
749
		;;
750
	nindy960)
751
		basic_machine=i960-intel
752
		os=-nindy
753
		;;
754
	mon960)
755
		basic_machine=i960-intel
756
		os=-mon960
757
		;;
758
	nonstopux)
759
		basic_machine=mips-compaq
760
		os=-nonstopux
761
		;;
762
	np1)
763
		basic_machine=np1-gould
764
		;;
765
	nsr-tandem)
766
		basic_machine=nsr-tandem
767
		;;
768
	op50n-* | op60c-*)
769
		basic_machine=hppa1.1-oki
770
		os=-proelf
771
		;;
772
	or32 | or32-*)
773
		basic_machine=or32-unknown
774
		os=-coff
775
		;;
776
	os400)
777
		basic_machine=powerpc-ibm
778
		os=-os400
779
		;;
780
	OSE68000 | ose68000)
781
		basic_machine=m68000-ericsson
782
		os=-ose
783
		;;
784
	os68k)
785
		basic_machine=m68k-none
786
		os=-os68k
787
		;;
788
	pa-hitachi)
789
		basic_machine=hppa1.1-hitachi
790
		os=-hiuxwe2
791
		;;
792
	paragon)
793
		basic_machine=i860-intel
794
		os=-osf
795
		;;
796
	pbd)
797
		basic_machine=sparc-tti
798
		;;
799
	pbb)
800
		basic_machine=m68k-tti
801
		;;
802
	pc532 | pc532-*)
803
		basic_machine=ns32k-pc532
804
		;;
805
	pentium | p5 | k5 | k6 | nexgen | viac3)
806
		basic_machine=i586-pc
807
		;;
808
	pentiumpro | p6 | 6x86 | athlon | athlon_*)
809
		basic_machine=i686-pc
810
		;;
811
	pentiumii | pentium2 | pentiumiii | pentium3)
812
		basic_machine=i686-pc
813
		;;
814
	pentium4)
815
		basic_machine=i786-pc
816
		;;
817
	pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
818
		basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
819
		;;
820
	pentiumpro-* | p6-* | 6x86-* | athlon-*)
821
		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
822
		;;
823
	pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
824
		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
825
		;;
826
	pentium4-*)
827
		basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
828
		;;
829
	pn)
830
		basic_machine=pn-gould
831
		;;
832
	power)	basic_machine=power-ibm
833
		;;
834
	ppc)	basic_machine=powerpc-unknown
835
		;;
836
	ppc-*)	basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
837
		;;
838
	ppcle | powerpclittle | ppc-le | powerpc-little)
839
		basic_machine=powerpcle-unknown
840
		;;
841
	ppcle-* | powerpclittle-*)
842
		basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
843
		;;
844
	ppc64)	basic_machine=powerpc64-unknown
845
		;;
846
	ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
847
		;;
848
	ppc64le | powerpc64little | ppc64-le | powerpc64-little)
849
		basic_machine=powerpc64le-unknown
850
		;;
851
	ppc64le-* | powerpc64little-*)
852
		basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
853
		;;
854
	ps2)
855
		basic_machine=i386-ibm
856
		;;
857
	pw32)
858
		basic_machine=i586-unknown
859
		os=-pw32
860
		;;
861
	rom68k)
862
		basic_machine=m68k-rom68k
863
		os=-coff
864
		;;
865
	rm[46]00)
866
		basic_machine=mips-siemens
867
		;;
868
	rtpc | rtpc-*)
869
		basic_machine=romp-ibm
870
		;;
871
	s390 | s390-*)
872
		basic_machine=s390-ibm
873
		;;
874
	s390x | s390x-*)
875
		basic_machine=s390x-ibm
876
		;;
877
	sa29200)
878
		basic_machine=a29k-amd
879
		os=-udi
880
		;;
881
	sb1)
882
		basic_machine=mipsisa64sb1-unknown
883
		;;
884
	sb1el)
885
		basic_machine=mipsisa64sb1el-unknown
886
		;;
887
	sei)
888
		basic_machine=mips-sei
889
		os=-seiux
890
		;;
891
	sequent)
892
		basic_machine=i386-sequent
893
		;;
894
	sh)
895
		basic_machine=sh-hitachi
896
		os=-hms
897
		;;
898
	sh64)
899
		basic_machine=sh64-unknown
900
		;;
901
	sparclite-wrs | simso-wrs)
902
		basic_machine=sparclite-wrs
903
		os=-vxworks
904
		;;
905
	sps7)
906
		basic_machine=m68k-bull
907
		os=-sysv2
908
		;;
909
	spur)
910
		basic_machine=spur-unknown
911
		;;
912
	st2000)
913
		basic_machine=m68k-tandem
914
		;;
915
	stratus)
916
		basic_machine=i860-stratus
917
		os=-sysv4
918
		;;
919
	sun2)
920
		basic_machine=m68000-sun
921
		;;
922
	sun2os3)
923
		basic_machine=m68000-sun
924
		os=-sunos3
925
		;;
926
	sun2os4)
927
		basic_machine=m68000-sun
928
		os=-sunos4
929
		;;
930
	sun3os3)
931
		basic_machine=m68k-sun
932
		os=-sunos3
933
		;;
934
	sun3os4)
935
		basic_machine=m68k-sun
936
		os=-sunos4
937
		;;
938
	sun4os3)
939
		basic_machine=sparc-sun
940
		os=-sunos3
941
		;;
942
	sun4os4)
943
		basic_machine=sparc-sun
944
		os=-sunos4
945
		;;
946
	sun4sol2)
947
		basic_machine=sparc-sun
948
		os=-solaris2
949
		;;
950
	sun3 | sun3-*)
951
		basic_machine=m68k-sun
952
		;;
953
	sun4)
954
		basic_machine=sparc-sun
955
		;;
956
	sun386 | sun386i | roadrunner)
957
		basic_machine=i386-sun
958
		;;
959
	sv1)
960
		basic_machine=sv1-cray
961
		os=-unicos
962
		;;
963
	symmetry)
964
		basic_machine=i386-sequent
965
		os=-dynix
966
		;;
967
	t3e)
968
		basic_machine=alphaev5-cray
969
		os=-unicos
970
		;;
971
	t90)
972
		basic_machine=t90-cray
973
		os=-unicos
974
		;;
975
	tic54x | c54x*)
976
		basic_machine=tic54x-unknown
977
		os=-coff
978
		;;
979
	tic55x | c55x*)
980
		basic_machine=tic55x-unknown
981
		os=-coff
982
		;;
983
	tic6x | c6x*)
984
		basic_machine=tic6x-unknown
985
		os=-coff
986
		;;
987
	tx39)
988
		basic_machine=mipstx39-unknown
989
		;;
990
	tx39el)
991
		basic_machine=mipstx39el-unknown
992
		;;
993
	toad1)
994
		basic_machine=pdp10-xkl
995
		os=-tops20
996
		;;
997
	tower | tower-32)
998
		basic_machine=m68k-ncr
999
		;;
1000
	tpf)
1001
		basic_machine=s390x-ibm
1002
		os=-tpf
1003
		;;
1004
	udi29k)
1005
		basic_machine=a29k-amd
1006
		os=-udi
1007
		;;
1008
	ultra3)
1009
		basic_machine=a29k-nyu
1010
		os=-sym1
1011
		;;
1012
	v810 | necv810)
1013
		basic_machine=v810-nec
1014
		os=-none
1015
		;;
1016
	vaxv)
1017
		basic_machine=vax-dec
1018
		os=-sysv
1019
		;;
1020
	vms)
1021
		basic_machine=vax-dec
1022
		os=-vms
1023
		;;
1024
	vpp*|vx|vx-*)
1025
		basic_machine=f301-fujitsu
1026
		;;
1027
	vxworks960)
1028
		basic_machine=i960-wrs
1029
		os=-vxworks
1030
		;;
1031
	vxworks68)
1032
		basic_machine=m68k-wrs
1033
		os=-vxworks
1034
		;;
1035
	vxworks29k)
1036
		basic_machine=a29k-wrs
1037
		os=-vxworks
1038
		;;
1039
	w65*)
1040
		basic_machine=w65-wdc
1041
		os=-none
1042
		;;
1043
	w89k-*)
1044
		basic_machine=hppa1.1-winbond
1045
		os=-proelf
1046
		;;
1047
	xbox)
1048
		basic_machine=i686-pc
1049
		os=-mingw32
1050
		;;
1051
	xps | xps100)
1052
		basic_machine=xps100-honeywell
1053
		;;
1054
	ymp)
1055
		basic_machine=ymp-cray
1056
		os=-unicos
1057
		;;
1058
	z8k-*-coff)
1059
		basic_machine=z8k-unknown
1060
		os=-sim
1061
		;;
1062
	none)
1063
		basic_machine=none-none
1064
		os=-none
1065
		;;
1066
 
1067
# Here we handle the default manufacturer of certain CPU types.  It is in
1068
# some cases the only manufacturer, in others, it is the most popular.
1069
	w89k)
1070
		basic_machine=hppa1.1-winbond
1071
		;;
1072
	op50n)
1073
		basic_machine=hppa1.1-oki
1074
		;;
1075
	op60c)
1076
		basic_machine=hppa1.1-oki
1077
		;;
1078
	romp)
1079
		basic_machine=romp-ibm
1080
		;;
1081
	mmix)
1082
		basic_machine=mmix-knuth
1083
		;;
1084
	rs6000)
1085
		basic_machine=rs6000-ibm
1086
		;;
1087
	vax)
1088
		basic_machine=vax-dec
1089
		;;
1090
	pdp10)
1091
		# there are many clones, so DEC is not a safe bet
1092
		basic_machine=pdp10-unknown
1093
		;;
1094
	pdp11)
1095
		basic_machine=pdp11-dec
1096
		;;
1097
	we32k)
1098
		basic_machine=we32k-att
1099
		;;
1100
	sh3 | sh4 | sh[34]eb | sh[1234]le | sh[23]ele)
1101
		basic_machine=sh-unknown
1102
		;;
1103
	sh64)
1104
		basic_machine=sh64-unknown
1105
		;;
1106
	sparc | sparcv8 | sparcv9 | sparcv9b)
1107
		basic_machine=sparc-sun
1108
		;;
1109
	cydra)
1110
		basic_machine=cydra-cydrome
1111
		;;
1112
	orion)
1113
		basic_machine=orion-highlevel
1114
		;;
1115
	orion105)
1116
		basic_machine=clipper-highlevel
1117
		;;
1118
	mac | mpw | mac-mpw)
1119
		basic_machine=m68k-apple
1120
		;;
1121
	pmac | pmac-mpw)
1122
		basic_machine=powerpc-apple
1123
		;;
1124
	*-unknown)
1125
		# Make sure to match an already-canonicalized machine name.
1126
		;;
1127
	*)
1128
		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
1129
		exit 1
1130
		;;
1131
esac
1132
 
1133
# Here we canonicalize certain aliases for manufacturers.
1134
case $basic_machine in
1135
	*-digital*)
1136
		basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
1137
		;;
1138
	*-commodore*)
1139
		basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
1140
		;;
1141
	*)
1142
		;;
1143
esac
1144
 
1145
# Decode manufacturer-specific aliases for certain operating systems.
1146
 
1147
if [ x"$os" != x"" ]
1148
then
1149
case $os in
1150
        # First match some system type aliases
1151
        # that might get confused with valid system types.
1152
	# -solaris* is a basic system type, with this one exception.
1153
	-solaris1 | -solaris1.*)
1154
		os=`echo $os | sed -e 's|solaris1|sunos4|'`
1155
		;;
1156
	-solaris)
1157
		os=-solaris2
1158
		;;
1159
	-svr4*)
1160
		os=-sysv4
1161
		;;
1162
	-unixware*)
1163
		os=-sysv4.2uw
1164
		;;
1165
	-gnu/linux*)
1166
		os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
1167
		;;
1168
	# First accept the basic system types.
1169
	# The portable systems comes first.
1170
	# Each alternative MUST END IN A *, to match a version number.
1171
	# -sysv* is not here because it comes later, after sysvr4.
1172
	-gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
1173
	      | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\
1174
	      | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
1175
	      | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
1176
	      | -aos* \
1177
	      | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
1178
	      | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
1179
	      | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \
1180
	      | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
1181
	      | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
1182
	      | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
1183
	      | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
1184
	      | -chorusos* | -chorusrdb* \
1185
	      | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
1186
	      | -mingw32* | -linux-gnu* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* \
1187
	      | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
1188
	      | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
1189
	      | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
1190
	      | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
1191
	      | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
1192
	      | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly*)
1193
	# Remember, each alternative MUST END IN *, to match a version number.
1194
		;;
1195
	-qnx*)
1196
		case $basic_machine in
1197
		    x86-* | i*86-*)
1198
			;;
1199
		    *)
1200
			os=-nto$os
1201
			;;
1202
		esac
1203
		;;
1204
	-nto-qnx*)
1205
		;;
1206
	-nto*)
1207
		os=`echo $os | sed -e 's|nto|nto-qnx|'`
1208
		;;
1209
	-sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
1210
	      | -windows* | -osx | -abug | -netware* | -os9* | -beos* \
1211
	      | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
1212
		;;
1213
	-mac*)
1214
		os=`echo $os | sed -e 's|mac|macos|'`
1215
		;;
1216
	-linux-dietlibc)
1217
		os=-linux-dietlibc
1218
		;;
1219
	-linux*)
1220
		os=`echo $os | sed -e 's|linux|linux-gnu|'`
1221
		;;
1222
	-sunos5*)
1223
		os=`echo $os | sed -e 's|sunos5|solaris2|'`
1224
		;;
1225
	-sunos6*)
1226
		os=`echo $os | sed -e 's|sunos6|solaris3|'`
1227
		;;
1228
	-opened*)
1229
		os=-openedition
1230
		;;
1231
        -os400*)
1232
		os=-os400
1233
		;;
1234
	-wince*)
1235
		os=-wince
1236
		;;
1237
	-osfrose*)
1238
		os=-osfrose
1239
		;;
1240
	-osf*)
1241
		os=-osf
1242
		;;
1243
	-utek*)
1244
		os=-bsd
1245
		;;
1246
	-dynix*)
1247
		os=-bsd
1248
		;;
1249
	-acis*)
1250
		os=-aos
1251
		;;
1252
	-atheos*)
1253
		os=-atheos
1254
		;;
1255
	-syllable*)
1256
		os=-syllable
1257
		;;
1258
	-386bsd)
1259
		os=-bsd
1260
		;;
1261
	-ctix* | -uts*)
1262
		os=-sysv
1263
		;;
1264
	-nova*)
1265
		os=-rtmk-nova
1266
		;;
1267
	-ns2 )
1268
		os=-nextstep2
1269
		;;
1270
	-nsk*)
1271
		os=-nsk
1272
		;;
1273
	# Preserve the version number of sinix5.
1274
	-sinix5.*)
1275
		os=`echo $os | sed -e 's|sinix|sysv|'`
1276
		;;
1277
	-sinix*)
1278
		os=-sysv4
1279
		;;
1280
        -tpf*)
1281
		os=-tpf
1282
		;;
1283
	-triton*)
1284
		os=-sysv3
1285
		;;
1286
	-oss*)
1287
		os=-sysv3
1288
		;;
1289
	-svr4)
1290
		os=-sysv4
1291
		;;
1292
	-svr3)
1293
		os=-sysv3
1294
		;;
1295
	-sysvr4)
1296
		os=-sysv4
1297
		;;
1298
	# This must come after -sysvr4.
1299
	-sysv*)
1300
		;;
1301
	-ose*)
1302
		os=-ose
1303
		;;
1304
	-es1800*)
1305
		os=-ose
1306
		;;
1307
	-xenix)
1308
		os=-xenix
1309
		;;
1310
	-*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
1311
		os=-mint
1312
		;;
1313
	-aros*)
1314
		os=-aros
1315
		;;
1316
	-kaos*)
1317
		os=-kaos
1318
		;;
1319
	-zvmoe)
1320
		os=-zvmoe
1321
		;;
1322
	-none)
1323
		;;
1324
	*)
1325
		# Get rid of the `-' at the beginning of $os.
1326
		os=`echo $os | sed 's/[^-]*-//'`
1327
		echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
1328
		exit 1
1329
		;;
1330
esac
1331
else
1332
 
1333
# Here we handle the default operating systems that come with various machines.
1334
# The value should be what the vendor currently ships out the door with their
1335
# machine or put another way, the most popular os provided with the machine.
1336
 
1337
# Note that if you're going to try to match "-MANUFACTURER" here (say,
1338
# "-sun"), then you have to tell the case statement up towards the top
1339
# that MANUFACTURER isn't an operating system.  Otherwise, code above
1340
# will signal an error saying that MANUFACTURER isn't an operating
1341
# system, and we'll never get to this point.
1342
 
1343
case $basic_machine in
1344
	*-acorn)
1345
		os=-riscix1.2
1346
		;;
1347
	arm*-rebel)
1348
		os=-linux
1349
		;;
1350
	arm*-semi)
1351
		os=-aout
1352
		;;
1353
    c4x-* | tic4x-*)
1354
        os=-coff
1355
        ;;
1356
	# This must come before the *-dec entry.
1357
	pdp10-*)
1358
		os=-tops20
1359
		;;
1360
	pdp11-*)
1361
		os=-none
1362
		;;
1363
	*-dec | vax-*)
1364
		os=-ultrix4.2
1365
		;;
1366
	m68*-apollo)
1367
		os=-domain
1368
		;;
1369
	i386-sun)
1370
		os=-sunos4.0.2
1371
		;;
1372
	m68000-sun)
1373
		os=-sunos3
1374
		# This also exists in the configure program, but was not the
1375
		# default.
1376
		# os=-sunos4
1377
		;;
1378
	m68*-cisco)
1379
		os=-aout
1380
		;;
1381
	mips*-cisco)
1382
		os=-elf
1383
		;;
1384
	mips*-*)
1385
		os=-elf
1386
		;;
1387
	or32-*)
1388
		os=-coff
1389
		;;
1390
	*-tti)	# must be before sparc entry or we get the wrong os.
1391
		os=-sysv3
1392
		;;
1393
	sparc-* | *-sun)
1394
		os=-sunos4.1.1
1395
		;;
1396
	*-be)
1397
		os=-beos
1398
		;;
1399
	*-ibm)
1400
		os=-aix
1401
		;;
1402
    	*-knuth)
1403
		os=-mmixware
1404
		;;
1405
	*-wec)
1406
		os=-proelf
1407
		;;
1408
	*-winbond)
1409
		os=-proelf
1410
		;;
1411
	*-oki)
1412
		os=-proelf
1413
		;;
1414
	*-hp)
1415
		os=-hpux
1416
		;;
1417
	*-hitachi)
1418
		os=-hiux
1419
		;;
1420
	i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
1421
		os=-sysv
1422
		;;
1423
	*-cbm)
1424
		os=-amigaos
1425
		;;
1426
	*-dg)
1427
		os=-dgux
1428
		;;
1429
	*-dolphin)
1430
		os=-sysv3
1431
		;;
1432
	m68k-ccur)
1433
		os=-rtu
1434
		;;
1435
	m88k-omron*)
1436
		os=-luna
1437
		;;
1438
	*-next )
1439
		os=-nextstep
1440
		;;
1441
	*-sequent)
1442
		os=-ptx
1443
		;;
1444
	*-crds)
1445
		os=-unos
1446
		;;
1447
	*-ns)
1448
		os=-genix
1449
		;;
1450
	i370-*)
1451
		os=-mvs
1452
		;;
1453
	*-next)
1454
		os=-nextstep3
1455
		;;
1456
	*-gould)
1457
		os=-sysv
1458
		;;
1459
	*-highlevel)
1460
		os=-bsd
1461
		;;
1462
	*-encore)
1463
		os=-bsd
1464
		;;
1465
	*-sgi)
1466
		os=-irix
1467
		;;
1468
	*-siemens)
1469
		os=-sysv4
1470
		;;
1471
	*-masscomp)
1472
		os=-rtu
1473
		;;
1474
	f30[01]-fujitsu | f700-fujitsu)
1475
		os=-uxpv
1476
		;;
1477
	*-rom68k)
1478
		os=-coff
1479
		;;
1480
	*-*bug)
1481
		os=-coff
1482
		;;
1483
	*-apple)
1484
		os=-macos
1485
		;;
1486
	*-atari*)
1487
		os=-mint
1488
		;;
1489
	*)
1490
		os=-none
1491
		;;
1492
esac
1493
fi
1494
 
1495
# Here we handle the case where we know the os, and the CPU type, but not the
1496
# manufacturer.  We pick the logical manufacturer.
1497
vendor=unknown
1498
case $basic_machine in
1499
	*-unknown)
1500
		case $os in
1501
			-riscix*)
1502
				vendor=acorn
1503
				;;
1504
			-sunos*)
1505
				vendor=sun
1506
				;;
1507
			-aix*)
1508
				vendor=ibm
1509
				;;
1510
			-beos*)
1511
				vendor=be
1512
				;;
1513
			-hpux*)
1514
				vendor=hp
1515
				;;
1516
			-mpeix*)
1517
				vendor=hp
1518
				;;
1519
			-hiux*)
1520
				vendor=hitachi
1521
				;;
1522
			-unos*)
1523
				vendor=crds
1524
				;;
1525
			-dgux*)
1526
				vendor=dg
1527
				;;
1528
			-luna*)
1529
				vendor=omron
1530
				;;
1531
			-genix*)
1532
				vendor=ns
1533
				;;
1534
			-mvs* | -opened*)
1535
				vendor=ibm
1536
				;;
1537
			-os400*)
1538
				vendor=ibm
1539
				;;
1540
			-ptx*)
1541
				vendor=sequent
1542
				;;
1543
			-tpf*)
1544
				vendor=ibm
1545
				;;
1546
			-vxsim* | -vxworks* | -windiss*)
1547
				vendor=wrs
1548
				;;
1549
			-aux*)
1550
				vendor=apple
1551
				;;
1552
			-hms*)
1553
				vendor=hitachi
1554
				;;
1555
			-mpw* | -macos*)
1556
				vendor=apple
1557
				;;
1558
			-*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
1559
				vendor=atari
1560
				;;
1561
			-vos*)
1562
				vendor=stratus
1563
				;;
1564
		esac
1565
		basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
1566
		;;
1567
esac
1568
 
1569
echo $basic_machine$os
1570
exit 0
1571
 
1572
# Local variables:
1573
# eval: (add-hook 'write-file-hooks 'time-stamp)
1574
# time-stamp-start: "timestamp='"
1575
# time-stamp-format: "%:y-%02m-%02d"
1576
# time-stamp-end: "'"
1577
# End: