config.sub
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:31k
源码类别:

多媒体编程

开发平台:

Visual C++

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