config.guess
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:42k
源码类别:

多媒体

开发平台:

MultiPlatform

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