config.sub
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:27k
源码类别:

手机WAP编程

开发平台:

WINDOWS

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