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-08-29'
  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. crisv32 | crisv32-* | etraxfs*)
  438. basic_machine=crisv32-axis
  439. ;;
  440. cris | cris-* | etrax*)
  441. basic_machine=cris-axis
  442. ;;
  443. crx)
  444. basic_machine=crx-unknown
  445. os=-elf
  446. ;;
  447. da30 | da30-*)
  448. basic_machine=m68k-da30
  449. ;;
  450. decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
  451. basic_machine=mips-dec
  452. ;;
  453. decsystem10* | dec10*)
  454. basic_machine=pdp10-dec
  455. os=-tops10
  456. ;;
  457. decsystem20* | dec20*)
  458. basic_machine=pdp10-dec
  459. os=-tops20
  460. ;;
  461. delta | 3300 | motorola-3300 | motorola-delta 
  462.       | 3300-motorola | delta-motorola)
  463. basic_machine=m68k-motorola
  464. ;;
  465. delta88)
  466. basic_machine=m88k-motorola
  467. os=-sysv3
  468. ;;
  469. dpx20 | dpx20-*)
  470. basic_machine=rs6000-bull
  471. os=-bosx
  472. ;;
  473. dpx2* | dpx2*-bull)
  474. basic_machine=m68k-bull
  475. os=-sysv3
  476. ;;
  477. ebmon29k)
  478. basic_machine=a29k-amd
  479. os=-ebmon
  480. ;;
  481. elxsi)
  482. basic_machine=elxsi-elxsi
  483. os=-bsd
  484. ;;
  485. encore | umax | mmax)
  486. basic_machine=ns32k-encore
  487. ;;
  488. es1800 | OSE68k | ose68k | ose | OSE)
  489. basic_machine=m68k-ericsson
  490. os=-ose
  491. ;;
  492. fx2800)
  493. basic_machine=i860-alliant
  494. ;;
  495. genix)
  496. basic_machine=ns32k-ns
  497. ;;
  498. gmicro)
  499. basic_machine=tron-gmicro
  500. os=-sysv
  501. ;;
  502. go32)
  503. basic_machine=i386-pc
  504. os=-go32
  505. ;;
  506. h3050r* | hiux*)
  507. basic_machine=hppa1.1-hitachi
  508. os=-hiuxwe2
  509. ;;
  510. h8300hms)
  511. basic_machine=h8300-hitachi
  512. os=-hms
  513. ;;
  514. h8300xray)
  515. basic_machine=h8300-hitachi
  516. os=-xray
  517. ;;
  518. h8500hms)
  519. basic_machine=h8500-hitachi
  520. os=-hms
  521. ;;
  522. harris)
  523. basic_machine=m88k-harris
  524. os=-sysv3
  525. ;;
  526. hp300-*)
  527. basic_machine=m68k-hp
  528. ;;
  529. hp300bsd)
  530. basic_machine=m68k-hp
  531. os=-bsd
  532. ;;
  533. hp300hpux)
  534. basic_machine=m68k-hp
  535. os=-hpux
  536. ;;
  537. hp3k9[0-9][0-9] | hp9[0-9][0-9])
  538. basic_machine=hppa1.0-hp
  539. ;;
  540. hp9k2[0-9][0-9] | hp9k31[0-9])
  541. basic_machine=m68000-hp
  542. ;;
  543. hp9k3[2-9][0-9])
  544. basic_machine=m68k-hp
  545. ;;
  546. hp9k6[0-9][0-9] | hp6[0-9][0-9])
  547. basic_machine=hppa1.0-hp
  548. ;;
  549. hp9k7[0-79][0-9] | hp7[0-79][0-9])
  550. basic_machine=hppa1.1-hp
  551. ;;
  552. hp9k78[0-9] | hp78[0-9])
  553. # FIXME: really hppa2.0-hp
  554. basic_machine=hppa1.1-hp
  555. ;;
  556. hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
  557. # FIXME: really hppa2.0-hp
  558. basic_machine=hppa1.1-hp
  559. ;;
  560. hp9k8[0-9][13679] | hp8[0-9][13679])
  561. basic_machine=hppa1.1-hp
  562. ;;
  563. hp9k8[0-9][0-9] | hp8[0-9][0-9])
  564. basic_machine=hppa1.0-hp
  565. ;;
  566. hppa-next)
  567. os=-nextstep3
  568. ;;
  569. hppaosf)
  570. basic_machine=hppa1.1-hp
  571. os=-osf
  572. ;;
  573. hppro)
  574. basic_machine=hppa1.1-hp
  575. os=-proelf
  576. ;;
  577. i370-ibm* | ibm*)
  578. basic_machine=i370-ibm
  579. ;;
  580. # I'm not sure what "Sysv32" means.  Should this be sysv3.2?
  581. i*86v32)
  582. basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
  583. os=-sysv32
  584. ;;
  585. i*86v4*)
  586. basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
  587. os=-sysv4
  588. ;;
  589. i*86v)
  590. basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
  591. os=-sysv
  592. ;;
  593. i*86sol2)
  594. basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
  595. os=-solaris2
  596. ;;
  597. i386mach)
  598. basic_machine=i386-mach
  599. os=-mach
  600. ;;
  601. i386-vsta | vsta)
  602. basic_machine=i386-unknown
  603. os=-vsta
  604. ;;
  605. iris | iris4d)
  606. basic_machine=mips-sgi
  607. case $os in
  608.     -irix*)
  609. ;;
  610.     *)
  611. os=-irix4
  612. ;;
  613. esac
  614. ;;
  615. isi68 | isi)
  616. basic_machine=m68k-isi
  617. os=-sysv
  618. ;;
  619. m88k-omron*)
  620. basic_machine=m88k-omron
  621. ;;
  622. magnum | m3230)
  623. basic_machine=mips-mips
  624. os=-sysv
  625. ;;
  626. merlin)
  627. basic_machine=ns32k-utek
  628. os=-sysv
  629. ;;
  630. mingw32)
  631. basic_machine=i386-pc
  632. os=-mingw32
  633. ;;
  634. miniframe)
  635. basic_machine=m68000-convergent
  636. ;;
  637. *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*)
  638. basic_machine=m68k-atari
  639. os=-mint
  640. ;;
  641. mips3*-*)
  642. basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
  643. ;;
  644. mips3*)
  645. basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
  646. ;;
  647. monitor)
  648. basic_machine=m68k-rom68k
  649. os=-coff
  650. ;;
  651. morphos)
  652. basic_machine=powerpc-unknown
  653. os=-morphos
  654. ;;
  655. msdos)
  656. basic_machine=i386-pc
  657. os=-msdos
  658. ;;
  659. mvs)
  660. basic_machine=i370-ibm
  661. os=-mvs
  662. ;;
  663. ncr3000)
  664. basic_machine=i486-ncr
  665. os=-sysv4
  666. ;;
  667. netbsd386)
  668. basic_machine=i386-unknown
  669. os=-netbsd
  670. ;;
  671. netwinder)
  672. basic_machine=armv4l-rebel
  673. os=-linux
  674. ;;
  675. news | news700 | news800 | news900)
  676. basic_machine=m68k-sony
  677. os=-newsos
  678. ;;
  679. news1000)
  680. basic_machine=m68030-sony
  681. os=-newsos
  682. ;;
  683. news-3600 | risc-news)
  684. basic_machine=mips-sony
  685. os=-newsos
  686. ;;
  687. necv70)
  688. basic_machine=v70-nec
  689. os=-sysv
  690. ;;
  691. next | m*-next )
  692. basic_machine=m68k-next
  693. case $os in
  694.     -nextstep* )
  695. ;;
  696.     -ns2*)
  697.       os=-nextstep2
  698. ;;
  699.     *)
  700.       os=-nextstep3
  701. ;;
  702. esac
  703. ;;
  704. nh3000)
  705. basic_machine=m68k-harris
  706. os=-cxux
  707. ;;
  708. nh[45]000)
  709. basic_machine=m88k-harris
  710. os=-cxux
  711. ;;
  712. nindy960)
  713. basic_machine=i960-intel
  714. os=-nindy
  715. ;;
  716. mon960)
  717. basic_machine=i960-intel
  718. os=-mon960
  719. ;;
  720. nonstopux)
  721. basic_machine=mips-compaq
  722. os=-nonstopux
  723. ;;
  724. np1)
  725. basic_machine=np1-gould
  726. ;;
  727. nsr-tandem)
  728. basic_machine=nsr-tandem
  729. ;;
  730. op50n-* | op60c-*)
  731. basic_machine=hppa1.1-oki
  732. os=-proelf
  733. ;;
  734. or32 | or32-*)
  735. basic_machine=or32-unknown
  736. os=-coff
  737. ;;
  738. os400)
  739. basic_machine=powerpc-ibm
  740. os=-os400
  741. ;;
  742. OSE68000 | ose68000)
  743. basic_machine=m68000-ericsson
  744. os=-ose
  745. ;;
  746. os68k)
  747. basic_machine=m68k-none
  748. os=-os68k
  749. ;;
  750. pa-hitachi)
  751. basic_machine=hppa1.1-hitachi
  752. os=-hiuxwe2
  753. ;;
  754. paragon)
  755. basic_machine=i860-intel
  756. os=-osf
  757. ;;
  758. pbd)
  759. basic_machine=sparc-tti
  760. ;;
  761. pbb)
  762. basic_machine=m68k-tti
  763. ;;
  764. pc532 | pc532-*)
  765. basic_machine=ns32k-pc532
  766. ;;
  767. pentium | p5 | k5 | k6 | nexgen | viac3)
  768. basic_machine=i586-pc
  769. ;;
  770. pentiumpro | p6 | 6x86 | athlon | athlon_*)
  771. basic_machine=i686-pc
  772. ;;
  773. pentiumii | pentium2 | pentiumiii | pentium3)
  774. basic_machine=i686-pc
  775. ;;
  776. pentium4)
  777. basic_machine=i786-pc
  778. ;;
  779. pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
  780. basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
  781. ;;
  782. pentiumpro-* | p6-* | 6x86-* | athlon-*)
  783. basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
  784. ;;
  785. pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
  786. basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
  787. ;;
  788. pentium4-*)
  789. basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
  790. ;;
  791. pn)
  792. basic_machine=pn-gould
  793. ;;
  794. power) basic_machine=power-ibm
  795. ;;
  796. ppc) basic_machine=powerpc-unknown
  797. ;;
  798. ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
  799. ;;
  800. ppcle | powerpclittle | ppc-le | powerpc-little)
  801. basic_machine=powerpcle-unknown
  802. ;;
  803. ppcle-* | powerpclittle-*)
  804. basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
  805. ;;
  806. ppc64) basic_machine=powerpc64-unknown
  807. ;;
  808. ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
  809. ;;
  810. ppc64le | powerpc64little | ppc64-le | powerpc64-little)
  811. basic_machine=powerpc64le-unknown
  812. ;;
  813. ppc64le-* | powerpc64little-*)
  814. basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
  815. ;;
  816. ps2)
  817. basic_machine=i386-ibm
  818. ;;
  819. pw32)
  820. basic_machine=i586-unknown
  821. os=-pw32
  822. ;;
  823. rom68k)
  824. basic_machine=m68k-rom68k
  825. os=-coff
  826. ;;
  827. rm[46]00)
  828. basic_machine=mips-siemens
  829. ;;
  830. rtpc | rtpc-*)
  831. basic_machine=romp-ibm
  832. ;;
  833. s390 | s390-*)
  834. basic_machine=s390-ibm
  835. ;;
  836. s390x | s390x-*)
  837. basic_machine=s390x-ibm
  838. ;;
  839. sa29200)
  840. basic_machine=a29k-amd
  841. os=-udi
  842. ;;
  843. sb1)
  844. basic_machine=mipsisa64sb1-unknown
  845. ;;
  846. sb1el)
  847. basic_machine=mipsisa64sb1el-unknown
  848. ;;
  849. sei)
  850. basic_machine=mips-sei
  851. os=-seiux
  852. ;;
  853. sequent)
  854. basic_machine=i386-sequent
  855. ;;
  856. sh)
  857. basic_machine=sh-hitachi
  858. os=-hms
  859. ;;
  860. sh64)
  861. basic_machine=sh64-unknown
  862. ;;
  863. sparclite-wrs | simso-wrs)
  864. basic_machine=sparclite-wrs
  865. os=-vxworks
  866. ;;
  867. sps7)
  868. basic_machine=m68k-bull
  869. os=-sysv2
  870. ;;
  871. spur)
  872. basic_machine=spur-unknown
  873. ;;
  874. st2000)
  875. basic_machine=m68k-tandem
  876. ;;
  877. stratus)
  878. basic_machine=i860-stratus
  879. os=-sysv4
  880. ;;
  881. sun2)
  882. basic_machine=m68000-sun
  883. ;;
  884. sun2os3)
  885. basic_machine=m68000-sun
  886. os=-sunos3
  887. ;;
  888. sun2os4)
  889. basic_machine=m68000-sun
  890. os=-sunos4
  891. ;;
  892. sun3os3)
  893. basic_machine=m68k-sun
  894. os=-sunos3
  895. ;;
  896. sun3os4)
  897. basic_machine=m68k-sun
  898. os=-sunos4
  899. ;;
  900. sun4os3)
  901. basic_machine=sparc-sun
  902. os=-sunos3
  903. ;;
  904. sun4os4)
  905. basic_machine=sparc-sun
  906. os=-sunos4
  907. ;;
  908. sun4sol2)
  909. basic_machine=sparc-sun
  910. os=-solaris2
  911. ;;
  912. sun3 | sun3-*)
  913. basic_machine=m68k-sun
  914. ;;
  915. sun4)
  916. basic_machine=sparc-sun
  917. ;;
  918. sun386 | sun386i | roadrunner)
  919. basic_machine=i386-sun
  920. ;;
  921. sv1)
  922. basic_machine=sv1-cray
  923. os=-unicos
  924. ;;
  925. symmetry)
  926. basic_machine=i386-sequent
  927. os=-dynix
  928. ;;
  929. t3e)
  930. basic_machine=alphaev5-cray
  931. os=-unicos
  932. ;;
  933. t90)
  934. basic_machine=t90-cray
  935. os=-unicos
  936. ;;
  937. tic54x | c54x*)
  938. basic_machine=tic54x-unknown
  939. os=-coff
  940. ;;
  941. tic55x | c55x*)
  942. basic_machine=tic55x-unknown
  943. os=-coff
  944. ;;
  945. tic6x | c6x*)
  946. basic_machine=tic6x-unknown
  947. os=-coff
  948. ;;
  949. tx39)
  950. basic_machine=mipstx39-unknown
  951. ;;
  952. tx39el)
  953. basic_machine=mipstx39el-unknown
  954. ;;
  955. toad1)
  956. basic_machine=pdp10-xkl
  957. os=-tops20
  958. ;;
  959. tower | tower-32)
  960. basic_machine=m68k-ncr
  961. ;;
  962. tpf)
  963. basic_machine=s390x-ibm
  964. os=-tpf
  965. ;;
  966. udi29k)
  967. basic_machine=a29k-amd
  968. os=-udi
  969. ;;
  970. ultra3)
  971. basic_machine=a29k-nyu
  972. os=-sym1
  973. ;;
  974. v810 | necv810)
  975. basic_machine=v810-nec
  976. os=-none
  977. ;;
  978. vaxv)
  979. basic_machine=vax-dec
  980. os=-sysv
  981. ;;
  982. vms)
  983. basic_machine=vax-dec
  984. os=-vms
  985. ;;
  986. vpp*|vx|vx-*)
  987. basic_machine=f301-fujitsu
  988. ;;
  989. vxworks960)
  990. basic_machine=i960-wrs
  991. os=-vxworks
  992. ;;
  993. vxworks68)
  994. basic_machine=m68k-wrs
  995. os=-vxworks
  996. ;;
  997. vxworks29k)
  998. basic_machine=a29k-wrs
  999. os=-vxworks
  1000. ;;
  1001. w65*)
  1002. basic_machine=w65-wdc
  1003. os=-none
  1004. ;;
  1005. w89k-*)
  1006. basic_machine=hppa1.1-winbond
  1007. os=-proelf
  1008. ;;
  1009. xps | xps100)
  1010. basic_machine=xps100-honeywell
  1011. ;;
  1012. ymp)
  1013. basic_machine=ymp-cray
  1014. os=-unicos
  1015. ;;
  1016. z8k-*-coff)
  1017. basic_machine=z8k-unknown
  1018. os=-sim
  1019. ;;
  1020. none)
  1021. basic_machine=none-none
  1022. os=-none
  1023. ;;
  1024. # Here we handle the default manufacturer of certain CPU types.  It is in
  1025. # some cases the only manufacturer, in others, it is the most popular.
  1026. w89k)
  1027. basic_machine=hppa1.1-winbond
  1028. ;;
  1029. op50n)
  1030. basic_machine=hppa1.1-oki
  1031. ;;
  1032. op60c)
  1033. basic_machine=hppa1.1-oki
  1034. ;;
  1035. romp)
  1036. basic_machine=romp-ibm
  1037. ;;
  1038. mmix)
  1039. basic_machine=mmix-knuth
  1040. ;;
  1041. rs6000)
  1042. basic_machine=rs6000-ibm
  1043. ;;
  1044. vax)
  1045. basic_machine=vax-dec
  1046. ;;
  1047. pdp10)
  1048. # there are many clones, so DEC is not a safe bet
  1049. basic_machine=pdp10-unknown
  1050. ;;
  1051. pdp11)
  1052. basic_machine=pdp11-dec
  1053. ;;
  1054. we32k)
  1055. basic_machine=we32k-att
  1056. ;;
  1057. sh3 | sh4 | sh[34]eb | sh[1234]le | sh[23]ele)
  1058. basic_machine=sh-unknown
  1059. ;;
  1060. sh64)
  1061. basic_machine=sh64-unknown
  1062. ;;
  1063. sparc | sparcv8 | sparcv9 | sparcv9b)
  1064. basic_machine=sparc-sun
  1065. ;;
  1066. cydra)
  1067. basic_machine=cydra-cydrome
  1068. ;;
  1069. orion)
  1070. basic_machine=orion-highlevel
  1071. ;;
  1072. orion105)
  1073. basic_machine=clipper-highlevel
  1074. ;;
  1075. mac | mpw | mac-mpw)
  1076. basic_machine=m68k-apple
  1077. ;;
  1078. pmac | pmac-mpw)
  1079. basic_machine=powerpc-apple
  1080. ;;
  1081. *-unknown)
  1082. # Make sure to match an already-canonicalized machine name.
  1083. ;;
  1084. *)
  1085. echo Invalid configuration `$1': machine `$basic_machine' not recognized 1>&2
  1086. exit 1
  1087. ;;
  1088. esac
  1089. # Here we canonicalize certain aliases for manufacturers.
  1090. case $basic_machine in
  1091. *-digital*)
  1092. basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
  1093. ;;
  1094. *-commodore*)
  1095. basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
  1096. ;;
  1097. *)
  1098. ;;
  1099. esac
  1100. # Decode manufacturer-specific aliases for certain operating systems.
  1101. if [ x"$os" != x"" ]
  1102. then
  1103. case $os in
  1104.         # First match some system type aliases
  1105.         # that might get confused with valid system types.
  1106. # -solaris* is a basic system type, with this one exception.
  1107. -solaris1 | -solaris1.*)
  1108. os=`echo $os | sed -e 's|solaris1|sunos4|'`
  1109. ;;
  1110. -solaris)
  1111. os=-solaris2
  1112. ;;
  1113. -svr4*)
  1114. os=-sysv4
  1115. ;;
  1116. -unixware*)
  1117. os=-sysv4.2uw
  1118. ;;
  1119. -gnu/linux*)
  1120. os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
  1121. ;;
  1122. # First accept the basic system types.
  1123. # The portable systems comes first.
  1124. # Each alternative MUST END IN A *, to match a version number.
  1125. # -sysv* is not here because it comes later, after sysvr4.
  1126. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* 
  1127.       | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*
  1128.       | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* 
  1129.       | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* 
  1130.       | -aos* 
  1131.       | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* 
  1132.       | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* 
  1133.       | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* 
  1134.       | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* 
  1135.       | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* 
  1136.       | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* 
  1137.       | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* 
  1138.       | -chorusos* | -chorusrdb* 
  1139.       | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* 
  1140.       | -mingw32* | -linux-gnu* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* 
  1141.       | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* 
  1142.       | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* 
  1143.       | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* 
  1144.       | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* 
  1145.       | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* 
  1146.       | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly*)
  1147. # Remember, each alternative MUST END IN *, to match a version number.
  1148. ;;
  1149. -qnx*)
  1150. case $basic_machine in
  1151.     x86-* | i*86-*)
  1152. ;;
  1153.     *)
  1154. os=-nto$os
  1155. ;;
  1156. esac
  1157. ;;
  1158. -nto-qnx*)
  1159. ;;
  1160. -nto*)
  1161. os=`echo $os | sed -e 's|nto|nto-qnx|'`
  1162. ;;
  1163. -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* 
  1164.       | -windows* | -osx | -abug | -netware* | -os9* | -beos* 
  1165.       | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
  1166. ;;
  1167. -mac*)
  1168. os=`echo $os | sed -e 's|mac|macos|'`
  1169. ;;
  1170. -linux-dietlibc)
  1171. os=-linux-dietlibc
  1172. ;;
  1173. -linux*)
  1174. os=`echo $os | sed -e 's|linux|linux-gnu|'`
  1175. ;;
  1176. -sunos5*)
  1177. os=`echo $os | sed -e 's|sunos5|solaris2|'`
  1178. ;;
  1179. -sunos6*)
  1180. os=`echo $os | sed -e 's|sunos6|solaris3|'`
  1181. ;;
  1182. -opened*)
  1183. os=-openedition
  1184. ;;
  1185.         -os400*)
  1186. os=-os400
  1187. ;;
  1188. -wince*)
  1189. os=-wince
  1190. ;;
  1191. -osfrose*)
  1192. os=-osfrose
  1193. ;;
  1194. -osf*)
  1195. os=-osf
  1196. ;;
  1197. -utek*)
  1198. os=-bsd
  1199. ;;
  1200. -dynix*)
  1201. os=-bsd
  1202. ;;
  1203. -acis*)
  1204. os=-aos
  1205. ;;
  1206. -atheos*)
  1207. os=-atheos
  1208. ;;
  1209. -syllable*)
  1210. os=-syllable
  1211. ;;
  1212. -386bsd)
  1213. os=-bsd
  1214. ;;
  1215. -ctix* | -uts*)
  1216. os=-sysv
  1217. ;;
  1218. -nova*)
  1219. os=-rtmk-nova
  1220. ;;
  1221. -ns2 )
  1222. os=-nextstep2
  1223. ;;
  1224. -nsk*)
  1225. os=-nsk
  1226. ;;
  1227. # Preserve the version number of sinix5.
  1228. -sinix5.*)
  1229. os=`echo $os | sed -e 's|sinix|sysv|'`
  1230. ;;
  1231. -sinix*)
  1232. os=-sysv4
  1233. ;;
  1234.         -tpf*)
  1235. os=-tpf
  1236. ;;
  1237. -triton*)
  1238. os=-sysv3
  1239. ;;
  1240. -oss*)
  1241. os=-sysv3
  1242. ;;
  1243. -svr4)
  1244. os=-sysv4
  1245. ;;
  1246. -svr3)
  1247. os=-sysv3
  1248. ;;
  1249. -sysvr4)
  1250. os=-sysv4
  1251. ;;
  1252. # This must come after -sysvr4.
  1253. -sysv*)
  1254. ;;
  1255. -ose*)
  1256. os=-ose
  1257. ;;
  1258. -es1800*)
  1259. os=-ose
  1260. ;;
  1261. -xenix)
  1262. os=-xenix
  1263. ;;
  1264. -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
  1265. os=-mint
  1266. ;;
  1267. -aros*)
  1268. os=-aros
  1269. ;;
  1270. -kaos*)
  1271. os=-kaos
  1272. ;;
  1273. -none)
  1274. ;;
  1275. *)
  1276. # Get rid of the `-' at the beginning of $os.
  1277. os=`echo $os | sed 's/[^-]*-//'`
  1278. echo Invalid configuration `$1': system `$os' not recognized 1>&2
  1279. exit 1
  1280. ;;
  1281. esac
  1282. else
  1283. # Here we handle the default operating systems that come with various machines.
  1284. # The value should be what the vendor currently ships out the door with their
  1285. # machine or put another way, the most popular os provided with the machine.
  1286. # Note that if you're going to try to match "-MANUFACTURER" here (say,
  1287. # "-sun"), then you have to tell the case statement up towards the top
  1288. # that MANUFACTURER isn't an operating system.  Otherwise, code above
  1289. # will signal an error saying that MANUFACTURER isn't an operating
  1290. # system, and we'll never get to this point.
  1291. case $basic_machine in
  1292. *-acorn)
  1293. os=-riscix1.2
  1294. ;;
  1295. arm*-rebel)
  1296. os=-linux
  1297. ;;
  1298. arm*-semi)
  1299. os=-aout
  1300. ;;
  1301.     c4x-* | tic4x-*)
  1302.         os=-coff
  1303.         ;;
  1304. # This must come before the *-dec entry.
  1305. pdp10-*)
  1306. os=-tops20
  1307. ;;
  1308. pdp11-*)
  1309. os=-none
  1310. ;;
  1311. *-dec | vax-*)
  1312. os=-ultrix4.2
  1313. ;;
  1314. m68*-apollo)
  1315. os=-domain
  1316. ;;
  1317. i386-sun)
  1318. os=-sunos4.0.2
  1319. ;;
  1320. m68000-sun)
  1321. os=-sunos3
  1322. # This also exists in the configure program, but was not the
  1323. # default.
  1324. # os=-sunos4
  1325. ;;
  1326. m68*-cisco)
  1327. os=-aout
  1328. ;;
  1329. mips*-cisco)
  1330. os=-elf
  1331. ;;
  1332. mips*-*)
  1333. os=-elf
  1334. ;;
  1335. or32-*)
  1336. os=-coff
  1337. ;;
  1338. *-tti) # must be before sparc entry or we get the wrong os.
  1339. os=-sysv3
  1340. ;;
  1341. sparc-* | *-sun)
  1342. os=-sunos4.1.1
  1343. ;;
  1344. *-be)
  1345. os=-beos
  1346. ;;
  1347. *-ibm)
  1348. os=-aix
  1349. ;;
  1350.      *-knuth)
  1351. os=-mmixware
  1352. ;;
  1353. *-wec)
  1354. os=-proelf
  1355. ;;
  1356. *-winbond)
  1357. os=-proelf
  1358. ;;
  1359. *-oki)
  1360. os=-proelf
  1361. ;;
  1362. *-hp)
  1363. os=-hpux
  1364. ;;
  1365. *-hitachi)
  1366. os=-hiux
  1367. ;;
  1368. i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
  1369. os=-sysv
  1370. ;;
  1371. *-cbm)
  1372. os=-amigaos
  1373. ;;
  1374. *-dg)
  1375. os=-dgux
  1376. ;;
  1377. *-dolphin)
  1378. os=-sysv3
  1379. ;;
  1380. m68k-ccur)
  1381. os=-rtu
  1382. ;;
  1383. m88k-omron*)
  1384. os=-luna
  1385. ;;
  1386. *-next )
  1387. os=-nextstep
  1388. ;;
  1389. *-sequent)
  1390. os=-ptx
  1391. ;;
  1392. *-crds)
  1393. os=-unos
  1394. ;;
  1395. *-ns)
  1396. os=-genix
  1397. ;;
  1398. i370-*)
  1399. os=-mvs
  1400. ;;
  1401. *-next)
  1402. os=-nextstep3
  1403. ;;
  1404. *-gould)
  1405. os=-sysv
  1406. ;;
  1407. *-highlevel)
  1408. os=-bsd
  1409. ;;
  1410. *-encore)
  1411. os=-bsd
  1412. ;;
  1413. *-sgi)
  1414. os=-irix
  1415. ;;
  1416. *-siemens)
  1417. os=-sysv4
  1418. ;;
  1419. *-masscomp)
  1420. os=-rtu
  1421. ;;
  1422. f30[01]-fujitsu | f700-fujitsu)
  1423. os=-uxpv
  1424. ;;
  1425. *-rom68k)
  1426. os=-coff
  1427. ;;
  1428. *-*bug)
  1429. os=-coff
  1430. ;;
  1431. *-apple)
  1432. os=-macos
  1433. ;;
  1434. *-atari*)
  1435. os=-mint
  1436. ;;
  1437. *)
  1438. os=-none
  1439. ;;
  1440. esac
  1441. fi
  1442. # Here we handle the case where we know the os, and the CPU type, but not the
  1443. # manufacturer.  We pick the logical manufacturer.
  1444. vendor=unknown
  1445. case $basic_machine in
  1446. *-unknown)
  1447. case $os in
  1448. -riscix*)
  1449. vendor=acorn
  1450. ;;
  1451. -sunos*)
  1452. vendor=sun
  1453. ;;
  1454. -aix*)
  1455. vendor=ibm
  1456. ;;
  1457. -beos*)
  1458. vendor=be
  1459. ;;
  1460. -hpux*)
  1461. vendor=hp
  1462. ;;
  1463. -mpeix*)
  1464. vendor=hp
  1465. ;;
  1466. -hiux*)
  1467. vendor=hitachi
  1468. ;;
  1469. -unos*)
  1470. vendor=crds
  1471. ;;
  1472. -dgux*)
  1473. vendor=dg
  1474. ;;
  1475. -luna*)
  1476. vendor=omron
  1477. ;;
  1478. -genix*)
  1479. vendor=ns
  1480. ;;
  1481. -mvs* | -opened*)
  1482. vendor=ibm
  1483. ;;
  1484. -os400*)
  1485. vendor=ibm
  1486. ;;
  1487. -ptx*)
  1488. vendor=sequent
  1489. ;;
  1490. -tpf*)
  1491. vendor=ibm
  1492. ;;
  1493. -vxsim* | -vxworks* | -windiss*)
  1494. vendor=wrs
  1495. ;;
  1496. -aux*)
  1497. vendor=apple
  1498. ;;
  1499. -hms*)
  1500. vendor=hitachi
  1501. ;;
  1502. -mpw* | -macos*)
  1503. vendor=apple
  1504. ;;
  1505. -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
  1506. vendor=atari
  1507. ;;
  1508. -vos*)
  1509. vendor=stratus
  1510. ;;
  1511. esac
  1512. basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
  1513. ;;
  1514. esac
  1515. echo $basic_machine$os
  1516. exit 0
  1517. # Local variables:
  1518. # eval: (add-hook 'write-file-hooks 'time-stamp)
  1519. # time-stamp-start: "timestamp='"
  1520. # time-stamp-format: "%:y-%02m-%02d"
  1521. # time-stamp-end: "'"
  1522. # End: