config.guess
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:37k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. #! /bin/sh
  2. # Attempt to guess a canonical system name.
  3. #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
  4. #   Free Software Foundation, Inc.
  5. timestamp='2001-07-12'
  6. # This file is free software; you can redistribute it and/or modify it
  7. # under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful, but
  12. # WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14. # General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program; if not, write to the Free Software
  18. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19. #
  20. # As a special exception to the GNU General Public License, if you
  21. # distribute this file as part of a program that contains a
  22. # configuration script generated by Autoconf, you may include it under
  23. # the same distribution terms that you use for the rest of that program.
  24. # Written by Per Bothner <bothner@cygnus.com>.
  25. # Please send patches to <config-patches@gnu.org>.
  26. #
  27. # This script attempts to guess a canonical system name similar to
  28. # config.sub.  If it succeeds, it prints the system name on stdout, and
  29. # exits with 0.  Otherwise, it exits with 1.
  30. #
  31. # The plan is that this can be called by configure scripts if you
  32. # don't specify an explicit build system type.
  33. me=`echo "$0" | sed -e 's,.*/,,'`
  34. usage="
  35. Usage: $0 [OPTION]
  36. Output the configuration name of the system `$me' is run on.
  37. Operation modes:
  38.   -h, --help         print this help, then exit
  39.   -t, --time-stamp   print date of last modification, then exit
  40.   -v, --version      print version number, then exit
  41. Report bugs and patches to <config-patches@gnu.org>."
  42. version="
  43. GNU config.guess ($timestamp)
  44. Originally written by Per Bothner.
  45. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
  46. Free Software Foundation, Inc.
  47. This is free software; see the source for copying conditions.  There is NO
  48. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
  49. help="
  50. Try `$me --help' for more information."
  51. # Parse command line
  52. while test $# -gt 0 ; do
  53.   case $1 in
  54.     --time-stamp | --time* | -t )
  55.        echo "$timestamp" ; exit 0 ;;
  56.     --version | -v )
  57.        echo "$version" ; exit 0 ;;
  58.     --help | --h* | -h )
  59.        echo "$usage"; exit 0 ;;
  60.     -- )     # Stop option processing
  61.        shift; break ;;
  62.     - ) # Use stdin as input.
  63.        break ;;
  64.     -* )
  65.        echo "$me: invalid option $1$help" >&2
  66.        exit 1 ;;
  67.     * )
  68.        break ;;
  69.   esac
  70. done
  71. if test $# != 0; then
  72.   echo "$me: too many arguments$help" >&2
  73.   exit 1
  74. fi
  75. dummy=dummy-$$
  76. trap 'rm -f $dummy.c $dummy.o $dummy.rel $dummy; exit 1' 1 2 15
  77. # CC_FOR_BUILD -- compiler used by this script.
  78. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still
  79. # use `HOST_CC' if defined, but it is deprecated.
  80. set_cc_for_build='case $CC_FOR_BUILD,$HOST_CC,$CC in
  81.  ,,)    echo "int dummy(){}" > $dummy.c ;
  82. for c in cc gcc c89 ; do
  83.   ($c $dummy.c -c -o $dummy.o) >/dev/null 2>&1 ;
  84.   if test $? = 0 ; then
  85.      CC_FOR_BUILD="$c"; break ;
  86.   fi ;
  87. done ;
  88. rm -f $dummy.c $dummy.o $dummy.rel ;
  89. if test x"$CC_FOR_BUILD" = x ; then
  90.   CC_FOR_BUILD=no_compiler_found ;
  91. fi
  92. ;;
  93.  ,,*)   CC_FOR_BUILD=$CC ;;
  94.  ,*,*)  CC_FOR_BUILD=$HOST_CC ;;
  95. esac'
  96. # This is needed to find uname on a Pyramid OSx when run in the BSD universe.
  97. # (ghazi@noc.rutgers.edu 1994-08-24)
  98. if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
  99. PATH=$PATH:/.attbin ; export PATH
  100. fi
  101. UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
  102. UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
  103. UNAME_SYSTEM=`(uname -s) 2>/dev/null`  || UNAME_SYSTEM=unknown
  104. UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
  105. # Note: order is significant - the case branches are not exclusive.
  106. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
  107.     *:NetBSD:*:*)
  108. # Netbsd (nbsd) targets should (where applicable) match one or
  109. # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*,
  110. # *-*-netbsdecoff* and *-*-netbsd*.  For targets that recently
  111. # switched to ELF, *-*-netbsd* would select the old
  112. # object file format.  This provides both forward
  113. # compatibility and a consistent mechanism for selecting the
  114. # object file format.
  115. # Determine the machine/vendor (is the vendor relevant).
  116. case "${UNAME_MACHINE}" in
  117.     amiga) machine=m68k-unknown ;;
  118.     arm32) machine=arm-unknown ;;
  119.     atari*) machine=m68k-atari ;;
  120.     sun3*) machine=m68k-sun ;;
  121.     mac68k) machine=m68k-apple ;;
  122.     macppc) machine=powerpc-apple ;;
  123.     hp3[0-9][05]) machine=m68k-hp ;;
  124.     ibmrt|romp-ibm) machine=romp-ibm ;;
  125.     *) machine=${UNAME_MACHINE}-unknown ;;
  126. esac
  127. # The Operating System including object format, if it has switched
  128. # to ELF recently, or will in the future.
  129. case "${UNAME_MACHINE}" in
  130.     i386|sparc|amiga|arm*|hp300|mvme68k|vax|atari|luna68k|mac68k|news68k|next68k|pc532|sun3*|x68k)
  131. eval $set_cc_for_build
  132. if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null 
  133. | grep __ELF__ >/dev/null
  134. then
  135.     # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout).
  136.     # Return netbsd for either.  FIX?
  137.     os=netbsd
  138. else
  139.     os=netbsdelf
  140. fi
  141. ;;
  142.     *)
  143.         os=netbsd
  144. ;;
  145. esac
  146. # The OS release
  147. release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/./'`
  148. # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
  149. # contains redundant information, the shorter form:
  150. # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
  151. echo "${machine}-${os}${release}"
  152. exit 0 ;;
  153.     alpha:OSF1:*:*)
  154. if test $UNAME_RELEASE = "V4.0"; then
  155. UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
  156. fi
  157. # A Vn.n version is a released version.
  158. # A Tn.n version is a released field test version.
  159. # A Xn.n version is an unreleased experimental baselevel.
  160. # 1.2 uses "1.2" for uname -r.
  161. cat <<EOF >$dummy.s
  162. .data
  163. $Lformat:
  164. .byte 37,100,45,37,120,10,0 # "%d-%xn"
  165. .text
  166. .globl main
  167. .align 4
  168. .ent main
  169. main:
  170. .frame $30,16,$26,0
  171. ldgp $29,0($27)
  172. .prologue 1
  173. .long 0x47e03d80 # implver $0
  174. lda $2,-1
  175. .long 0x47e20c21 # amask $2,$1
  176. lda $16,$Lformat
  177. mov $0,$17
  178. not $1,$18
  179. jsr $26,printf
  180. ldgp $29,0($26)
  181. mov 0,$16
  182. jsr $26,exit
  183. .end main
  184. EOF
  185. eval $set_cc_for_build
  186. $CC_FOR_BUILD $dummy.s -o $dummy 2>/dev/null
  187. if test "$?" = 0 ; then
  188. case `./$dummy` in
  189. 0-0)
  190. UNAME_MACHINE="alpha"
  191. ;;
  192. 1-0)
  193. UNAME_MACHINE="alphaev5"
  194. ;;
  195. 1-1)
  196. UNAME_MACHINE="alphaev56"
  197. ;;
  198. 1-101)
  199. UNAME_MACHINE="alphapca56"
  200. ;;
  201. 2-303)
  202. UNAME_MACHINE="alphaev6"
  203. ;;
  204. 2-307)
  205. UNAME_MACHINE="alphaev67"
  206. ;;
  207. esac
  208. fi
  209. rm -f $dummy.s $dummy
  210. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
  211. exit 0 ;;
  212.     Alpha *:Windows_NT*:*)
  213. # How do we know it's Interix rather than the generic POSIX subsystem?
  214. # Should we change UNAME_MACHINE based on the output of uname instead
  215. # of the specific Alpha model?
  216. echo alpha-pc-interix
  217. exit 0 ;;
  218.     21064:Windows_NT:50:3)
  219. echo alpha-dec-winnt3.5
  220. exit 0 ;;
  221.     Amiga*:UNIX_System_V:4.0:*)
  222. echo m68k-unknown-sysv4
  223. exit 0;;
  224.     amiga:OpenBSD:*:*)
  225. echo m68k-unknown-openbsd${UNAME_RELEASE}
  226. exit 0 ;;
  227.     *:[Aa]miga[Oo][Ss]:*:*)
  228. echo ${UNAME_MACHINE}-unknown-amigaos
  229. exit 0 ;;
  230.     arc64:OpenBSD:*:*)
  231. echo mips64el-unknown-openbsd${UNAME_RELEASE}
  232. exit 0 ;;
  233.     arc:OpenBSD:*:*)
  234. echo mipsel-unknown-openbsd${UNAME_RELEASE}
  235. exit 0 ;;
  236.     hkmips:OpenBSD:*:*)
  237. echo mips-unknown-openbsd${UNAME_RELEASE}
  238. exit 0 ;;
  239.     pmax:OpenBSD:*:*)
  240. echo mipsel-unknown-openbsd${UNAME_RELEASE}
  241. exit 0 ;;
  242.     sgi:OpenBSD:*:*)
  243. echo mips-unknown-openbsd${UNAME_RELEASE}
  244. exit 0 ;;
  245.     wgrisc:OpenBSD:*:*)
  246. echo mipsel-unknown-openbsd${UNAME_RELEASE}
  247. exit 0 ;;
  248.     *:OS/390:*:*)
  249. echo i370-ibm-openedition
  250. exit 0 ;;
  251.     arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
  252. echo arm-acorn-riscix${UNAME_RELEASE}
  253. exit 0;;
  254.     SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*)
  255. echo hppa1.1-hitachi-hiuxmpp
  256. exit 0;;
  257.     Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*)
  258. # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.
  259. if test "`(/bin/universe) 2>/dev/null`" = att ; then
  260. echo pyramid-pyramid-sysv3
  261. else
  262. echo pyramid-pyramid-bsd
  263. fi
  264. exit 0 ;;
  265.     NILE*:*:*:dcosx)
  266. echo pyramid-pyramid-svr4
  267. exit 0 ;;
  268.     sun4H:SunOS:5.*:*)
  269. echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
  270. exit 0 ;;
  271.     sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
  272. echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
  273. exit 0 ;;
  274.     i86pc:SunOS:5.*:*)
  275. echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
  276. exit 0 ;;
  277.     sun4*:SunOS:6*:*)
  278. # According to config.sub, this is the proper way to canonicalize
  279. # SunOS6.  Hard to guess exactly what SunOS6 will be like, but
  280. # it's likely to be more like Solaris than SunOS4.
  281. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
  282. exit 0 ;;
  283.     sun4*:SunOS:*:*)
  284. case "`/usr/bin/arch -k`" in
  285.     Series*|S4*)
  286. UNAME_RELEASE=`uname -v`
  287. ;;
  288. esac
  289. # Japanese Language versions have a version number like `4.1.3-JL'.
  290. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
  291. exit 0 ;;
  292.     sun3*:SunOS:*:*)
  293. echo m68k-sun-sunos${UNAME_RELEASE}
  294. exit 0 ;;
  295.     sun*:*:4.2BSD:*)
  296. UNAME_RELEASE=`(head -1 /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
  297. test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
  298. case "`/bin/arch`" in
  299.     sun3)
  300. echo m68k-sun-sunos${UNAME_RELEASE}
  301. ;;
  302.     sun4)
  303. echo sparc-sun-sunos${UNAME_RELEASE}
  304. ;;
  305. esac
  306. exit 0 ;;
  307.     aushp:SunOS:*:*)
  308. echo sparc-auspex-sunos${UNAME_RELEASE}
  309. exit 0 ;;
  310.     atari*:OpenBSD:*:*)
  311. echo m68k-unknown-openbsd${UNAME_RELEASE}
  312. exit 0 ;;
  313.     # The situation for MiNT is a little confusing.  The machine name
  314.     # can be virtually everything (everything which is not
  315.     # "atarist" or "atariste" at least should have a processor
  316.     # > m68000).  The system name ranges from "MiNT" over "FreeMiNT"
  317.     # to the lowercase version "mint" (or "freemint").  Finally
  318.     # the system name "TOS" denotes a system which is actually not
  319.     # MiNT.  But MiNT is downward compatible to TOS, so this should
  320.     # be no problem.
  321.     atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
  322.         echo m68k-atari-mint${UNAME_RELEASE}
  323. exit 0 ;;
  324.     atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
  325. echo m68k-atari-mint${UNAME_RELEASE}
  326.         exit 0 ;;
  327.     *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
  328.         echo m68k-atari-mint${UNAME_RELEASE}
  329. exit 0 ;;
  330.     milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
  331.         echo m68k-milan-mint${UNAME_RELEASE}
  332.         exit 0 ;;
  333.     hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
  334.         echo m68k-hades-mint${UNAME_RELEASE}
  335.         exit 0 ;;
  336.     *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
  337.         echo m68k-unknown-mint${UNAME_RELEASE}
  338.         exit 0 ;;
  339.     sun3*:OpenBSD:*:*)
  340. echo m68k-unknown-openbsd${UNAME_RELEASE}
  341. exit 0 ;;
  342.     mac68k:OpenBSD:*:*)
  343. echo m68k-unknown-openbsd${UNAME_RELEASE}
  344. exit 0 ;;
  345.     mvme68k:OpenBSD:*:*)
  346. echo m68k-unknown-openbsd${UNAME_RELEASE}
  347. exit 0 ;;
  348.     mvme88k:OpenBSD:*:*)
  349. echo m88k-unknown-openbsd${UNAME_RELEASE}
  350. exit 0 ;;
  351.     powerpc:machten:*:*)
  352. echo powerpc-apple-machten${UNAME_RELEASE}
  353. exit 0 ;;
  354.     RISC*:Mach:*:*)
  355. echo mips-dec-mach_bsd4.3
  356. exit 0 ;;
  357.     RISC*:ULTRIX:*:*)
  358. echo mips-dec-ultrix${UNAME_RELEASE}
  359. exit 0 ;;
  360.     VAX*:ULTRIX*:*:*)
  361. echo vax-dec-ultrix${UNAME_RELEASE}
  362. exit 0 ;;
  363.     2020:CLIX:*:* | 2430:CLIX:*:*)
  364. echo clipper-intergraph-clix${UNAME_RELEASE}
  365. exit 0 ;;
  366.     mips:*:*:UMIPS | mips:*:*:RISCos)
  367. sed 's/^ //' << EOF >$dummy.c
  368. #ifdef __cplusplus
  369. #include <stdio.h>  /* for printf() prototype */
  370. int main (int argc, char *argv[]) {
  371. #else
  372. int main (argc, argv) int argc; char *argv[]; {
  373. #endif
  374. #if defined (host_mips) && defined (MIPSEB)
  375. #if defined (SYSTYPE_SYSV)
  376.   printf ("mips-mips-riscos%ssysvn", argv[1]); exit (0);
  377. #endif
  378. #if defined (SYSTYPE_SVR4)
  379.   printf ("mips-mips-riscos%ssvr4n", argv[1]); exit (0);
  380. #endif
  381. #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)
  382.   printf ("mips-mips-riscos%sbsdn", argv[1]); exit (0);
  383. #endif
  384. #endif
  385.   exit (-1);
  386. }
  387. EOF
  388. eval $set_cc_for_build
  389. $CC_FOR_BUILD $dummy.c -o $dummy 
  390.   && ./$dummy `echo "${UNAME_RELEASE}" | sed -n 's/([0-9]*).*/1/p'` 
  391.   && rm -f $dummy.c $dummy && exit 0
  392. rm -f $dummy.c $dummy
  393. echo mips-mips-riscos${UNAME_RELEASE}
  394. exit 0 ;;
  395.     Motorola:PowerMAX_OS:*:*)
  396. echo powerpc-motorola-powermax
  397. exit 0 ;;
  398.     Night_Hawk:Power_UNIX:*:*)
  399. echo powerpc-harris-powerunix
  400. exit 0 ;;
  401.     m88k:CX/UX:7*:*)
  402. echo m88k-harris-cxux7
  403. exit 0 ;;
  404.     m88k:*:4*:R4*)
  405. echo m88k-motorola-sysv4
  406. exit 0 ;;
  407.     m88k:*:3*:R3*)
  408. echo m88k-motorola-sysv3
  409. exit 0 ;;
  410.     AViiON:dgux:*:*)
  411.         # DG/UX returns AViiON for all architectures
  412.         UNAME_PROCESSOR=`/usr/bin/uname -p`
  413. if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ]
  414. then
  415.     if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || 
  416.        [ ${TARGET_BINARY_INTERFACE}x = x ]
  417.     then
  418. echo m88k-dg-dgux${UNAME_RELEASE}
  419.     else
  420. echo m88k-dg-dguxbcs${UNAME_RELEASE}
  421.     fi
  422. else
  423.     echo i586-dg-dgux${UNAME_RELEASE}
  424. fi
  425.   exit 0 ;;
  426.     M88*:DolphinOS:*:*) # DolphinOS (SVR3)
  427. echo m88k-dolphin-sysv3
  428. exit 0 ;;
  429.     M88*:*:R3*:*)
  430. # Delta 88k system running SVR3
  431. echo m88k-motorola-sysv3
  432. exit 0 ;;
  433.     XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)
  434. echo m88k-tektronix-sysv3
  435. exit 0 ;;
  436.     Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
  437. echo m68k-tektronix-bsd
  438. exit 0 ;;
  439.     *:IRIX*:*:*)
  440. echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
  441. exit 0 ;;
  442.     ????????:AIX?:[12].1:2)   # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
  443. echo romp-ibm-aix      # uname -m gives an 8 hex-code CPU id
  444. exit 0 ;;              # Note that: echo "'`uname -s`'" gives 'AIX '
  445.     i*86:AIX:*:*)
  446. echo i386-ibm-aix
  447. exit 0 ;;
  448.     ia64:AIX:*:*)
  449. if [ -x /usr/bin/oslevel ] ; then
  450. IBM_REV=`/usr/bin/oslevel`
  451. else
  452. IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
  453. fi
  454. echo ${UNAME_MACHINE}-ibm-aix${IBM_REV}
  455. exit 0 ;;
  456.     *:AIX:2:3)
  457. if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
  458. sed 's/^ //' << EOF >$dummy.c
  459. #include <sys/systemcfg.h>
  460. main()
  461. {
  462. if (!__power_pc())
  463. exit(1);
  464. puts("powerpc-ibm-aix3.2.5");
  465. exit(0);
  466. }
  467. EOF
  468. eval $set_cc_for_build
  469. $CC_FOR_BUILD $dummy.c -o $dummy && ./$dummy && rm -f $dummy.c $dummy && exit 0
  470. rm -f $dummy.c $dummy
  471. echo rs6000-ibm-aix3.2.5
  472. elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
  473. echo rs6000-ibm-aix3.2.4
  474. else
  475. echo rs6000-ibm-aix3.2
  476. fi
  477. exit 0 ;;
  478.     *:AIX:*:[45])
  479. IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | head -1 | awk '{ print $1 }'`
  480. if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
  481. IBM_ARCH=rs6000
  482. else
  483. IBM_ARCH=powerpc
  484. fi
  485. if [ -x /usr/bin/oslevel ] ; then
  486. IBM_REV=`/usr/bin/oslevel`
  487. else
  488. IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
  489. fi
  490. echo ${IBM_ARCH}-ibm-aix${IBM_REV}
  491. exit 0 ;;
  492.     *:AIX:*:*)
  493. echo rs6000-ibm-aix
  494. exit 0 ;;
  495.     ibmrt:4.4BSD:*|romp-ibm:BSD:*)
  496. echo romp-ibm-bsd4.4
  497. exit 0 ;;
  498.     ibmrt:*BSD:*|romp-ibm:BSD:*)            # covers RT/PC BSD and
  499. echo romp-ibm-bsd${UNAME_RELEASE}   # 4.3 with uname added to
  500. exit 0 ;;                           # report: romp-ibm BSD 4.3
  501.     *:BOSX:*:*)
  502. echo rs6000-bull-bosx
  503. exit 0 ;;
  504.     DPX/2?00:B.O.S.:*:*)
  505. echo m68k-bull-sysv3
  506. exit 0 ;;
  507.     9000/[34]??:4.3bsd:1.*:*)
  508. echo m68k-hp-bsd
  509. exit 0 ;;
  510.     hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
  511. echo m68k-hp-bsd4.4
  512. exit 0 ;;
  513.     9000/[34678]??:HP-UX:*:*)
  514. HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
  515. case "${UNAME_MACHINE}" in
  516.     9000/31? )            HP_ARCH=m68000 ;;
  517.     9000/[34]?? )         HP_ARCH=m68k ;;
  518.     9000/[678][0-9][0-9])
  519.               case "${HPUX_REV}" in
  520.                 11.[0-9][0-9])
  521.                   if [ -x /usr/bin/getconf ]; then
  522.                     sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
  523.                     sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
  524.                     case "${sc_cpu_version}" in
  525.                       523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0
  526.                       528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1
  527.                       532)                      # CPU_PA_RISC2_0
  528.                         case "${sc_kernel_bits}" in
  529.                           32) HP_ARCH="hppa2.0n" ;;
  530.                           64) HP_ARCH="hppa2.0w" ;;
  531.                         esac ;;
  532.                     esac
  533.                   fi ;;
  534.               esac
  535.               if [ "${HP_ARCH}" = "" ]; then
  536.               sed 's/^              //' << EOF >$dummy.c
  537.               #define _HPUX_SOURCE
  538.               #include <stdlib.h>
  539.               #include <unistd.h>
  540.               int main ()
  541.               {
  542.               #if defined(_SC_KERNEL_BITS)
  543.                   long bits = sysconf(_SC_KERNEL_BITS);
  544.               #endif
  545.                   long cpu  = sysconf (_SC_CPU_VERSION);
  546.                   switch (cpu)
  547.                {
  548.                case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
  549.                case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
  550.                case CPU_PA_RISC2_0:
  551.               #if defined(_SC_KERNEL_BITS)
  552.                    switch (bits)
  553.                {
  554.                case 64: puts ("hppa2.0w"); break;
  555.                case 32: puts ("hppa2.0n"); break;
  556.                default: puts ("hppa2.0"); break;
  557.                } break;
  558.               #else  /* !defined(_SC_KERNEL_BITS) */
  559.                    puts ("hppa2.0"); break;
  560.               #endif
  561.                default: puts ("hppa1.0"); break;
  562.                }
  563.                   exit (0);
  564.               }
  565. EOF
  566. eval $set_cc_for_build
  567. (CCOPTS= $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null ) && HP_ARCH=`./$dummy`
  568. if test -z "$HP_ARCH"; then HP_ARCH=hppa; fi
  569. rm -f $dummy.c $dummy
  570. fi ;;
  571. esac
  572. echo ${HP_ARCH}-hp-hpux${HPUX_REV}
  573. exit 0 ;;
  574.     ia64:HP-UX:*:*)
  575. HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
  576. echo ia64-hp-hpux${HPUX_REV}
  577. exit 0 ;;
  578.     3050*:HI-UX:*:*)
  579. sed 's/^ //' << EOF >$dummy.c
  580. #include <unistd.h>
  581. int
  582. main ()
  583. {
  584.   long cpu = sysconf (_SC_CPU_VERSION);
  585.   /* The order matters, because CPU_IS_HP_MC68K erroneously returns
  586.      true for CPU_PA_RISC1_0.  CPU_IS_PA_RISC returns correct
  587.      results, however.  */
  588.   if (CPU_IS_PA_RISC (cpu))
  589.     {
  590.       switch (cpu)
  591. {
  592.   case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break;
  593.   case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break;
  594.   case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break;
  595.   default: puts ("hppa-hitachi-hiuxwe2"); break;
  596. }
  597.     }
  598.   else if (CPU_IS_HP_MC68K (cpu))
  599.     puts ("m68k-hitachi-hiuxwe2");
  600.   else puts ("unknown-hitachi-hiuxwe2");
  601.   exit (0);
  602. }
  603. EOF
  604. eval $set_cc_for_build
  605. $CC_FOR_BUILD $dummy.c -o $dummy && ./$dummy && rm -f $dummy.c $dummy && exit 0
  606. rm -f $dummy.c $dummy
  607. echo unknown-hitachi-hiuxwe2
  608. exit 0 ;;
  609.     9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
  610. echo hppa1.1-hp-bsd
  611. exit 0 ;;
  612.     9000/8??:4.3bsd:*:*)
  613. echo hppa1.0-hp-bsd
  614. exit 0 ;;
  615.     *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*)
  616. echo hppa1.0-hp-mpeix
  617. exit 0 ;;
  618.     hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
  619. echo hppa1.1-hp-osf
  620. exit 0 ;;
  621.     hp8??:OSF1:*:*)
  622. echo hppa1.0-hp-osf
  623. exit 0 ;;
  624.     i*86:OSF1:*:*)
  625. if [ -x /usr/sbin/sysversion ] ; then
  626.     echo ${UNAME_MACHINE}-unknown-osf1mk
  627. else
  628.     echo ${UNAME_MACHINE}-unknown-osf1
  629. fi
  630. exit 0 ;;
  631.     parisc*:Lites*:*:*)
  632. echo hppa1.1-hp-lites
  633. exit 0 ;;
  634.     hppa*:OpenBSD:*:*)
  635. echo hppa-unknown-openbsd
  636. exit 0 ;;
  637.     C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
  638. echo c1-convex-bsd
  639.         exit 0 ;;
  640.     C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
  641. if getsysinfo -f scalar_acc
  642. then echo c32-convex-bsd
  643. else echo c2-convex-bsd
  644. fi
  645.         exit 0 ;;
  646.     C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
  647. echo c34-convex-bsd
  648.         exit 0 ;;
  649.     C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
  650. echo c38-convex-bsd
  651.         exit 0 ;;
  652.     C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
  653. echo c4-convex-bsd
  654.         exit 0 ;;
  655.     CRAY*X-MP:*:*:*)
  656. echo xmp-cray-unicos
  657.         exit 0 ;;
  658.     CRAY*Y-MP:*:*:*)
  659. echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/.[^.]*$/.X/'
  660. exit 0 ;;
  661.     CRAY*[A-Z]90:*:*:*)
  662. echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} 
  663. | sed -e 's/CRAY.*([A-Z]90)/1/' 
  664.       -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ 
  665.       -e 's/.[^.]*$/.X/'
  666. exit 0 ;;
  667.     CRAY*TS:*:*:*)
  668. echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/.[^.]*$/.X/'
  669. exit 0 ;;
  670.     CRAY*T3D:*:*:*)
  671. echo alpha-cray-unicosmk${UNAME_RELEASE} | sed -e 's/.[^.]*$/.X/'
  672. exit 0 ;;
  673.     CRAY*T3E:*:*:*)
  674. echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/.[^.]*$/.X/'
  675. exit 0 ;;
  676.     CRAY*SV1:*:*:*)
  677. echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/.[^.]*$/.X/'
  678. exit 0 ;;
  679.     CRAY-2:*:*:*)
  680. echo cray2-cray-unicos
  681.         exit 0 ;;
  682.     F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
  683. FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
  684.         FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's////'`
  685.         FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
  686.         echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
  687.         exit 0 ;;
  688.     hp300:OpenBSD:*:*)
  689. echo m68k-unknown-openbsd${UNAME_RELEASE}
  690. exit 0 ;;
  691.     i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend Embedded/OS:*:*)
  692. echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
  693. exit 0 ;;
  694.     sparc*:BSD/OS:*:*)
  695. echo sparc-unknown-bsdi${UNAME_RELEASE}
  696. exit 0 ;;
  697.     *:BSD/OS:*:*)
  698. echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
  699. exit 0 ;;
  700.     *:FreeBSD:*:*)
  701. echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
  702. exit 0 ;;
  703.     *:OpenBSD:*:*)
  704. echo ${UNAME_MACHINE}-unknown-openbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/./'`
  705. exit 0 ;;
  706.     i*:CYGWIN*:*)
  707. echo ${UNAME_MACHINE}-pc-cygwin
  708. exit 0 ;;
  709.     i*:MINGW*:*)
  710. echo ${UNAME_MACHINE}-pc-mingw32
  711. exit 0 ;;
  712.     i*:PW*:*)
  713. echo ${UNAME_MACHINE}-pc-pw32
  714. exit 0 ;;
  715.     i*:Windows_NT*:* | Pentium*:Windows_NT*:*)
  716. # How do we know it's Interix rather than the generic POSIX subsystem?
  717. # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we
  718. # UNAME_MACHINE based on the output of uname instead of i386?
  719. echo i386-pc-interix
  720. exit 0 ;;
  721.     i*:UWIN*:*)
  722. echo ${UNAME_MACHINE}-pc-uwin
  723. exit 0 ;;
  724.     p*:CYGWIN*:*)
  725. echo powerpcle-unknown-cygwin
  726. exit 0 ;;
  727.     prep*:SunOS:5.*:*)
  728. echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
  729. exit 0 ;;
  730.     *:GNU:*:*)
  731. echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
  732. exit 0 ;;
  733.     i*86:Minix:*:*)
  734. echo ${UNAME_MACHINE}-pc-minix
  735. exit 0 ;;
  736.     arm*:Linux:*:*)
  737. echo ${UNAME_MACHINE}-unknown-linux-gnu
  738. exit 0 ;;
  739.     ia64:Linux:*:*)
  740. echo ${UNAME_MACHINE}-unknown-linux
  741. exit 0 ;;
  742.     m68*:Linux:*:*)
  743. echo ${UNAME_MACHINE}-unknown-linux-gnu
  744. exit 0 ;;
  745.     mips:Linux:*:*)
  746. case `sed -n '/^byte/s/^.*: (.*) endian/1/p' < /proc/cpuinfo` in
  747.   big)    echo mips-unknown-linux-gnu && exit 0 ;;
  748.   little) echo mipsel-unknown-linux-gnu && exit 0 ;;
  749. esac
  750. ;;
  751.     ppc:Linux:*:*)
  752. echo powerpc-unknown-linux-gnu
  753. exit 0 ;;
  754.     alpha:Linux:*:*)
  755. case `sed -n '/^cpu model/s/^.*: (.*)/1/p' < /proc/cpuinfo` in
  756.   EV5)   UNAME_MACHINE=alphaev5 ;;
  757.   EV56)  UNAME_MACHINE=alphaev56 ;;
  758.   PCA56) UNAME_MACHINE=alphapca56 ;;
  759.   PCA57) UNAME_MACHINE=alphapca56 ;;
  760.   EV6)   UNAME_MACHINE=alphaev6 ;;
  761.   EV67)  UNAME_MACHINE=alphaev67 ;;
  762.   EV68*) UNAME_MACHINE=alphaev67 ;;
  763.         esac
  764. objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null
  765. if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
  766. echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
  767. exit 0 ;;
  768.     parisc:Linux:*:* | hppa:Linux:*:*)
  769. # Look for CPU level
  770. case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
  771.   PA7*) echo hppa1.1-unknown-linux-gnu ;;
  772.   PA8*) echo hppa2.0-unknown-linux-gnu ;;
  773.   *)    echo hppa-unknown-linux-gnu ;;
  774. esac
  775. exit 0 ;;
  776.     parisc64:Linux:*:* | hppa64:Linux:*:*)
  777. echo hppa64-unknown-linux-gnu
  778. exit 0 ;;
  779.     s390:Linux:*:* | s390x:Linux:*:*)
  780. echo ${UNAME_MACHINE}-ibm-linux
  781. exit 0 ;;
  782.     sh*:Linux:*:*)
  783. echo ${UNAME_MACHINE}-unknown-linux-gnu
  784. exit 0 ;;
  785.     sparc:Linux:*:* | sparc64:Linux:*:*)
  786. echo ${UNAME_MACHINE}-unknown-linux-gnu
  787. exit 0 ;;
  788.     x86_64:Linux:*:*)
  789. echo x86_64-unknown-linux-gnu
  790. exit 0 ;;
  791.     i*86:Linux:*:*)
  792. # The BFD linker knows what the default object file format is, so
  793. # first see if it will tell us. cd to the root directory to prevent
  794. # problems with other programs or directories called `ld' in the path.
  795. ld_supported_targets=`cd /; ld --help 2>&1 
  796.  | sed -ne '/supported targets:/!d
  797.     s/[  ][  ]*/ /g
  798.     s/.*supported targets: *//
  799.     s/ .*//
  800.     p'`
  801.         case "$ld_supported_targets" in
  802.   elf32-i386)
  803. TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu"
  804. ;;
  805.   a.out-i386-linux)
  806. echo "${UNAME_MACHINE}-pc-linux-gnuaout"
  807. exit 0 ;;
  808.   coff-i386)
  809. echo "${UNAME_MACHINE}-pc-linux-gnucoff"
  810. exit 0 ;;
  811.   "")
  812. # Either a pre-BFD a.out linker (linux-gnuoldld) or
  813. # one that does not give us useful --help.
  814. echo "${UNAME_MACHINE}-pc-linux-gnuoldld"
  815. exit 0 ;;
  816. esac
  817. # Determine whether the default compiler is a.out or elf
  818. cat >$dummy.c <<EOF
  819. #include <features.h>
  820. #ifdef __cplusplus
  821. #include <stdio.h>  /* for printf() prototype */
  822. int main (int argc, char *argv[]) {
  823. #else
  824. int main (argc, argv) int argc; char *argv[]; {
  825. #endif
  826. #ifdef __ELF__
  827. # ifdef __GLIBC__
  828. #  if __GLIBC__ >= 2
  829.     printf ("%s-pc-linux-gnun", argv[1]);
  830. #  else
  831.     printf ("%s-pc-linux-gnulibc1n", argv[1]);
  832. #  endif
  833. # else
  834.    printf ("%s-pc-linux-gnulibc1n", argv[1]);
  835. # endif
  836. #else
  837.   printf ("%s-pc-linux-gnuaoutn", argv[1]);
  838. #endif
  839.   return 0;
  840. }
  841. EOF
  842. eval $set_cc_for_build
  843. $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy "${UNAME_MACHINE}" && rm -f $dummy.c $dummy && exit 0
  844. rm -f $dummy.c $dummy
  845. test x"${TENTATIVE}" != x && echo "${TENTATIVE}" && exit 0
  846. ;;
  847.     i*86:DYNIX/ptx:4*:*)
  848. # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
  849. # earlier versions are messed up and put the nodename in both
  850. # sysname and nodename.
  851. echo i386-sequent-sysv4
  852. exit 0 ;;
  853.     i*86:UNIX_SV:4.2MP:2.*)
  854.         # Unixware is an offshoot of SVR4, but it has its own version
  855.         # number series starting with 2...
  856.         # I am not positive that other SVR4 systems won't match this,
  857. # I just have to hope.  -- rms.
  858.         # Use sysv4.2uw... so that sysv4* matches it.
  859. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
  860. exit 0 ;;
  861.     i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
  862. UNAME_REL=`echo ${UNAME_RELEASE} | sed 's//MP$//'`
  863. if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
  864. echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL}
  865. else
  866. echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL}
  867. fi
  868. exit 0 ;;
  869.     i*86:*:5:[78]*)
  870. case `/bin/uname -X | grep "^Machine"` in
  871.     *486*)      UNAME_MACHINE=i486 ;;
  872.     *Pentium)      UNAME_MACHINE=i586 ;;
  873.     *Pent*|*Celeron) UNAME_MACHINE=i686 ;;
  874. esac
  875. echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}
  876. exit 0 ;;
  877.     i*86:*:3.2:*)
  878. if test -f /usr/options/cb.name; then
  879. UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
  880. echo ${UNAME_MACHINE}-pc-isc$UNAME_REL
  881. elif /bin/uname -X 2>/dev/null >/dev/null ; then
  882. UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')`
  883. (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486
  884. (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) 
  885. && UNAME_MACHINE=i586
  886. (/bin/uname -X|egrep '^Machine.*Pent ?II' >/dev/null) 
  887. && UNAME_MACHINE=i686
  888. (/bin/uname -X|egrep '^Machine.*Pentium Pro' >/dev/null) 
  889. && UNAME_MACHINE=i686
  890. echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
  891. else
  892. echo ${UNAME_MACHINE}-pc-sysv32
  893. fi
  894. exit 0 ;;
  895.     i*86:*DOS:*:*)
  896. echo ${UNAME_MACHINE}-pc-msdosdjgpp
  897. exit 0 ;;
  898.     pc:*:*:*)
  899. # Left here for compatibility:
  900.         # uname -m prints for DJGPP always 'pc', but it prints nothing about
  901.         # the processor, so we play safe by assuming i386.
  902. echo i386-pc-msdosdjgpp
  903.         exit 0 ;;
  904.     Intel:Mach:3*:*)
  905. echo i386-pc-mach3
  906. exit 0 ;;
  907.     paragon:*:*:*)
  908. echo i860-intel-osf1
  909. exit 0 ;;
  910.     i860:*:4.*:*) # i860-SVR4
  911. if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
  912.   echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
  913. else # Add other i860-SVR4 vendors below as they are discovered.
  914.   echo i860-unknown-sysv${UNAME_RELEASE}  # Unknown i860-SVR4
  915. fi
  916. exit 0 ;;
  917.     mini*:CTIX:SYS*5:*)
  918. # "miniframe"
  919. echo m68010-convergent-sysv
  920. exit 0 ;;
  921.     M68*:*:R3V[567]*:*)
  922. test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;;
  923.     3[34]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 4850:*:4.0:3.0)
  924. OS_REL=''
  925. test -r /etc/.relid 
  926. && OS_REL=.`sed -n 's/[^ ]* [^ ]* ([0-9][0-9]).*/1/p' < /etc/.relid`
  927. /bin/uname -p 2>/dev/null | grep 86 >/dev/null 
  928.   && echo i486-ncr-sysv4.3${OS_REL} && exit 0
  929. /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null 
  930.   && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;;
  931.     3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
  932.         /bin/uname -p 2>/dev/null | grep 86 >/dev/null 
  933.           && echo i486-ncr-sysv4 && exit 0 ;;
  934.     m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
  935. echo m68k-unknown-lynxos${UNAME_RELEASE}
  936. exit 0 ;;
  937.     mc68030:UNIX_System_V:4.*:*)
  938. echo m68k-atari-sysv4
  939. exit 0 ;;
  940.     i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*)
  941. echo i386-unknown-lynxos${UNAME_RELEASE}
  942. exit 0 ;;
  943.     TSUNAMI:LynxOS:2.*:*)
  944. echo sparc-unknown-lynxos${UNAME_RELEASE}
  945. exit 0 ;;
  946.     rs6000:LynxOS:2.*:*)
  947. echo rs6000-unknown-lynxos${UNAME_RELEASE}
  948. exit 0 ;;
  949.     PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*)
  950. echo powerpc-unknown-lynxos${UNAME_RELEASE}
  951. exit 0 ;;
  952.     SM[BE]S:UNIX_SV:*:*)
  953. echo mips-dde-sysv${UNAME_RELEASE}
  954. exit 0 ;;
  955.     RM*:ReliantUNIX-*:*:*)
  956. echo mips-sni-sysv4
  957. exit 0 ;;
  958.     RM*:SINIX-*:*:*)
  959. echo mips-sni-sysv4
  960. exit 0 ;;
  961.     *:SINIX-*:*:*)
  962. if uname -p 2>/dev/null >/dev/null ; then
  963. UNAME_MACHINE=`(uname -p) 2>/dev/null`
  964. echo ${UNAME_MACHINE}-sni-sysv4
  965. else
  966. echo ns32k-sni-sysv
  967. fi
  968. exit 0 ;;
  969.     PENTIUM:CPunix:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
  970.                            # says <Richard.M.Bartel@ccMail.Census.GOV>
  971.         echo i586-unisys-sysv4
  972.         exit 0 ;;
  973.     *:UNIX_System_V:4*:FTX*)
  974. # From Gerald Hewes <hewes@openmarket.com>.
  975. # How about differentiating between stratus architectures? -djm
  976. echo hppa1.1-stratus-sysv4
  977. exit 0 ;;
  978.     *:*:*:FTX*)
  979. # From seanf@swdc.stratus.com.
  980. echo i860-stratus-sysv4
  981. exit 0 ;;
  982.     mc68*:A/UX:*:*)
  983. echo m68k-apple-aux${UNAME_RELEASE}
  984. exit 0 ;;
  985.     news*:NEWS-OS:6*:*)
  986. echo mips-sony-newsos6
  987. exit 0 ;;
  988.     R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
  989. if [ -d /usr/nec ]; then
  990.         echo mips-nec-sysv${UNAME_RELEASE}
  991. else
  992.         echo mips-unknown-sysv${UNAME_RELEASE}
  993. fi
  994.         exit 0 ;;
  995.     BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only.
  996. echo powerpc-be-beos
  997. exit 0 ;;
  998.     BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only.
  999. echo powerpc-apple-beos
  1000. exit 0 ;;
  1001.     BePC:BeOS:*:*) # BeOS running on Intel PC compatible.
  1002. echo i586-pc-beos
  1003. exit 0 ;;
  1004.     SX-4:SUPER-UX:*:*)
  1005. echo sx4-nec-superux${UNAME_RELEASE}
  1006. exit 0 ;;
  1007.     SX-5:SUPER-UX:*:*)
  1008. echo sx5-nec-superux${UNAME_RELEASE}
  1009. exit 0 ;;
  1010.     Power*:Rhapsody:*:*)
  1011. echo powerpc-apple-rhapsody${UNAME_RELEASE}
  1012. exit 0 ;;
  1013.     *:Rhapsody:*:*)
  1014. echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
  1015. exit 0 ;;
  1016.     *:Darwin:*:*)
  1017. echo `uname -p`-apple-darwin${UNAME_RELEASE}
  1018. exit 0 ;;
  1019.     *:procnto*:*:* | *:QNX:[0123456789]*:*)
  1020. if test "${UNAME_MACHINE}" = "x86pc"; then
  1021. UNAME_MACHINE=pc
  1022. fi
  1023. echo `uname -p`-${UNAME_MACHINE}-nto-qnx
  1024. exit 0 ;;
  1025.     *:QNX:*:4*)
  1026. echo i386-pc-qnx
  1027. exit 0 ;;
  1028.     NSR-[KW]:NONSTOP_KERNEL:*:*)
  1029. echo nsr-tandem-nsk${UNAME_RELEASE}
  1030. exit 0 ;;
  1031.     *:NonStop-UX:*:*)
  1032. echo mips-compaq-nonstopux
  1033. exit 0 ;;
  1034.     BS2000:POSIX*:*:*)
  1035. echo bs2000-siemens-sysv
  1036. exit 0 ;;
  1037.     DS/*:UNIX_System_V:*:*)
  1038. echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}
  1039. exit 0 ;;
  1040.     *:Plan9:*:*)
  1041. # "uname -m" is not consistent, so use $cputype instead. 386
  1042. # is converted to i386 for consistency with other x86
  1043. # operating systems.
  1044. if test "$cputype" = "386"; then
  1045.     UNAME_MACHINE=i386
  1046. else
  1047.     UNAME_MACHINE="$cputype"
  1048. fi
  1049. echo ${UNAME_MACHINE}-unknown-plan9
  1050. exit 0 ;;
  1051.     i*86:OS/2:*:*)
  1052. # If we were able to find `uname', then EMX Unix compatibility
  1053. # is probably installed.
  1054. echo ${UNAME_MACHINE}-pc-os2-emx
  1055. exit 0 ;;
  1056.     *:TOPS-10:*:*)
  1057. echo pdp10-unknown-tops10
  1058. exit 0 ;;
  1059.     *:TENEX:*:*)
  1060. echo pdp10-unknown-tenex
  1061. exit 0 ;;
  1062.     KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*)
  1063. echo pdp10-dec-tops20
  1064. exit 0 ;;
  1065.     XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*)
  1066. echo pdp10-xkl-tops20
  1067. exit 0 ;;
  1068.     *:TOPS-20:*:*)
  1069. echo pdp10-unknown-tops20
  1070. exit 0 ;;
  1071.     *:ITS:*:*)
  1072. echo pdp10-unknown-its
  1073. exit 0 ;;
  1074. esac
  1075. #echo '(No uname command or uname output not recognized.)' 1>&2
  1076. #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2
  1077. cat >$dummy.c <<EOF
  1078. #ifdef _SEQUENT_
  1079. # include <sys/types.h>
  1080. # include <sys/utsname.h>
  1081. #endif
  1082. main ()
  1083. {
  1084. #if defined (sony)
  1085. #if defined (MIPSEB)
  1086.   /* BFD wants "bsd" instead of "newsos".  Perhaps BFD should be changed,
  1087.      I don't know....  */
  1088.   printf ("mips-sony-bsdn"); exit (0);
  1089. #else
  1090. #include <sys/param.h>
  1091.   printf ("m68k-sony-newsos%sn",
  1092. #ifdef NEWSOS4
  1093.           "4"
  1094. #else
  1095.   ""
  1096. #endif
  1097.          ); exit (0);
  1098. #endif
  1099. #endif
  1100. #if defined (__arm) && defined (__acorn) && defined (__unix)
  1101.   printf ("arm-acorn-riscix"); exit (0);
  1102. #endif
  1103. #if defined (hp300) && !defined (hpux)
  1104.   printf ("m68k-hp-bsdn"); exit (0);
  1105. #endif
  1106. #if defined (NeXT)
  1107. #if !defined (__ARCHITECTURE__)
  1108. #define __ARCHITECTURE__ "m68k"
  1109. #endif
  1110.   int version;
  1111.   version=`(hostinfo | sed -n 's/.*NeXT Mach ([0-9]*).*/1/p') 2>/dev/null`;
  1112.   if (version < 4)
  1113.     printf ("%s-next-nextstep%dn", __ARCHITECTURE__, version);
  1114.   else
  1115.     printf ("%s-next-openstep%dn", __ARCHITECTURE__, version);
  1116.   exit (0);
  1117. #endif
  1118. #if defined (MULTIMAX) || defined (n16)
  1119. #if defined (UMAXV)
  1120.   printf ("ns32k-encore-sysvn"); exit (0);
  1121. #else
  1122. #if defined (CMU)
  1123.   printf ("ns32k-encore-machn"); exit (0);
  1124. #else
  1125.   printf ("ns32k-encore-bsdn"); exit (0);
  1126. #endif
  1127. #endif
  1128. #endif
  1129. #if defined (__386BSD__)
  1130.   printf ("i386-pc-bsdn"); exit (0);
  1131. #endif
  1132. #if defined (sequent)
  1133. #if defined (i386)
  1134.   printf ("i386-sequent-dynixn"); exit (0);
  1135. #endif
  1136. #if defined (ns32000)
  1137.   printf ("ns32k-sequent-dynixn"); exit (0);
  1138. #endif
  1139. #endif
  1140. #if defined (_SEQUENT_)
  1141.     struct utsname un;
  1142.     uname(&un);
  1143.     if (strncmp(un.version, "V2", 2) == 0) {
  1144. printf ("i386-sequent-ptx2n"); exit (0);
  1145.     }
  1146.     if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
  1147. printf ("i386-sequent-ptx1n"); exit (0);
  1148.     }
  1149.     printf ("i386-sequent-ptxn"); exit (0);
  1150. #endif
  1151. #if defined (vax)
  1152. # if !defined (ultrix)
  1153. #  include <sys/param.h>
  1154. #  if defined (BSD)
  1155. #   if BSD == 43
  1156.       printf ("vax-dec-bsd4.3n"); exit (0);
  1157. #   else
  1158. #    if BSD == 199006
  1159.       printf ("vax-dec-bsd4.3renon"); exit (0);
  1160. #    else
  1161.       printf ("vax-dec-bsdn"); exit (0);
  1162. #    endif
  1163. #   endif
  1164. #  else
  1165.     printf ("vax-dec-bsdn"); exit (0);
  1166. #  endif
  1167. # else
  1168.     printf ("vax-dec-ultrixn"); exit (0);
  1169. # endif
  1170. #endif
  1171. #if defined (alliant) && defined (i860)
  1172.   printf ("i860-alliant-bsdn"); exit (0);
  1173. #endif
  1174.   exit (1);
  1175. }
  1176. EOF
  1177. eval $set_cc_for_build
  1178. $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy && rm -f $dummy.c $dummy && exit 0
  1179. rm -f $dummy.c $dummy
  1180. # Apollos put the system type in the environment.
  1181. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; }
  1182. # Convex versions that predate uname can use getsysinfo(1)
  1183. if [ -x /usr/convex/getsysinfo ]
  1184. then
  1185.     case `getsysinfo -f cpu_type` in
  1186.     c1*)
  1187. echo c1-convex-bsd
  1188. exit 0 ;;
  1189.     c2*)
  1190. if getsysinfo -f scalar_acc
  1191. then echo c32-convex-bsd
  1192. else echo c2-convex-bsd
  1193. fi
  1194. exit 0 ;;
  1195.     c34*)
  1196. echo c34-convex-bsd
  1197. exit 0 ;;
  1198.     c38*)
  1199. echo c38-convex-bsd
  1200. exit 0 ;;
  1201.     c4*)
  1202. echo c4-convex-bsd
  1203. exit 0 ;;
  1204.     esac
  1205. fi
  1206. cat >&2 <<EOF
  1207. $0: unable to guess system type
  1208. This script, last modified $timestamp, has failed to recognize
  1209. the operating system you are using. It is advised that you
  1210. download the most up to date version of the config scripts from
  1211.     ftp://ftp.gnu.org/pub/gnu/config/
  1212. If the version you run ($0) is already up to date, please
  1213. send the following data and any information you think might be
  1214. pertinent to <config-patches@gnu.org> in order to provide the needed
  1215. information to handle your system.
  1216. config.guess timestamp = $timestamp
  1217. uname -m = `(uname -m) 2>/dev/null || echo unknown`
  1218. uname -r = `(uname -r) 2>/dev/null || echo unknown`
  1219. uname -s = `(uname -s) 2>/dev/null || echo unknown`
  1220. uname -v = `(uname -v) 2>/dev/null || echo unknown`
  1221. /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null`
  1222. /bin/uname -X     = `(/bin/uname -X) 2>/dev/null`
  1223. hostinfo               = `(hostinfo) 2>/dev/null`
  1224. /bin/universe          = `(/bin/universe) 2>/dev/null`
  1225. /usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null`
  1226. /bin/arch              = `(/bin/arch) 2>/dev/null`
  1227. /usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null`
  1228. /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null`
  1229. UNAME_MACHINE = ${UNAME_MACHINE}
  1230. UNAME_RELEASE = ${UNAME_RELEASE}
  1231. UNAME_SYSTEM  = ${UNAME_SYSTEM}
  1232. UNAME_VERSION = ${UNAME_VERSION}
  1233. EOF
  1234. exit 1
  1235. # Local variables:
  1236. # eval: (add-hook 'write-file-hooks 'time-stamp)
  1237. # time-stamp-start: "timestamp='"
  1238. # time-stamp-format: "%:y-%02m-%02d"
  1239. # time-stamp-end: "'"
  1240. # End: