config.guess
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:40k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

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