1480
|
1 #! /bin/sh |
295
|
2 # Configuration validation subroutine script, version 1.1. |
3594
|
3 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000 |
|
4 # Free Software Foundation, Inc. |
|
5 # |
295
|
6 # This file is (in principle) common to ALL GNU software. |
|
7 # The presence of a machine in this file suggests that SOME GNU software |
2320
|
8 # can handle that machine. It does not imply ALL GNU software can. |
1057
|
9 # |
|
10 # This file is free software; you can redistribute it and/or modify |
|
11 # it under the terms of the GNU General Public License as published by |
|
12 # the Free Software Foundation; either version 2 of the License, or |
|
13 # (at your option) any later version. |
|
14 # |
|
15 # This program is distributed in the hope that it will be useful, |
|
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
18 # GNU General Public License for more details. |
|
19 # |
|
20 # You should have received a copy of the GNU General Public License |
|
21 # along with this program; if not, write to the Free Software |
1480
|
22 # Foundation, Inc., 59 Temple Place - Suite 330, |
|
23 # Boston, MA 02111-1307, USA. |
295
|
24 |
1057
|
25 # As a special exception to the GNU General Public License, if you |
|
26 # distribute this file as part of a program that contains a |
|
27 # configuration script generated by Autoconf, you may include it under |
|
28 # the same distribution terms that you use for the rest of that program. |
295
|
29 |
3594
|
30 # Written by Per Bothner <bothner@cygnus.com>. |
|
31 # Please send patches to <config-patches@gnu.org>. |
|
32 # |
295
|
33 # Configuration subroutine to validate and canonicalize a configuration type. |
|
34 # Supply the specified configuration type as an argument. |
|
35 # If it is invalid, we print an error message on stderr and exit with code 1. |
|
36 # Otherwise, we print the canonical config type on stdout and succeed. |
|
37 |
|
38 # This file is supposed to be the same for all GNU packages |
|
39 # and recognize all the CPU types, system types and aliases |
|
40 # that are meaningful with *any* GNU software. |
|
41 # Each package is responsible for reporting which valid configurations |
|
42 # it does not support. The user should be able to distinguish |
|
43 # a failure to support a valid configuration from a meaningless |
|
44 # configuration. |
|
45 |
|
46 # The goal of this file is to map all the various variations of a given |
|
47 # machine specification into a single specification in the form: |
|
48 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM |
2567
|
49 # or in some cases, the newer four-part form: |
|
50 # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM |
295
|
51 # It is wrong to echo any other type of specification. |
|
52 |
|
53 if [ x$1 = x ] |
|
54 then |
|
55 echo Configuration name missing. 1>&2 |
|
56 echo "Usage: $0 CPU-MFR-OPSYS" 1>&2 |
|
57 echo "or $0 ALIAS" 1>&2 |
|
58 echo where ALIAS is a recognized configuration type. 1>&2 |
|
59 exit 1 |
|
60 fi |
|
61 |
|
62 # First pass through any local machine types. |
|
63 case $1 in |
|
64 *local*) |
|
65 echo $1 |
|
66 exit 0 |
|
67 ;; |
|
68 *) |
|
69 ;; |
|
70 esac |
|
71 |
2567
|
72 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). |
|
73 # Here we must recognize all the valid KERNEL-OS combinations. |
|
74 maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` |
|
75 case $maybe_os in |
|
76 linux-gnu*) |
|
77 os=-$maybe_os |
|
78 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` |
|
79 ;; |
|
80 *) |
|
81 basic_machine=`echo $1 | sed 's/-[^-]*$//'` |
|
82 if [ $basic_machine != $1 ] |
|
83 then os=`echo $1 | sed 's/.*-/-/'` |
|
84 else os=; fi |
|
85 ;; |
|
86 esac |
295
|
87 |
|
88 ### Let's recognize common machines as not being operating systems so |
|
89 ### that things like config.sub decstation-3100 work. We also |
|
90 ### recognize some manufacturers as not being operating systems, so we |
|
91 ### can provide default operating systems below. |
|
92 case $os in |
|
93 -sun*os*) |
|
94 # Prevent following clause from handling this invalid input. |
|
95 ;; |
|
96 -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ |
|
97 -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ |
1057
|
98 -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ |
295
|
99 -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ |
|
100 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ |
2320
|
101 -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ |
|
102 -apple) |
295
|
103 os= |
|
104 basic_machine=$1 |
|
105 ;; |
3594
|
106 -sim | -cisco | -oki | -wec | -winbond) |
|
107 os= |
|
108 basic_machine=$1 |
|
109 ;; |
|
110 -scout) |
|
111 ;; |
|
112 -wrs) |
|
113 os=-vxworks |
|
114 basic_machine=$1 |
|
115 ;; |
295
|
116 -hiux*) |
1057
|
117 os=-hiuxwe2 |
295
|
118 ;; |
2320
|
119 -sco5) |
3594
|
120 os=-sco3.2v5 |
2567
|
121 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` |
2320
|
122 ;; |
295
|
123 -sco4) |
|
124 os=-sco3.2v4 |
2567
|
125 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` |
295
|
126 ;; |
|
127 -sco3.2.[4-9]*) |
|
128 os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` |
2567
|
129 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` |
295
|
130 ;; |
|
131 -sco3.2v[4-9]*) |
|
132 # Don't forget version if it is 3.2v4 or newer. |
2567
|
133 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` |
295
|
134 ;; |
|
135 -sco*) |
|
136 os=-sco3.2v2 |
2567
|
137 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` |
295
|
138 ;; |
3594
|
139 -udk*) |
|
140 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` |
|
141 ;; |
295
|
142 -isc) |
|
143 os=-isc2.2 |
2567
|
144 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` |
295
|
145 ;; |
|
146 -clix*) |
|
147 basic_machine=clipper-intergraph |
|
148 ;; |
|
149 -isc*) |
2567
|
150 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` |
295
|
151 ;; |
1480
|
152 -lynx*) |
295
|
153 os=-lynxos |
|
154 ;; |
1057
|
155 -ptx*) |
|
156 basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` |
|
157 ;; |
|
158 -windowsnt*) |
|
159 os=`echo $os | sed -e 's/windowsnt/winnt/'` |
|
160 ;; |
2320
|
161 -psos*) |
|
162 os=-psos |
|
163 ;; |
3594
|
164 -mint | -mint[0-9]*) |
|
165 basic_machine=m68k-atari |
|
166 os=-mint |
|
167 ;; |
295
|
168 esac |
|
169 |
|
170 # Decode aliases for certain CPU-COMPANY combinations. |
|
171 case $basic_machine in |
|
172 # Recognize the basic CPU types without company name. |
|
173 # Some are omitted here because they have special meanings below. |
3594
|
174 tahoe | i860 | ia64 | m32r | m68k | m68000 | m88k | ns32k | arc | arm \ |
|
175 | arme[lb] | pyramid | mn10200 | mn10300 | tron | a29k \ |
|
176 | 580 | i960 | h8300 \ |
|
177 | hppa | hppa1.0 | hppa1.1 | hppa2.0 | hppa2.0w | hppa2.0n \ |
|
178 | alpha | alphaev[4-7] | alphaev56 | alphapca5[67] \ |
|
179 | we32k | ns16k | clipper | i370 | sh | powerpc | powerpcle \ |
|
180 | 1750a | dsp16xx | pdp11 | mips16 | mips64 | mipsel | mips64el \ |
|
181 | mips64orion | mips64orionel | mipstx39 | mipstx39el \ |
|
182 | mips64vr4300 | mips64vr4300el | mips64vr4100 | mips64vr4100el \ |
|
183 | mips64vr5000 | miprs64vr5000el | mcore \ |
|
184 | sparc | sparclet | sparclite | sparc64 | sparcv9 | v850 | c4x \ |
|
185 | thumb | d10v | fr30) |
295
|
186 basic_machine=$basic_machine-unknown |
|
187 ;; |
3594
|
188 m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | z8k | v70 | h8500 | w65 | pj | pjl) |
|
189 ;; |
|
190 |
2567
|
191 # We use `pc' rather than `unknown' |
|
192 # because (1) that's what they normally are, and |
|
193 # (2) the word "unknown" tends to confuse beginning users. |
3594
|
194 i[34567]86) |
2567
|
195 basic_machine=$basic_machine-pc |
|
196 ;; |
295
|
197 # Object if more than one company name word. |
|
198 *-*-*) |
|
199 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 |
|
200 exit 1 |
|
201 ;; |
|
202 # Recognize the basic CPU types with company name. |
3594
|
203 # FIXME: clean up the formatting here. |
|
204 vax-* | tahoe-* | i[34567]86-* | i860-* | ia64-* | m32r-* | m68k-* | m68000-* \ |
|
205 | m88k-* | sparc-* | ns32k-* | fx80-* | arc-* | arm-* | c[123]* \ |
3128
|
206 | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* \ |
3594
|
207 | power-* | none-* | 580-* | cray2-* | h8300-* | h8500-* | i960-* \ |
|
208 | xmp-* | ymp-* \ |
|
209 | hppa-* | hppa1.0-* | hppa1.1-* | hppa2.0-* | hppa2.0w-* | hppa2.0n-* \ |
|
210 | alpha-* | alphaev[4-7]-* | alphaev56-* | alphapca5[67]-* \ |
|
211 | we32k-* | cydra-* | ns16k-* | pn-* | np1-* | xps100-* \ |
|
212 | clipper-* | orion-* \ |
3128
|
213 | sparclite-* | pdp11-* | sh-* | powerpc-* | powerpcle-* \ |
3594
|
214 | sparc64-* | sparcv9-* | sparc86x-* | mips16-* | mips64-* | mipsel-* \ |
|
215 | mips64el-* | mips64orion-* | mips64orionel-* \ |
|
216 | mips64vr4100-* | mips64vr4100el-* | mips64vr4300-* | mips64vr4300el-* \ |
|
217 | mipstx39-* | mipstx39el-* | mcore-* \ |
|
218 | f301-* | armv*-* | sv1-* | t3e-* \ |
|
219 | m88110-* | m680[01234]0-* | m683?2-* | m68360-* | z8k-* | d10v-* \ |
|
220 | thumb-* | v850-* | d30v-* | tic30-* | c30-* | fr30-* ) |
295
|
221 ;; |
|
222 # Recognize the various machine names and aliases which stand |
|
223 # for a CPU type and a company and sometimes even an OS. |
3594
|
224 386bsd) |
|
225 basic_machine=i386-unknown |
|
226 os=-bsd |
|
227 ;; |
1057
|
228 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) |
|
229 basic_machine=m68000-att |
295
|
230 ;; |
1057
|
231 3b*) |
|
232 basic_machine=we32k-att |
295
|
233 ;; |
3594
|
234 a29khif) |
|
235 basic_machine=a29k-amd |
|
236 os=-udi |
|
237 ;; |
|
238 adobe68k) |
|
239 basic_machine=m68010-adobe |
|
240 os=-scout |
|
241 ;; |
295
|
242 alliant | fx80) |
|
243 basic_machine=fx80-alliant |
|
244 ;; |
1057
|
245 altos | altos3068) |
|
246 basic_machine=m68k-altos |
|
247 ;; |
|
248 am29k) |
|
249 basic_machine=a29k-none |
|
250 os=-bsd |
|
251 ;; |
|
252 amdahl) |
|
253 basic_machine=580-amdahl |
|
254 os=-sysv |
|
255 ;; |
|
256 amiga | amiga-*) |
|
257 basic_machine=m68k-cbm |
|
258 ;; |
3128
|
259 amigaos | amigados) |
1057
|
260 basic_machine=m68k-cbm |
3128
|
261 os=-amigaos |
1057
|
262 ;; |
|
263 amigaunix | amix) |
|
264 basic_machine=m68k-cbm |
|
265 os=-sysv4 |
|
266 ;; |
|
267 apollo68) |
|
268 basic_machine=m68k-apollo |
|
269 os=-sysv |
|
270 ;; |
3594
|
271 apollo68bsd) |
|
272 basic_machine=m68k-apollo |
|
273 os=-bsd |
|
274 ;; |
2320
|
275 aux) |
|
276 basic_machine=m68k-apple |
|
277 os=-aux |
|
278 ;; |
1057
|
279 balance) |
|
280 basic_machine=ns32k-sequent |
|
281 os=-dynix |
|
282 ;; |
295
|
283 convex-c1) |
|
284 basic_machine=c1-convex |
|
285 os=-bsd |
|
286 ;; |
|
287 convex-c2) |
|
288 basic_machine=c2-convex |
|
289 os=-bsd |
|
290 ;; |
|
291 convex-c32) |
|
292 basic_machine=c32-convex |
|
293 os=-bsd |
|
294 ;; |
|
295 convex-c34) |
|
296 basic_machine=c34-convex |
|
297 os=-bsd |
|
298 ;; |
|
299 convex-c38) |
|
300 basic_machine=c38-convex |
|
301 os=-bsd |
|
302 ;; |
1057
|
303 cray | ymp) |
|
304 basic_machine=ymp-cray |
|
305 os=-unicos |
295
|
306 ;; |
1057
|
307 cray2) |
|
308 basic_machine=cray2-cray |
|
309 os=-unicos |
295
|
310 ;; |
2320
|
311 [ctj]90-cray) |
|
312 basic_machine=c90-cray |
|
313 os=-unicos |
|
314 ;; |
295
|
315 crds | unos) |
|
316 basic_machine=m68k-crds |
|
317 ;; |
1057
|
318 da30 | da30-*) |
|
319 basic_machine=m68k-da30 |
|
320 ;; |
|
321 decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) |
|
322 basic_machine=mips-dec |
|
323 ;; |
|
324 delta | 3300 | motorola-3300 | motorola-delta \ |
|
325 | 3300-motorola | delta-motorola) |
|
326 basic_machine=m68k-motorola |
|
327 ;; |
|
328 delta88) |
|
329 basic_machine=m88k-motorola |
|
330 os=-sysv3 |
|
331 ;; |
|
332 dpx20 | dpx20-*) |
|
333 basic_machine=rs6000-bull |
|
334 os=-bosx |
|
335 ;; |
|
336 dpx2* | dpx2*-bull) |
|
337 basic_machine=m68k-bull |
|
338 os=-sysv3 |
|
339 ;; |
|
340 ebmon29k) |
|
341 basic_machine=a29k-amd |
|
342 os=-ebmon |
|
343 ;; |
295
|
344 elxsi) |
|
345 basic_machine=elxsi-elxsi |
|
346 os=-bsd |
|
347 ;; |
|
348 encore | umax | mmax) |
|
349 basic_machine=ns32k-encore |
|
350 ;; |
3594
|
351 es1800 | OSE68k | ose68k | ose | OSE) |
|
352 basic_machine=m68k-ericsson |
|
353 os=-ose |
|
354 ;; |
1057
|
355 fx2800) |
|
356 basic_machine=i860-alliant |
|
357 ;; |
295
|
358 genix) |
|
359 basic_machine=ns32k-ns |
|
360 ;; |
1057
|
361 gmicro) |
|
362 basic_machine=tron-gmicro |
|
363 os=-sysv |
|
364 ;; |
|
365 h3050r* | hiux*) |
|
366 basic_machine=hppa1.1-hitachi |
|
367 os=-hiuxwe2 |
|
368 ;; |
|
369 h8300hms) |
|
370 basic_machine=h8300-hitachi |
|
371 os=-hms |
|
372 ;; |
3594
|
373 h8300xray) |
|
374 basic_machine=h8300-hitachi |
|
375 os=-xray |
|
376 ;; |
|
377 h8500hms) |
|
378 basic_machine=h8500-hitachi |
|
379 os=-hms |
|
380 ;; |
1057
|
381 harris) |
|
382 basic_machine=m88k-harris |
|
383 os=-sysv3 |
|
384 ;; |
|
385 hp300-*) |
|
386 basic_machine=m68k-hp |
|
387 ;; |
|
388 hp300bsd) |
|
389 basic_machine=m68k-hp |
|
390 os=-bsd |
|
391 ;; |
|
392 hp300hpux) |
|
393 basic_machine=m68k-hp |
|
394 os=-hpux |
|
395 ;; |
3594
|
396 hp3k9[0-9][0-9] | hp9[0-9][0-9]) |
|
397 basic_machine=hppa1.0-hp |
|
398 ;; |
1057
|
399 hp9k2[0-9][0-9] | hp9k31[0-9]) |
|
400 basic_machine=m68000-hp |
|
401 ;; |
|
402 hp9k3[2-9][0-9]) |
|
403 basic_machine=m68k-hp |
|
404 ;; |
3594
|
405 hp9k6[0-9][0-9] | hp6[0-9][0-9]) |
|
406 basic_machine=hppa1.0-hp |
|
407 ;; |
|
408 hp9k7[0-79][0-9] | hp7[0-79][0-9]) |
|
409 basic_machine=hppa1.1-hp |
|
410 ;; |
|
411 hp9k78[0-9] | hp78[0-9]) |
|
412 # FIXME: really hppa2.0-hp |
|
413 basic_machine=hppa1.1-hp |
|
414 ;; |
|
415 hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) |
|
416 # FIXME: really hppa2.0-hp |
|
417 basic_machine=hppa1.1-hp |
|
418 ;; |
|
419 hp9k8[0-9][13679] | hp8[0-9][13679]) |
1057
|
420 basic_machine=hppa1.1-hp |
|
421 ;; |
|
422 hp9k8[0-9][0-9] | hp8[0-9][0-9]) |
|
423 basic_machine=hppa1.0-hp |
|
424 ;; |
2567
|
425 hppa-next) |
|
426 os=-nextstep3 |
|
427 ;; |
3594
|
428 hppaosf) |
|
429 basic_machine=hppa1.1-hp |
|
430 os=-osf |
|
431 ;; |
|
432 hppro) |
|
433 basic_machine=hppa1.1-hp |
|
434 os=-proelf |
|
435 ;; |
1057
|
436 i370-ibm* | ibm*) |
|
437 basic_machine=i370-ibm |
|
438 ;; |
|
439 # I'm not sure what "Sysv32" means. Should this be sysv3.2? |
3594
|
440 i[34567]86v32) |
2567
|
441 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` |
1057
|
442 os=-sysv32 |
|
443 ;; |
3594
|
444 i[34567]86v4*) |
2567
|
445 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` |
1057
|
446 os=-sysv4 |
|
447 ;; |
3594
|
448 i[34567]86v) |
2567
|
449 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` |
1057
|
450 os=-sysv |
|
451 ;; |
3594
|
452 i[34567]86sol2) |
2567
|
453 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` |
1057
|
454 os=-solaris2 |
|
455 ;; |
3594
|
456 i386mach) |
|
457 basic_machine=i386-mach |
|
458 os=-mach |
|
459 ;; |
|
460 i386-vsta | vsta) |
|
461 basic_machine=i386-unknown |
|
462 os=-vsta |
|
463 ;; |
|
464 i386-go32 | go32) |
|
465 basic_machine=i386-unknown |
|
466 os=-go32 |
|
467 ;; |
|
468 i386-mingw32 | mingw32) |
|
469 basic_machine=i386-unknown |
|
470 os=-mingw32 |
|
471 ;; |
|
472 i386-qnx | qnx) |
|
473 basic_machine=i386-qnx |
|
474 ;; |
1057
|
475 iris | iris4d) |
295
|
476 basic_machine=mips-sgi |
|
477 case $os in |
|
478 -irix*) |
|
479 ;; |
|
480 *) |
|
481 os=-irix4 |
|
482 ;; |
|
483 esac |
|
484 ;; |
1057
|
485 isi68 | isi) |
|
486 basic_machine=m68k-isi |
|
487 os=-sysv |
|
488 ;; |
|
489 m88k-omron*) |
|
490 basic_machine=m88k-omron |
|
491 ;; |
|
492 magnum | m3230) |
|
493 basic_machine=mips-mips |
|
494 os=-sysv |
|
495 ;; |
|
496 merlin) |
|
497 basic_machine=ns32k-utek |
|
498 os=-sysv |
|
499 ;; |
|
500 miniframe) |
|
501 basic_machine=m68000-convergent |
|
502 ;; |
3594
|
503 *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) |
|
504 basic_machine=m68k-atari |
|
505 os=-mint |
|
506 ;; |
3128
|
507 mipsel*-linux*) |
|
508 basic_machine=mipsel-unknown |
|
509 os=-linux-gnu |
|
510 ;; |
|
511 mips*-linux*) |
|
512 basic_machine=mips-unknown |
|
513 os=-linux-gnu |
|
514 ;; |
1057
|
515 mips3*-*) |
|
516 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` |
|
517 ;; |
|
518 mips3*) |
|
519 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown |
|
520 ;; |
3594
|
521 mmix*) |
|
522 basic_machine=mmix-knuth |
|
523 os=-mmixware |
|
524 ;; |
|
525 monitor) |
|
526 basic_machine=m68k-rom68k |
|
527 os=-coff |
|
528 ;; |
|
529 msdos) |
|
530 basic_machine=i386-unknown |
|
531 os=-msdos |
|
532 ;; |
|
533 mvs) |
|
534 basic_machine=i370-ibm |
|
535 os=-mvs |
|
536 ;; |
1057
|
537 ncr3000) |
|
538 basic_machine=i486-ncr |
|
539 os=-sysv4 |
|
540 ;; |
3594
|
541 netbsd386) |
|
542 basic_machine=i386-unknown |
|
543 os=-netbsd |
|
544 ;; |
|
545 netwinder) |
|
546 basic_machine=armv4l-rebel |
|
547 os=-linux |
|
548 ;; |
295
|
549 news | news700 | news800 | news900) |
|
550 basic_machine=m68k-sony |
|
551 os=-newsos |
|
552 ;; |
1057
|
553 news1000) |
|
554 basic_machine=m68030-sony |
|
555 os=-newsos |
|
556 ;; |
|
557 news-3600 | risc-news) |
|
558 basic_machine=mips-sony |
|
559 os=-newsos |
295
|
560 ;; |
3594
|
561 necv70) |
|
562 basic_machine=v70-nec |
|
563 os=-sysv |
|
564 ;; |
1057
|
565 next | m*-next ) |
|
566 basic_machine=m68k-next |
|
567 case $os in |
|
568 -nextstep* ) |
|
569 ;; |
|
570 -ns2*) |
|
571 os=-nextstep2 |
|
572 ;; |
|
573 *) |
|
574 os=-nextstep3 |
|
575 ;; |
|
576 esac |
|
577 ;; |
|
578 nh3000) |
|
579 basic_machine=m68k-harris |
|
580 os=-cxux |
295
|
581 ;; |
1057
|
582 nh[45]000) |
|
583 basic_machine=m88k-harris |
|
584 os=-cxux |
|
585 ;; |
|
586 nindy960) |
|
587 basic_machine=i960-intel |
|
588 os=-nindy |
|
589 ;; |
3594
|
590 mon960) |
|
591 basic_machine=i960-intel |
|
592 os=-mon960 |
|
593 ;; |
1057
|
594 np1) |
|
595 basic_machine=np1-gould |
295
|
596 ;; |
3594
|
597 op50n-* | op60c-*) |
|
598 basic_machine=hppa1.1-oki |
|
599 os=-proelf |
|
600 ;; |
|
601 OSE68000 | ose68000) |
|
602 basic_machine=m68000-ericsson |
|
603 os=-ose |
|
604 ;; |
|
605 os68k) |
|
606 basic_machine=m68k-none |
|
607 os=-os68k |
|
608 ;; |
1057
|
609 pa-hitachi) |
|
610 basic_machine=hppa1.1-hitachi |
|
611 os=-hiuxwe2 |
|
612 ;; |
|
613 paragon) |
|
614 basic_machine=i860-intel |
|
615 os=-osf |
295
|
616 ;; |
1057
|
617 pbd) |
|
618 basic_machine=sparc-tti |
|
619 ;; |
|
620 pbb) |
|
621 basic_machine=m68k-tti |
|
622 ;; |
|
623 pc532 | pc532-*) |
295
|
624 basic_machine=ns32k-pc532 |
|
625 ;; |
3594
|
626 pentium | p5 | k5 | k6 | nexen) |
|
627 basic_machine=i586-pc |
1480
|
628 ;; |
3594
|
629 pentiumpro | p6 | 6x86) |
|
630 basic_machine=i686-pc |
2320
|
631 ;; |
3594
|
632 pentiumii | pentium2) |
|
633 basic_machine=i786-pc |
|
634 ;; |
|
635 pentium-* | p5-* | k5-* | k6-* | nexen-*) |
1480
|
636 basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` |
|
637 ;; |
3594
|
638 pentiumpro-* | p6-* | 6x86-*) |
2320
|
639 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` |
|
640 ;; |
3594
|
641 pentiumii-* | pentium2-*) |
|
642 basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` |
1057
|
643 ;; |
|
644 pn) |
|
645 basic_machine=pn-gould |
|
646 ;; |
1480
|
647 power) basic_machine=rs6000-ibm |
|
648 ;; |
|
649 ppc) basic_machine=powerpc-unknown |
|
650 ;; |
|
651 ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` |
|
652 ;; |
|
653 ppcle | powerpclittle | ppc-le | powerpc-little) |
|
654 basic_machine=powerpcle-unknown |
|
655 ;; |
|
656 ppcle-* | powerpclittle-*) |
|
657 basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` |
|
658 ;; |
1057
|
659 ps2) |
|
660 basic_machine=i386-ibm |
|
661 ;; |
3594
|
662 rom68k) |
|
663 basic_machine=m68k-rom68k |
|
664 os=-coff |
|
665 ;; |
1480
|
666 rm[46]00) |
|
667 basic_machine=mips-siemens |
|
668 ;; |
1057
|
669 rtpc | rtpc-*) |
|
670 basic_machine=romp-ibm |
|
671 ;; |
3594
|
672 sa29200) |
|
673 basic_machine=a29k-amd |
|
674 os=-udi |
|
675 ;; |
1057
|
676 sequent) |
295
|
677 basic_machine=i386-sequent |
1057
|
678 ;; |
|
679 sh) |
|
680 basic_machine=sh-hitachi |
|
681 os=-hms |
|
682 ;; |
3594
|
683 sparclite-wrs) |
|
684 basic_machine=sparclite-wrs |
|
685 os=-vxworks |
|
686 ;; |
1057
|
687 sps7) |
|
688 basic_machine=m68k-bull |
|
689 os=-sysv2 |
|
690 ;; |
|
691 spur) |
|
692 basic_machine=spur-unknown |
295
|
693 ;; |
3594
|
694 st2000) |
|
695 basic_machine=m68k-tandem |
|
696 ;; |
|
697 stratus) |
|
698 basic_machine=i860-stratus |
|
699 os=-sysv4 |
|
700 ;; |
295
|
701 sun2) |
|
702 basic_machine=m68000-sun |
|
703 ;; |
|
704 sun2os3) |
|
705 basic_machine=m68000-sun |
|
706 os=-sunos3 |
|
707 ;; |
|
708 sun2os4) |
|
709 basic_machine=m68000-sun |
|
710 os=-sunos4 |
|
711 ;; |
|
712 sun3os3) |
|
713 basic_machine=m68k-sun |
|
714 os=-sunos3 |
|
715 ;; |
|
716 sun3os4) |
|
717 basic_machine=m68k-sun |
|
718 os=-sunos4 |
|
719 ;; |
|
720 sun4os3) |
|
721 basic_machine=sparc-sun |
|
722 os=-sunos3 |
|
723 ;; |
|
724 sun4os4) |
|
725 basic_machine=sparc-sun |
|
726 os=-sunos4 |
|
727 ;; |
1480
|
728 sun4sol2) |
|
729 basic_machine=sparc-sun |
|
730 os=-solaris2 |
|
731 ;; |
1057
|
732 sun3 | sun3-*) |
295
|
733 basic_machine=m68k-sun |
|
734 ;; |
|
735 sun4) |
|
736 basic_machine=sparc-sun |
|
737 ;; |
|
738 sun386 | sun386i | roadrunner) |
|
739 basic_machine=i386-sun |
|
740 ;; |
3594
|
741 sv1) |
|
742 basic_machine=sv1-cray |
|
743 os=-unicos |
|
744 ;; |
1057
|
745 symmetry) |
|
746 basic_machine=i386-sequent |
|
747 os=-dynix |
295
|
748 ;; |
3594
|
749 t3e) |
|
750 basic_machine=t3e-cray |
|
751 os=-unicos |
|
752 ;; |
3128
|
753 tx39) |
|
754 basic_machine=mipstx39-unknown |
|
755 ;; |
|
756 tx39el) |
|
757 basic_machine=mipstx39el-unknown |
|
758 ;; |
295
|
759 tower | tower-32) |
|
760 basic_machine=m68k-ncr |
|
761 ;; |
1057
|
762 udi29k) |
295
|
763 basic_machine=a29k-amd |
|
764 os=-udi |
|
765 ;; |
|
766 ultra3) |
|
767 basic_machine=a29k-nyu |
|
768 os=-sym1 |
|
769 ;; |
3594
|
770 v810 | necv810) |
|
771 basic_machine=v810-nec |
|
772 os=-none |
|
773 ;; |
1057
|
774 vaxv) |
|
775 basic_machine=vax-dec |
|
776 os=-sysv |
|
777 ;; |
|
778 vms) |
|
779 basic_machine=vax-dec |
|
780 os=-vms |
|
781 ;; |
3128
|
782 vpp*|vx|vx-*) |
2567
|
783 basic_machine=f301-fujitsu |
|
784 ;; |
295
|
785 vxworks960) |
|
786 basic_machine=i960-wrs |
|
787 os=-vxworks |
|
788 ;; |
|
789 vxworks68) |
|
790 basic_machine=m68k-wrs |
|
791 os=-vxworks |
|
792 ;; |
1480
|
793 vxworks29k) |
|
794 basic_machine=a29k-wrs |
|
795 os=-vxworks |
|
796 ;; |
3594
|
797 w65*) |
|
798 basic_machine=w65-wdc |
|
799 os=-none |
|
800 ;; |
|
801 w89k-*) |
|
802 basic_machine=hppa1.1-winbond |
|
803 os=-proelf |
|
804 ;; |
1057
|
805 xmp) |
|
806 basic_machine=xmp-cray |
|
807 os=-unicos |
295
|
808 ;; |
|
809 xps | xps100) |
|
810 basic_machine=xps100-honeywell |
|
811 ;; |
3594
|
812 z8k-*-coff) |
|
813 basic_machine=z8k-unknown |
|
814 os=-sim |
|
815 ;; |
295
|
816 none) |
|
817 basic_machine=none-none |
|
818 os=-none |
|
819 ;; |
|
820 |
|
821 # Here we handle the default manufacturer of certain CPU types. It is in |
|
822 # some cases the only manufacturer, in others, it is the most popular. |
3594
|
823 w89k) |
|
824 basic_machine=hppa1.1-winbond |
|
825 ;; |
|
826 op50n) |
|
827 basic_machine=hppa1.1-oki |
|
828 ;; |
|
829 op60c) |
|
830 basic_machine=hppa1.1-oki |
|
831 ;; |
295
|
832 mips) |
3128
|
833 if [ x$os = x-linux-gnu ]; then |
|
834 basic_machine=mips-unknown |
|
835 else |
|
836 basic_machine=mips-mips |
|
837 fi |
295
|
838 ;; |
|
839 romp) |
|
840 basic_machine=romp-ibm |
|
841 ;; |
|
842 rs6000) |
|
843 basic_machine=rs6000-ibm |
|
844 ;; |
|
845 vax) |
|
846 basic_machine=vax-dec |
|
847 ;; |
1057
|
848 pdp11) |
|
849 basic_machine=pdp11-dec |
|
850 ;; |
295
|
851 we32k) |
|
852 basic_machine=we32k-att |
|
853 ;; |
3594
|
854 sparc | sparcv9) |
295
|
855 basic_machine=sparc-sun |
|
856 ;; |
|
857 cydra) |
|
858 basic_machine=cydra-cydrome |
|
859 ;; |
|
860 orion) |
|
861 basic_machine=orion-highlevel |
|
862 ;; |
|
863 orion105) |
|
864 basic_machine=clipper-highlevel |
|
865 ;; |
3594
|
866 mac | mpw | mac-mpw) |
|
867 basic_machine=m68k-apple |
|
868 ;; |
|
869 pmac | pmac-mpw) |
|
870 basic_machine=powerpc-apple |
|
871 ;; |
|
872 c4x*) |
|
873 basic_machine=c4x-none |
|
874 os=-coff |
|
875 ;; |
295
|
876 *) |
|
877 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 |
|
878 exit 1 |
|
879 ;; |
|
880 esac |
|
881 |
|
882 # Here we canonicalize certain aliases for manufacturers. |
|
883 case $basic_machine in |
|
884 *-digital*) |
|
885 basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` |
|
886 ;; |
|
887 *-commodore*) |
|
888 basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` |
|
889 ;; |
|
890 *) |
|
891 ;; |
|
892 esac |
|
893 |
|
894 # Decode manufacturer-specific aliases for certain operating systems. |
|
895 |
|
896 if [ x"$os" != x"" ] |
|
897 then |
|
898 case $os in |
2567
|
899 # First match some system type aliases |
|
900 # that might get confused with valid system types. |
295
|
901 # -solaris* is a basic system type, with this one exception. |
|
902 -solaris1 | -solaris1.*) |
|
903 os=`echo $os | sed -e 's|solaris1|sunos4|'` |
|
904 ;; |
|
905 -solaris) |
|
906 os=-solaris2 |
|
907 ;; |
3128
|
908 -svr4*) |
1480
|
909 os=-sysv4 |
|
910 ;; |
3128
|
911 -unixware*) |
|
912 os=-sysv4.2uw |
|
913 ;; |
1057
|
914 -gnu/linux*) |
2567
|
915 os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` |
1057
|
916 ;; |
295
|
917 # First accept the basic system types. |
|
918 # The portable systems comes first. |
1480
|
919 # Each alternative MUST END IN A *, to match a version number. |
295
|
920 # -sysv* is not here because it comes later, after sysvr4. |
|
921 -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ |
2320
|
922 | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ |
1057
|
923 | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ |
3128
|
924 | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ |
|
925 | -aos* \ |
2567
|
926 | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ |
|
927 | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ |
|
928 | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \ |
3594
|
929 | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ |
1480
|
930 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ |
2320
|
931 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ |
3594
|
932 | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ |
|
933 | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \ |
|
934 | -interix* | -uwin* | -rhapsody* | -opened* | -openstep* | -oskit*) |
1480
|
935 # Remember, each alternative MUST END IN *, to match a version number. |
1057
|
936 ;; |
3594
|
937 -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ |
|
938 | -windows* | -osx | -abug | -netware* | -os9* | -beos* \ |
|
939 | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) |
|
940 ;; |
|
941 -mac*) |
|
942 os=`echo $os | sed -e 's|mac|macos|'` |
|
943 ;; |
2567
|
944 -linux*) |
|
945 os=`echo $os | sed -e 's|linux|linux-gnu|'` |
|
946 ;; |
295
|
947 -sunos5*) |
|
948 os=`echo $os | sed -e 's|sunos5|solaris2|'` |
|
949 ;; |
|
950 -sunos6*) |
|
951 os=`echo $os | sed -e 's|sunos6|solaris3|'` |
|
952 ;; |
3594
|
953 -opened*) |
|
954 os=-openedition |
|
955 ;; |
295
|
956 -osfrose*) |
|
957 os=-osfrose |
|
958 ;; |
|
959 -osf*) |
|
960 os=-osf |
|
961 ;; |
|
962 -utek*) |
|
963 os=-bsd |
|
964 ;; |
|
965 -dynix*) |
|
966 os=-bsd |
|
967 ;; |
|
968 -acis*) |
|
969 os=-aos |
|
970 ;; |
3594
|
971 -386bsd) |
|
972 os=-bsd |
|
973 ;; |
295
|
974 -ctix* | -uts*) |
|
975 os=-sysv |
|
976 ;; |
2320
|
977 -ns2 ) |
|
978 os=-nextstep2 |
|
979 ;; |
1480
|
980 # Preserve the version number of sinix5. |
|
981 -sinix5.*) |
|
982 os=`echo $os | sed -e 's|sinix|sysv|'` |
|
983 ;; |
|
984 -sinix*) |
|
985 os=-sysv4 |
|
986 ;; |
295
|
987 -triton*) |
|
988 os=-sysv3 |
|
989 ;; |
|
990 -oss*) |
|
991 os=-sysv3 |
|
992 ;; |
3594
|
993 -qnx) |
|
994 os=-qnx4 |
|
995 ;; |
295
|
996 -svr4) |
|
997 os=-sysv4 |
|
998 ;; |
|
999 -svr3) |
|
1000 os=-sysv3 |
|
1001 ;; |
|
1002 -sysvr4) |
|
1003 os=-sysv4 |
|
1004 ;; |
|
1005 # This must come after -sysvr4. |
|
1006 -sysv*) |
|
1007 ;; |
3594
|
1008 -ose*) |
|
1009 os=-ose |
|
1010 ;; |
|
1011 -es1800*) |
|
1012 os=-ose |
|
1013 ;; |
295
|
1014 -xenix) |
|
1015 os=-xenix |
|
1016 ;; |
3594
|
1017 -*mint | -*MiNT) |
|
1018 os=-mint |
|
1019 ;; |
295
|
1020 -none) |
|
1021 ;; |
|
1022 *) |
|
1023 # Get rid of the `-' at the beginning of $os. |
1057
|
1024 os=`echo $os | sed 's/[^-]*-//'` |
295
|
1025 echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 |
|
1026 exit 1 |
|
1027 ;; |
|
1028 esac |
|
1029 else |
|
1030 |
|
1031 # Here we handle the default operating systems that come with various machines. |
|
1032 # The value should be what the vendor currently ships out the door with their |
|
1033 # machine or put another way, the most popular os provided with the machine. |
|
1034 |
|
1035 # Note that if you're going to try to match "-MANUFACTURER" here (say, |
|
1036 # "-sun"), then you have to tell the case statement up towards the top |
|
1037 # that MANUFACTURER isn't an operating system. Otherwise, code above |
|
1038 # will signal an error saying that MANUFACTURER isn't an operating |
|
1039 # system, and we'll never get to this point. |
|
1040 |
|
1041 case $basic_machine in |
|
1042 *-acorn) |
|
1043 os=-riscix1.2 |
|
1044 ;; |
3594
|
1045 arm*-rebel) |
|
1046 os=-linux |
|
1047 ;; |
1480
|
1048 arm*-semi) |
|
1049 os=-aout |
|
1050 ;; |
1057
|
1051 pdp11-*) |
|
1052 os=-none |
|
1053 ;; |
295
|
1054 *-dec | vax-*) |
|
1055 os=-ultrix4.2 |
|
1056 ;; |
1057
|
1057 m68*-apollo) |
|
1058 os=-domain |
|
1059 ;; |
295
|
1060 i386-sun) |
|
1061 os=-sunos4.0.2 |
|
1062 ;; |
|
1063 m68000-sun) |
|
1064 os=-sunos3 |
|
1065 # This also exists in the configure program, but was not the |
|
1066 # default. |
|
1067 # os=-sunos4 |
|
1068 ;; |
3594
|
1069 m68*-cisco) |
|
1070 os=-aout |
|
1071 ;; |
|
1072 mips*-cisco) |
|
1073 os=-elf |
|
1074 ;; |
|
1075 mips*-*) |
|
1076 os=-elf |
|
1077 ;; |
295
|
1078 *-tti) # must be before sparc entry or we get the wrong os. |
|
1079 os=-sysv3 |
|
1080 ;; |
|
1081 sparc-* | *-sun) |
|
1082 os=-sunos4.1.1 |
|
1083 ;; |
3594
|
1084 *-be) |
|
1085 os=-beos |
|
1086 ;; |
295
|
1087 *-ibm) |
|
1088 os=-aix |
|
1089 ;; |
3594
|
1090 *-wec) |
|
1091 os=-proelf |
|
1092 ;; |
|
1093 *-winbond) |
|
1094 os=-proelf |
|
1095 ;; |
|
1096 *-oki) |
|
1097 os=-proelf |
|
1098 ;; |
295
|
1099 *-hp) |
|
1100 os=-hpux |
|
1101 ;; |
|
1102 *-hitachi) |
|
1103 os=-hiux |
|
1104 ;; |
|
1105 i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) |
|
1106 os=-sysv |
|
1107 ;; |
|
1108 *-cbm) |
3128
|
1109 os=-amigaos |
295
|
1110 ;; |
|
1111 *-dg) |
|
1112 os=-dgux |
|
1113 ;; |
|
1114 *-dolphin) |
|
1115 os=-sysv3 |
|
1116 ;; |
1057
|
1117 m68k-ccur) |
|
1118 os=-rtu |
|
1119 ;; |
295
|
1120 m88k-omron*) |
|
1121 os=-luna |
|
1122 ;; |
2320
|
1123 *-next ) |
|
1124 os=-nextstep |
|
1125 ;; |
295
|
1126 *-sequent) |
1057
|
1127 os=-ptx |
295
|
1128 ;; |
|
1129 *-crds) |
|
1130 os=-unos |
|
1131 ;; |
|
1132 *-ns) |
|
1133 os=-genix |
|
1134 ;; |
|
1135 i370-*) |
|
1136 os=-mvs |
|
1137 ;; |
|
1138 *-next) |
1057
|
1139 os=-nextstep3 |
295
|
1140 ;; |
|
1141 *-gould) |
|
1142 os=-sysv |
|
1143 ;; |
|
1144 *-highlevel) |
|
1145 os=-bsd |
|
1146 ;; |
|
1147 *-encore) |
|
1148 os=-bsd |
|
1149 ;; |
|
1150 *-sgi) |
|
1151 os=-irix |
|
1152 ;; |
1480
|
1153 *-siemens) |
|
1154 os=-sysv4 |
|
1155 ;; |
295
|
1156 *-masscomp) |
|
1157 os=-rtu |
|
1158 ;; |
2567
|
1159 f301-fujitsu) |
|
1160 os=-uxpv |
|
1161 ;; |
3594
|
1162 *-rom68k) |
|
1163 os=-coff |
|
1164 ;; |
|
1165 *-*bug) |
|
1166 os=-coff |
|
1167 ;; |
|
1168 *-apple) |
|
1169 os=-macos |
|
1170 ;; |
|
1171 *-atari*) |
|
1172 os=-mint |
|
1173 ;; |
295
|
1174 *) |
|
1175 os=-none |
|
1176 ;; |
|
1177 esac |
|
1178 fi |
|
1179 |
|
1180 # Here we handle the case where we know the os, and the CPU type, but not the |
|
1181 # manufacturer. We pick the logical manufacturer. |
|
1182 vendor=unknown |
|
1183 case $basic_machine in |
|
1184 *-unknown) |
|
1185 case $os in |
|
1186 -riscix*) |
|
1187 vendor=acorn |
|
1188 ;; |
|
1189 -sunos*) |
|
1190 vendor=sun |
|
1191 ;; |
|
1192 -aix*) |
|
1193 vendor=ibm |
|
1194 ;; |
3594
|
1195 -beos*) |
|
1196 vendor=be |
|
1197 ;; |
295
|
1198 -hpux*) |
|
1199 vendor=hp |
|
1200 ;; |
3594
|
1201 -mpeix*) |
|
1202 vendor=hp |
|
1203 ;; |
295
|
1204 -hiux*) |
|
1205 vendor=hitachi |
|
1206 ;; |
|
1207 -unos*) |
|
1208 vendor=crds |
|
1209 ;; |
|
1210 -dgux*) |
|
1211 vendor=dg |
|
1212 ;; |
|
1213 -luna*) |
|
1214 vendor=omron |
|
1215 ;; |
|
1216 -genix*) |
|
1217 vendor=ns |
|
1218 ;; |
3594
|
1219 -mvs* | -opened*) |
295
|
1220 vendor=ibm |
|
1221 ;; |
1057
|
1222 -ptx*) |
|
1223 vendor=sequent |
295
|
1224 ;; |
2567
|
1225 -vxsim* | -vxworks*) |
1057
|
1226 vendor=wrs |
295
|
1227 ;; |
2320
|
1228 -aux*) |
|
1229 vendor=apple |
|
1230 ;; |
3594
|
1231 -hms*) |
|
1232 vendor=hitachi |
|
1233 ;; |
|
1234 -mpw* | -macos*) |
|
1235 vendor=apple |
|
1236 ;; |
|
1237 -*mint | -*MiNT) |
|
1238 vendor=atari |
|
1239 ;; |
295
|
1240 esac |
|
1241 basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` |
|
1242 ;; |
|
1243 esac |
|
1244 |
|
1245 echo $basic_machine$os |