config.sub
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:26k
源码类别:

xml/soap/webservice

开发平台:

C/C++

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