config.sub
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:32k
源码类别:

Windows CE

开发平台:

C/C++

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