config.sub
上传用户:nini_0081
上传日期:2022-07-21
资源大小:2628k
文件大小:34k
源码类别:

多媒体编程

开发平台:

DOS

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