config.sub
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:31k
源码类别:

网格计算

开发平台:

Java

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