]> code.delx.au - gnu-emacs/blob - config.sub
Recognize FreeBSD.
[gnu-emacs] / config.sub
1 #!/bin/sh
2 # Configuration validation subroutine script, version 1.1.
3 # Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
4 # This file is (in principle) common to ALL GNU software.
5 # The presence of a machine in this file suggests that SOME GNU software
6 # can handle that machine. It does not imply ALL GNU software can.
7
8 #This file is free software; you can redistribute it and/or modify
9 #it under the terms of the GNU General Public License as published by
10 #the Free Software Foundation; either version 2 of the License, or
11 #(at your option) any later version.
12
13 #This program is distributed in the hope that it will be useful,
14 #but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 #GNU General Public License for more details.
17
18 #You should have received a copy of the GNU General Public License
19 #along with this program; if not, write to the Free Software
20 #Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
22
23 # Configuration subroutine to validate and canonicalize a configuration type.
24 # Supply the specified configuration type as an argument.
25 # If it is invalid, we print an error message on stderr and exit with code 1.
26 # Otherwise, we print the canonical config type on stdout and succeed.
27
28 # This file is supposed to be the same for all GNU packages
29 # and recognize all the CPU types, system types and aliases
30 # that are meaningful with *any* GNU software.
31 # Each package is responsible for reporting which valid configurations
32 # it does not support. The user should be able to distinguish
33 # a failure to support a valid configuration from a meaningless
34 # configuration.
35
36 # The goal of this file is to map all the various variations of a given
37 # machine specification into a single specification in the form:
38 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
39 # It is wrong to echo any other type of specification.
40
41 # First pass through any local machine types.
42 case $1 in
43 *local*)
44 echo $1
45 exit 0
46 ;;
47 *)
48 ;;
49 esac
50
51 # Separate what the user gave into CPU-COMPANY and OS (if any).
52 basic_machine=`echo $1 | sed 's/-[^-]*$//'`
53 if [ $basic_machine != $1 ]
54 then os=`echo $1 | sed 's/.*-/-/'`
55 else os=; fi
56
57 ### Let's recognize common machines as not being operating systems so
58 ### that things like config.sub decstation-3100 work. We also
59 ### recognize some manufacturers as not being operating systems, so we
60 ### can provide default operating systems below.
61 case $os in
62 -sun*os*)
63 # Prevent following clause from handling this invalid input.
64 ;;
65 -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
66 -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
67 -unicom* | -ibm* | -next* | -hp | -isi* | -apollo | -altos* | \
68 -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
69 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
70 -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp )
71 os=
72 basic_machine=$1
73 ;;
74 -hiux*)
75 os=-hiuxwe2
76 ;;
77 -sco4)
78 os=-sco3.2v4
79 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
80 ;;
81 -sco3.2.[4-9]*)
82 os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
83 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
84 ;;
85 -sco3.2v[4-9]*)
86 # Don't forget version if it is 3.2v4 or newer.
87 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
88 ;;
89 -sco*)
90 os=-sco3.2v2
91 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
92 ;;
93 -isc)
94 os=-isc2.2
95 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
96 ;;
97 -clix*)
98 basic_machine=clipper-intergraph
99 ;;
100 -isc*)
101 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
102 ;;
103 -lynx)
104 os=-lynxos
105 ;;
106 esac
107
108 # Decode aliases for certain CPU-COMPANY combinations.
109 case $basic_machine in
110 # Recognize the basic CPU types without company name.
111 # Some are omitted here because they have special meanings below.
112 tahoe | i[34]86 | i860 | m68k | m68000 | m88k | ns32k | arm | pyramid \
113 | tron | a29k | 580 | i960 | h8300 | hppa1.0 | hppa1.1 \
114 | alpha | we32k | ns16k | clipper | sparclite | i370 | sh \
115 | powerpc)
116 basic_machine=$basic_machine-unknown
117 ;;
118 # Object if more than one company name word.
119 *-*-*)
120 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
121 exit 1
122 ;;
123 # Recognize the basic CPU types with company name.
124 vax-* | tahoe-* | i[34]86-* | i860-* | m68k-* | m68000-* | m88k-* \
125 | sparc-* | ns32k-* | fx80-* | arm-* | c[123]* \
126 | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* \
127 | none-* | 580-* | cray2-* | h8300-* | i960-* | xmp-* | ymp-* \
128 | hppa1.0-* | hppa1.1-* | alpha-* | we32k-* | cydra-* | ns16k-* \
129 | pn-* | np1-* | xps100-* | clipper-* | orion-* | sparclite-* \
130 | sh-* | powerpc-*)
131 ;;
132 # Recognize the various machine names and aliases which stand
133 # for a CPU type and a company and sometimes even an OS.
134 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
135 basic_machine=m68000-att
136 ;;
137 3b*)
138 basic_machine=we32k-att
139 ;;
140 alliant | fx80)
141 basic_machine=fx80-alliant
142 ;;
143 altos | altos3068)
144 basic_machine=m68k-altos
145 ;;
146 am29k)
147 basic_machine=a29k-none
148 os=-bsd
149 ;;
150 amdahl)
151 basic_machine=580-amdahl
152 os=-sysv
153 ;;
154 amiga)
155 basic_machine=m68k-cbm
156 ;;
157 amigados)
158 basic_machine=m68k-cbm
159 os=-amigados
160 ;;
161 amigaunix | amix)
162 basic_machine=m68k-cbm
163 os=-sysv4
164 ;;
165 apollo68)
166 basic_machine=m68k-apollo
167 os=-sysv
168 ;;
169 balance)
170 basic_machine=ns32k-sequent
171 os=-dynix
172 ;;
173 convex-c1)
174 basic_machine=c1-convex
175 os=-bsd
176 ;;
177 convex-c2)
178 basic_machine=c2-convex
179 os=-bsd
180 ;;
181 convex-c32)
182 basic_machine=c32-convex
183 os=-bsd
184 ;;
185 convex-c34)
186 basic_machine=c34-convex
187 os=-bsd
188 ;;
189 convex-c38)
190 basic_machine=c38-convex
191 os=-bsd
192 ;;
193 cray | ymp)
194 basic_machine=ymp-cray
195 os=-unicos
196 ;;
197 cray2)
198 basic_machine=cray2-cray
199 os=-unicos
200 ;;
201 crds | unos)
202 basic_machine=m68k-crds
203 ;;
204 decstation | decstation-3100 | pmax | pmin | dec3100 | decstatn)
205 basic_machine=mips-dec
206 ;;
207 delta | 3300 | motorola-3300 | motorola-delta \
208 | 3300-motorola | delta-motorola)
209 basic_machine=m68k-motorola
210 ;;
211 delta88)
212 basic_machine=m88k-motorola
213 os=-sysv3
214 ;;
215 dpx20 | dpx20-*)
216 basic_machine=rs6000-bull
217 os=-bosx
218 ;;
219 dpx2* | dpx2*-bull)
220 basic_machine=m68k-bull
221 os=-sysv3
222 ;;
223 ebmon29k)
224 basic_machine=a29k-amd
225 os=-ebmon
226 ;;
227 elxsi)
228 basic_machine=elxsi-elxsi
229 os=-bsd
230 ;;
231 encore | umax | mmax)
232 basic_machine=ns32k-encore
233 ;;
234 fx2800)
235 basic_machine=i860-alliant
236 ;;
237 genix)
238 basic_machine=ns32k-ns
239 ;;
240 gmicro)
241 basic_machine=tron-gmicro
242 os=-sysv
243 ;;
244 h3050r* | hiux*)
245 basic_machine=hppa1.1-hitachi
246 os=-hiuxwe2
247 ;;
248 h8300hms)
249 basic_machine=h8300-hitachi
250 os=-hms
251 ;;
252 harris)
253 basic_machine=m88k-harris
254 os=-sysv3
255 ;;
256 hp300bsd)
257 basic_machine=m68k-hp
258 os=-bsd
259 ;;
260 hp300hpux)
261 basic_machine=m68k-hp
262 os=-hpux
263 ;;
264 hp9k2[0-9][0-9] | hp9k31[0-9])
265 basic_machine=m68000-hp
266 ;;
267 hp9k3[2-9][0-9])
268 basic_machine=m68k-hp
269 ;;
270 hp9k7[0-9][0-9] | hp7[0-9][0-9] | hp9k8[0-9]7 | hp8[0-9]7)
271 basic_machine=hppa1.1-hp
272 ;;
273 hp9k8[0-9][0-9] | hp8[0-9][0-9])
274 basic_machine=hppa1.0-hp
275 ;;
276 i370-ibm* | ibm*)
277 basic_machine=i370-ibm
278 os=-mvs
279 ;;
280 # I'm not sure what "Sysv32" means. Should this be sysv3.2?
281 i[34]86v32)
282 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
283 os=-sysv32
284 ;;
285 i[34]86v4*)
286 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
287 os=-sysv4
288 ;;
289 i[34]86v)
290 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
291 os=-sysv
292 ;;
293 i[34]86sol2)
294 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
295 os=-solaris2
296 ;;
297 iris | iris4d)
298 basic_machine=mips-sgi
299 case $os in
300 -irix*)
301 ;;
302 *)
303 os=-irix4
304 ;;
305 esac
306 ;;
307 isi68 | isi)
308 basic_machine=m68k-isi
309 os=-sysv
310 ;;
311 m88k-omron*)
312 basic_machine=m88k-omron
313 ;;
314 magnum | m3230)
315 basic_machine=mips-mips
316 os=-sysv
317 ;;
318 merlin)
319 basic_machine=ns32k-utek
320 os=-sysv
321 ;;
322 miniframe)
323 basic_machine=m68000-convergent
324 ;;
325 ncr3000)
326 basic_machine=i486-ncr
327 os=-sysv4
328 ;;
329 news | news700 | news800 | news900)
330 basic_machine=m68k-sony
331 os=-newsos
332 ;;
333 news1000)
334 basic_machine=m68030-sony
335 os=-newsos
336 ;;
337 news-3600 | risc-news)
338 basic_machine=mips-sony
339 os=-newsos
340 ;;
341 next)
342 basic_machine=m68k-next
343 case $os in
344 -ns2*)
345 ;;
346 *)
347 os=-ns3
348 ;;
349 esac
350 ;;
351 nh3000)
352 basic_machine=m68k-harris
353 os=-cxux
354 ;;
355 nh[45]000)
356 basic_machine=m88k-harris
357 os=-cxux
358 ;;
359 nindy960)
360 basic_machine=i960-intel
361 os=-nindy
362 ;;
363 np1)
364 basic_machine=np1-gould
365 ;;
366 pa-hitachi)
367 basic_machine=hppa1.1-hitachi
368 os=-hiuxwe2
369 ;;
370 paragon)
371 basic_machine=i860-intel
372 os=-osf
373 ;;
374 pbd)
375 basic_machine=sparc-tti
376 ;;
377 pbb)
378 basic_machine=m68k-tti
379 ;;
380 pc532)
381 basic_machine=ns32k-pc532
382 ;;
383 pn)
384 basic_machine=pn-gould
385 ;;
386 ps2)
387 basic_machine=i386-ibm
388 ;;
389 rtpc | rtpc-*)
390 basic_machine=romp-ibm
391 ;;
392 sh)
393 basic_machine=sh-hitachi
394 os=-hms
395 ;;
396 sps7)
397 basic_machine=m68k-bull
398 os=-sysv2
399 ;;
400 spur)
401 basic_machine=spur-unknown
402 ;;
403 sun2)
404 basic_machine=m68000-sun
405 ;;
406 sun2os3)
407 basic_machine=m68000-sun
408 os=-sunos3
409 ;;
410 sun2os4)
411 basic_machine=m68000-sun
412 os=-sunos4
413 ;;
414 sun3os3)
415 basic_machine=m68k-sun
416 os=-sunos3
417 ;;
418 sun3os4)
419 basic_machine=m68k-sun
420 os=-sunos4
421 ;;
422 sun4os3)
423 basic_machine=sparc-sun
424 os=-sunos3
425 ;;
426 sun4os4)
427 basic_machine=sparc-sun
428 os=-sunos4
429 ;;
430 sun3)
431 basic_machine=m68k-sun
432 ;;
433 sun4)
434 basic_machine=sparc-sun
435 ;;
436 sun386 | sun386i | roadrunner)
437 basic_machine=i386-sun
438 ;;
439 symmetry)
440 basic_machine=i386-sequent
441 os=-dynix
442 ;;
443 tower | tower-32)
444 basic_machine=m68k-ncr
445 ;;
446 ultra3)
447 basic_machine=a29k-nyu
448 os=-sym1
449 ;;
450 vaxv)
451 basic_machine=vax-dec
452 os=-sysv
453 ;;
454 vms)
455 basic_machine=vax-dec
456 os=-vms
457 ;;
458 vxworks960)
459 basic_machine=i960-wrs
460 os=-vxworks
461 ;;
462 vxworks68)
463 basic_machine=m68k-wrs
464 os=-vxworks
465 ;;
466 xmp)
467 basic_machine=xmp-cray
468 os=-unicos
469 ;;
470 xps | xps100)
471 basic_machine=xps100-honeywell
472 ;;
473 none)
474 basic_machine=none-none
475 os=-none
476 ;;
477
478 # Here we handle the default manufacturer of certain CPU types. It is in
479 # some cases the only manufacturer, in others, it is the most popular.
480 mips)
481 basic_machine=mips-mips
482 ;;
483 romp)
484 basic_machine=romp-ibm
485 ;;
486 rs6000)
487 basic_machine=rs6000-ibm
488 ;;
489 vax)
490 basic_machine=vax-dec
491 ;;
492 we32k)
493 basic_machine=we32k-att
494 ;;
495 sparc)
496 basic_machine=sparc-sun
497 ;;
498 cydra)
499 basic_machine=cydra-cydrome
500 ;;
501 orion)
502 basic_machine=orion-highlevel
503 ;;
504 orion105)
505 basic_machine=clipper-highlevel
506 ;;
507 *)
508 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
509 exit 1
510 ;;
511 esac
512
513 # Here we canonicalize certain aliases for manufacturers.
514 case $basic_machine in
515 *-digital*)
516 basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
517 ;;
518 *-commodore*)
519 basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
520 ;;
521 *)
522 ;;
523 esac
524
525 # Decode manufacturer-specific aliases for certain operating systems.
526
527 if [ x"$os" != x"" ]
528 then
529 case $os in
530 # -solaris* is a basic system type, with this one exception.
531 -solaris1 | -solaris1.*)
532 os=`echo $os | sed -e 's|solaris1|sunos4|'`
533 ;;
534 -solaris)
535 os=-solaris2
536 ;;
537 # First accept the basic system types.
538 # The portable systems comes first.
539 # Each alternative must end in a *, to match a version number.
540 # -sysv* is not here because it comes later, after sysvr4.
541 -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
542 | -vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]* \
543 | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
544 | -amigados* | -msdos* | -newsos* | -unicos* | -aos* \
545 | -nindy* | -vxworks* | -ebmon* | -hms* | -mvs* | -clix* \
546 | -riscos* | -linux* | -uniplus* | -iris* | -rtu* | -xenix* \
547 | -hiux* | -386bsd* | -netbsd* | -freebsd* | -riscix* \
548 | -lynxos* | -bosx* | -ns* | -freebsd*)
549 ;;
550 -sunos5*)
551 os=`echo $os | sed -e 's|sunos5|solaris2|'`
552 ;;
553 -sunos6*)
554 os=`echo $os | sed -e 's|sunos6|solaris3|'`
555 ;;
556 -osfrose*)
557 os=-osfrose
558 ;;
559 -osf*)
560 os=-osf
561 ;;
562 -utek*)
563 os=-bsd
564 ;;
565 -dynix*)
566 os=-bsd
567 ;;
568 -acis*)
569 os=-aos
570 ;;
571 -ctix* | -uts*)
572 os=-sysv
573 ;;
574 -triton*)
575 os=-sysv3
576 ;;
577 -oss*)
578 os=-sysv3
579 ;;
580 -svr4)
581 os=-sysv4
582 ;;
583 -svr3)
584 os=-sysv3
585 ;;
586 -sysvr4)
587 os=-sysv4
588 ;;
589 # This must come after -sysvr4.
590 -sysv*)
591 ;;
592 -xenix)
593 os=-xenix
594 ;;
595 -none)
596 ;;
597 *)
598 # Get rid of the `-' at the beginning of $os.
599 os=`echo $1 | sed 's/[^-]*-//'`
600 echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
601 exit 1
602 ;;
603 esac
604 else
605
606 # Here we handle the default operating systems that come with various machines.
607 # The value should be what the vendor currently ships out the door with their
608 # machine or put another way, the most popular os provided with the machine.
609
610 # Note that if you're going to try to match "-MANUFACTURER" here (say,
611 # "-sun"), then you have to tell the case statement up towards the top
612 # that MANUFACTURER isn't an operating system. Otherwise, code above
613 # will signal an error saying that MANUFACTURER isn't an operating
614 # system, and we'll never get to this point.
615
616 case $basic_machine in
617 *-acorn)
618 os=-riscix1.2
619 ;;
620 *-dec | vax-*)
621 os=-ultrix4.2
622 ;;
623 i386-sun)
624 os=-sunos4.0.2
625 ;;
626 m68000-sun)
627 os=-sunos3
628 # This also exists in the configure program, but was not the
629 # default.
630 # os=-sunos4
631 ;;
632 *-tti) # must be before sparc entry or we get the wrong os.
633 os=-sysv3
634 ;;
635 sparc-* | *-sun)
636 os=-sunos4.1.1
637 ;;
638 *-ibm)
639 os=-aix
640 ;;
641 *-hp)
642 os=-hpux
643 ;;
644 *-hitachi)
645 os=-hiux
646 ;;
647 i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
648 os=-sysv
649 ;;
650 *-cbm)
651 os=-amigados
652 ;;
653 *-dg)
654 os=-dgux
655 ;;
656 *-dolphin)
657 os=-sysv3
658 ;;
659 m88k-omron*)
660 os=-luna
661 ;;
662 *-sequent)
663 os=-bsd
664 ;;
665 *-crds)
666 os=-unos
667 ;;
668 *-ns)
669 os=-genix
670 ;;
671 i370-*)
672 os=-mvs
673 ;;
674 *-next)
675 os=-bsd
676 ;;
677 i[34]86-*)
678 os=-sco3.2v2
679 ;;
680 *-gould)
681 os=-sysv
682 ;;
683 *-highlevel)
684 os=-bsd
685 ;;
686 *-encore)
687 os=-bsd
688 ;;
689 *-sgi)
690 os=-irix
691 ;;
692 *-masscomp)
693 os=-rtu
694 ;;
695 *)
696 os=-none
697 ;;
698 esac
699 fi
700
701 # Here we handle the case where we know the os, and the CPU type, but not the
702 # manufacturer. We pick the logical manufacturer.
703 vendor=unknown
704 case $basic_machine in
705 *-unknown)
706 case $os in
707 -riscix*)
708 vendor=acorn
709 ;;
710 -sunos*)
711 vendor=sun
712 ;;
713 -lynxos*)
714 vendor=lynx
715 ;;
716 -aix*)
717 vendor=ibm
718 ;;
719 -hpux*)
720 vendor=hp
721 ;;
722 -hiux*)
723 vendor=hitachi
724 ;;
725 -unos*)
726 vendor=crds
727 ;;
728 -dgux*)
729 vendor=dg
730 ;;
731 -luna*)
732 vendor=omron
733 ;;
734 -genix*)
735 vendor=ns
736 ;;
737 -mvs*)
738 vendor=ibm
739 ;;
740 esac
741 basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
742 ;;
743 esac
744
745 echo $basic_machine$os