config.guess
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:44k
源码类别:

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