config.sub
上传用户:tjfeida
上传日期:2013-03-10
资源大小:1917k
文件大小:28k
源码类别:

Ftp客户端

开发平台:

Visual C++

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