config.guess
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:40k
源码类别:

词法分析

开发平台:

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