config.guess
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:42k
源码类别:

网格计算

开发平台:

Java

  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-09-07'
  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.     crisv32:Linux:*:*)
  801. echo crisv32-axis-linux-gnu
  802. exit 0 ;;
  803.     frv:Linux:*:*)
  804.      echo frv-unknown-linux-gnu
  805. exit 0 ;;
  806.     ia64:Linux:*:*)
  807. echo ${UNAME_MACHINE}-unknown-linux-gnu
  808. exit 0 ;;
  809.     m32r*:Linux:*:*)
  810. echo ${UNAME_MACHINE}-unknown-linux-gnu
  811. exit 0 ;;
  812.     m68*:Linux:*:*)
  813. echo ${UNAME_MACHINE}-unknown-linux-gnu
  814. exit 0 ;;
  815.     mips:Linux:*:*)
  816. eval $set_cc_for_build
  817. sed 's/^ //' << EOF >$dummy.c
  818. #undef CPU
  819. #undef mips
  820. #undef mipsel
  821. #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
  822. CPU=mipsel
  823. #else
  824. #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
  825. CPU=mips
  826. #else
  827. CPU=
  828. #endif
  829. #endif
  830. EOF
  831. eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
  832. test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0
  833. ;;
  834.     mips64:Linux:*:*)
  835. eval $set_cc_for_build
  836. sed 's/^ //' << EOF >$dummy.c
  837. #undef CPU
  838. #undef mips64
  839. #undef mips64el
  840. #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
  841. CPU=mips64el
  842. #else
  843. #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
  844. CPU=mips64
  845. #else
  846. CPU=
  847. #endif
  848. #endif
  849. EOF
  850. eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
  851. test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0
  852. ;;
  853.     ppc:Linux:*:*)
  854. echo powerpc-unknown-linux-gnu
  855. exit 0 ;;
  856.     ppc64:Linux:*:*)
  857. echo powerpc64-unknown-linux-gnu
  858. exit 0 ;;
  859.     alpha:Linux:*:*)
  860. case `sed -n '/^cpu model/s/^.*: (.*)/1/p' < /proc/cpuinfo` in
  861.   EV5)   UNAME_MACHINE=alphaev5 ;;
  862.   EV56)  UNAME_MACHINE=alphaev56 ;;
  863.   PCA56) UNAME_MACHINE=alphapca56 ;;
  864.   PCA57) UNAME_MACHINE=alphapca56 ;;
  865.   EV6)   UNAME_MACHINE=alphaev6 ;;
  866.   EV67)  UNAME_MACHINE=alphaev67 ;;
  867.   EV68*) UNAME_MACHINE=alphaev68 ;;
  868.         esac
  869. objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null
  870. if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
  871. echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
  872. exit 0 ;;
  873.     parisc:Linux:*:* | hppa:Linux:*:*)
  874. # Look for CPU level
  875. case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
  876.   PA7*) echo hppa1.1-unknown-linux-gnu ;;
  877.   PA8*) echo hppa2.0-unknown-linux-gnu ;;
  878.   *)    echo hppa-unknown-linux-gnu ;;
  879. esac
  880. exit 0 ;;
  881.     parisc64:Linux:*:* | hppa64:Linux:*:*)
  882. echo hppa64-unknown-linux-gnu
  883. exit 0 ;;
  884.     s390:Linux:*:* | s390x:Linux:*:*)
  885. echo ${UNAME_MACHINE}-ibm-linux
  886. exit 0 ;;
  887.     sh64*:Linux:*:*)
  888.      echo ${UNAME_MACHINE}-unknown-linux-gnu
  889. exit 0 ;;
  890.     sh*:Linux:*:*)
  891. echo ${UNAME_MACHINE}-unknown-linux-gnu
  892. exit 0 ;;
  893.     sparc:Linux:*:* | sparc64:Linux:*:*)
  894. echo ${UNAME_MACHINE}-unknown-linux-gnu
  895. exit 0 ;;
  896.     x86_64:Linux:*:*)
  897. echo x86_64-unknown-linux-gnu
  898. exit 0 ;;
  899.     i*86:Linux:*:*)
  900. # The BFD linker knows what the default object file format is, so
  901. # first see if it will tell us. cd to the root directory to prevent
  902. # problems with other programs or directories called `ld' in the path.
  903. # Set LC_ALL=C to ensure ld outputs messages in English.
  904. ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 
  905.  | sed -ne '/supported targets:/!d
  906.     s/[  ][  ]*/ /g
  907.     s/.*supported targets: *//
  908.     s/ .*//
  909.     p'`
  910.         case "$ld_supported_targets" in
  911.   elf32-i386)
  912. TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu"
  913. ;;
  914.   a.out-i386-linux)
  915. echo "${UNAME_MACHINE}-pc-linux-gnuaout"
  916. exit 0 ;;
  917.   coff-i386)
  918. echo "${UNAME_MACHINE}-pc-linux-gnucoff"
  919. exit 0 ;;
  920.   "")
  921. # Either a pre-BFD a.out linker (linux-gnuoldld) or
  922. # one that does not give us useful --help.
  923. echo "${UNAME_MACHINE}-pc-linux-gnuoldld"
  924. exit 0 ;;
  925. esac
  926. # Determine whether the default compiler is a.out or elf
  927. eval $set_cc_for_build
  928. sed 's/^ //' << EOF >$dummy.c
  929. #include <features.h>
  930. #ifdef __ELF__
  931. # ifdef __GLIBC__
  932. #  if __GLIBC__ >= 2
  933. LIBC=gnu
  934. #  else
  935. LIBC=gnulibc1
  936. #  endif
  937. # else
  938. LIBC=gnulibc1
  939. # endif
  940. #else
  941. #ifdef __INTEL_COMPILER
  942. LIBC=gnu
  943. #else
  944. LIBC=gnuaout
  945. #endif
  946. #endif
  947. #ifdef __dietlibc__
  948. LIBC=dietlibc
  949. #endif
  950. EOF
  951. eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=`
  952. test x"${LIBC}" != x && echo "${UNAME_MACHINE}-pc-linux-${LIBC}" && exit 0
  953. test x"${TENTATIVE}" != x && echo "${TENTATIVE}" && exit 0
  954. ;;
  955.     i*86:DYNIX/ptx:4*:*)
  956. # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
  957. # earlier versions are messed up and put the nodename in both
  958. # sysname and nodename.
  959. echo i386-sequent-sysv4
  960. exit 0 ;;
  961.     i*86:UNIX_SV:4.2MP:2.*)
  962.         # Unixware is an offshoot of SVR4, but it has its own version
  963.         # number series starting with 2...
  964.         # I am not positive that other SVR4 systems won't match this,
  965. # I just have to hope.  -- rms.
  966.         # Use sysv4.2uw... so that sysv4* matches it.
  967. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
  968. exit 0 ;;
  969.     i*86:OS/2:*:*)
  970. # If we were able to find `uname', then EMX Unix compatibility
  971. # is probably installed.
  972. echo ${UNAME_MACHINE}-pc-os2-emx
  973. exit 0 ;;
  974.     i*86:XTS-300:*:STOP)
  975. echo ${UNAME_MACHINE}-unknown-stop
  976. exit 0 ;;
  977.     i*86:atheos:*:*)
  978. echo ${UNAME_MACHINE}-unknown-atheos
  979. exit 0 ;;
  980. i*86:syllable:*:*)
  981. echo ${UNAME_MACHINE}-pc-syllable
  982. exit 0 ;;
  983.     i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*)
  984. echo i386-unknown-lynxos${UNAME_RELEASE}
  985. exit 0 ;;
  986.     i*86:*DOS:*:*)
  987. echo ${UNAME_MACHINE}-pc-msdosdjgpp
  988. exit 0 ;;
  989.     i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
  990. UNAME_REL=`echo ${UNAME_RELEASE} | sed 's//MP$//'`
  991. if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
  992. echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL}
  993. else
  994. echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL}
  995. fi
  996. exit 0 ;;
  997.     i*86:*:5:[78]*)
  998. case `/bin/uname -X | grep "^Machine"` in
  999.     *486*)      UNAME_MACHINE=i486 ;;
  1000.     *Pentium)      UNAME_MACHINE=i586 ;;
  1001.     *Pent*|*Celeron) UNAME_MACHINE=i686 ;;
  1002. esac
  1003. echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}
  1004. exit 0 ;;
  1005.     i*86:*:3.2:*)
  1006. if test -f /usr/options/cb.name; then
  1007. UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
  1008. echo ${UNAME_MACHINE}-pc-isc$UNAME_REL
  1009. elif /bin/uname -X 2>/dev/null >/dev/null ; then
  1010. UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')`
  1011. (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486
  1012. (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) 
  1013. && UNAME_MACHINE=i586
  1014. (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) 
  1015. && UNAME_MACHINE=i686
  1016. (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) 
  1017. && UNAME_MACHINE=i686
  1018. echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
  1019. else
  1020. echo ${UNAME_MACHINE}-pc-sysv32
  1021. fi
  1022. exit 0 ;;
  1023.     pc:*:*:*)
  1024. # Left here for compatibility:
  1025.         # uname -m prints for DJGPP always 'pc', but it prints nothing about
  1026.         # the processor, so we play safe by assuming i386.
  1027. echo i386-pc-msdosdjgpp
  1028.         exit 0 ;;
  1029.     Intel:Mach:3*:*)
  1030. echo i386-pc-mach3
  1031. exit 0 ;;
  1032.     paragon:*:*:*)
  1033. echo i860-intel-osf1
  1034. exit 0 ;;
  1035.     i860:*:4.*:*) # i860-SVR4
  1036. if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
  1037.   echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
  1038. else # Add other i860-SVR4 vendors below as they are discovered.
  1039.   echo i860-unknown-sysv${UNAME_RELEASE}  # Unknown i860-SVR4
  1040. fi
  1041. exit 0 ;;
  1042.     mini*:CTIX:SYS*5:*)
  1043. # "miniframe"
  1044. echo m68010-convergent-sysv
  1045. exit 0 ;;
  1046.     mc68k:UNIX:SYSTEM5:3.51m)
  1047. echo m68k-convergent-sysv
  1048. exit 0 ;;
  1049.     M680?0:D-NIX:5.3:*)
  1050. echo m68k-diab-dnix
  1051. exit 0 ;;
  1052.     M68*:*:R3V[5678]*:*)
  1053. test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;;
  1054.     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)
  1055. OS_REL=''
  1056. test -r /etc/.relid 
  1057. && OS_REL=.`sed -n 's/[^ ]* [^ ]* ([0-9][0-9]).*/1/p' < /etc/.relid`
  1058. /bin/uname -p 2>/dev/null | grep 86 >/dev/null 
  1059.   && echo i486-ncr-sysv4.3${OS_REL} && exit 0
  1060. /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null 
  1061.   && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;;
  1062.     3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
  1063.         /bin/uname -p 2>/dev/null | grep 86 >/dev/null 
  1064.           && echo i486-ncr-sysv4 && exit 0 ;;
  1065.     m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
  1066. echo m68k-unknown-lynxos${UNAME_RELEASE}
  1067. exit 0 ;;
  1068.     mc68030:UNIX_System_V:4.*:*)
  1069. echo m68k-atari-sysv4
  1070. exit 0 ;;
  1071.     TSUNAMI:LynxOS:2.*:*)
  1072. echo sparc-unknown-lynxos${UNAME_RELEASE}
  1073. exit 0 ;;
  1074.     rs6000:LynxOS:2.*:*)
  1075. echo rs6000-unknown-lynxos${UNAME_RELEASE}
  1076. exit 0 ;;
  1077.     PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*)
  1078. echo powerpc-unknown-lynxos${UNAME_RELEASE}
  1079. exit 0 ;;
  1080.     SM[BE]S:UNIX_SV:*:*)
  1081. echo mips-dde-sysv${UNAME_RELEASE}
  1082. exit 0 ;;
  1083.     RM*:ReliantUNIX-*:*:*)
  1084. echo mips-sni-sysv4
  1085. exit 0 ;;
  1086.     RM*:SINIX-*:*:*)
  1087. echo mips-sni-sysv4
  1088. exit 0 ;;
  1089.     *:SINIX-*:*:*)
  1090. if uname -p 2>/dev/null >/dev/null ; then
  1091. UNAME_MACHINE=`(uname -p) 2>/dev/null`
  1092. echo ${UNAME_MACHINE}-sni-sysv4
  1093. else
  1094. echo ns32k-sni-sysv
  1095. fi
  1096. exit 0 ;;
  1097.     PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
  1098.                       # says <Richard.M.Bartel@ccMail.Census.GOV>
  1099.         echo i586-unisys-sysv4
  1100.         exit 0 ;;
  1101.     *:UNIX_System_V:4*:FTX*)
  1102. # From Gerald Hewes <hewes@openmarket.com>.
  1103. # How about differentiating between stratus architectures? -djm
  1104. echo hppa1.1-stratus-sysv4
  1105. exit 0 ;;
  1106.     *:*:*:FTX*)
  1107. # From seanf@swdc.stratus.com.
  1108. echo i860-stratus-sysv4
  1109. exit 0 ;;
  1110.     *:VOS:*:*)
  1111. # From Paul.Green@stratus.com.
  1112. echo hppa1.1-stratus-vos
  1113. exit 0 ;;
  1114.     mc68*:A/UX:*:*)
  1115. echo m68k-apple-aux${UNAME_RELEASE}
  1116. exit 0 ;;
  1117.     news*:NEWS-OS:6*:*)
  1118. echo mips-sony-newsos6
  1119. exit 0 ;;
  1120.     R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
  1121. if [ -d /usr/nec ]; then
  1122.         echo mips-nec-sysv${UNAME_RELEASE}
  1123. else
  1124.         echo mips-unknown-sysv${UNAME_RELEASE}
  1125. fi
  1126.         exit 0 ;;
  1127.     BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only.
  1128. echo powerpc-be-beos
  1129. exit 0 ;;
  1130.     BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only.
  1131. echo powerpc-apple-beos
  1132. exit 0 ;;
  1133.     BePC:BeOS:*:*) # BeOS running on Intel PC compatible.
  1134. echo i586-pc-beos
  1135. exit 0 ;;
  1136.     SX-4:SUPER-UX:*:*)
  1137. echo sx4-nec-superux${UNAME_RELEASE}
  1138. exit 0 ;;
  1139.     SX-5:SUPER-UX:*:*)
  1140. echo sx5-nec-superux${UNAME_RELEASE}
  1141. exit 0 ;;
  1142.     SX-6:SUPER-UX:*:*)
  1143. echo sx6-nec-superux${UNAME_RELEASE}
  1144. exit 0 ;;
  1145.     Power*:Rhapsody:*:*)
  1146. echo powerpc-apple-rhapsody${UNAME_RELEASE}
  1147. exit 0 ;;
  1148.     *:Rhapsody:*:*)
  1149. echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
  1150. exit 0 ;;
  1151.     *:Darwin:*:*)
  1152. UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
  1153. case $UNAME_PROCESSOR in
  1154.     *86) UNAME_PROCESSOR=i686 ;;
  1155.     unknown) UNAME_PROCESSOR=powerpc ;;
  1156. esac
  1157. echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
  1158. exit 0 ;;
  1159.     *:procnto*:*:* | *:QNX:[0123456789]*:*)
  1160. UNAME_PROCESSOR=`uname -p`
  1161. if test "$UNAME_PROCESSOR" = "x86"; then
  1162. UNAME_PROCESSOR=i386
  1163. UNAME_MACHINE=pc
  1164. fi
  1165. echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE}
  1166. exit 0 ;;
  1167.     *:QNX:*:4*)
  1168. echo i386-pc-qnx
  1169. exit 0 ;;
  1170.     NSR-?:NONSTOP_KERNEL:*:*)
  1171. echo nsr-tandem-nsk${UNAME_RELEASE}
  1172. exit 0 ;;
  1173.     *:NonStop-UX:*:*)
  1174. echo mips-compaq-nonstopux
  1175. exit 0 ;;
  1176.     BS2000:POSIX*:*:*)
  1177. echo bs2000-siemens-sysv
  1178. exit 0 ;;
  1179.     DS/*:UNIX_System_V:*:*)
  1180. echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}
  1181. exit 0 ;;
  1182.     *:Plan9:*:*)
  1183. # "uname -m" is not consistent, so use $cputype instead. 386
  1184. # is converted to i386 for consistency with other x86
  1185. # operating systems.
  1186. if test "$cputype" = "386"; then
  1187.     UNAME_MACHINE=i386
  1188. else
  1189.     UNAME_MACHINE="$cputype"
  1190. fi
  1191. echo ${UNAME_MACHINE}-unknown-plan9
  1192. exit 0 ;;
  1193.     *:TOPS-10:*:*)
  1194. echo pdp10-unknown-tops10
  1195. exit 0 ;;
  1196.     *:TENEX:*:*)
  1197. echo pdp10-unknown-tenex
  1198. exit 0 ;;
  1199.     KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*)
  1200. echo pdp10-dec-tops20
  1201. exit 0 ;;
  1202.     XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*)
  1203. echo pdp10-xkl-tops20
  1204. exit 0 ;;
  1205.     *:TOPS-20:*:*)
  1206. echo pdp10-unknown-tops20
  1207. exit 0 ;;
  1208.     *:ITS:*:*)
  1209. echo pdp10-unknown-its
  1210. exit 0 ;;
  1211.     SEI:*:*:SEIUX)
  1212.         echo mips-sei-seiux${UNAME_RELEASE}
  1213. exit 0 ;;
  1214.     *:DragonFly:*:*)
  1215. echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
  1216. exit 0 ;;
  1217.     *:*VMS:*:*)
  1218.      UNAME_MACHINE=`(uname -p) 2>/dev/null`
  1219. case "${UNAME_MACHINE}" in
  1220.     A*) echo alpha-dec-vms && exit 0 ;;
  1221.     I*) echo ia64-dec-vms && exit 0 ;;
  1222.     V*) echo vax-dec-vms && exit 0 ;;
  1223. esac
  1224. esac
  1225. #echo '(No uname command or uname output not recognized.)' 1>&2
  1226. #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2
  1227. eval $set_cc_for_build
  1228. cat >$dummy.c <<EOF
  1229. #ifdef _SEQUENT_
  1230. # include <sys/types.h>
  1231. # include <sys/utsname.h>
  1232. #endif
  1233. main ()
  1234. {
  1235. #if defined (sony)
  1236. #if defined (MIPSEB)
  1237.   /* BFD wants "bsd" instead of "newsos".  Perhaps BFD should be changed,
  1238.      I don't know....  */
  1239.   printf ("mips-sony-bsdn"); exit (0);
  1240. #else
  1241. #include <sys/param.h>
  1242.   printf ("m68k-sony-newsos%sn",
  1243. #ifdef NEWSOS4
  1244.           "4"
  1245. #else
  1246.   ""
  1247. #endif
  1248.          ); exit (0);
  1249. #endif
  1250. #endif
  1251. #if defined (__arm) && defined (__acorn) && defined (__unix)
  1252.   printf ("arm-acorn-riscix"); exit (0);
  1253. #endif
  1254. #if defined (hp300) && !defined (hpux)
  1255.   printf ("m68k-hp-bsdn"); exit (0);
  1256. #endif
  1257. #if defined (NeXT)
  1258. #if !defined (__ARCHITECTURE__)
  1259. #define __ARCHITECTURE__ "m68k"
  1260. #endif
  1261.   int version;
  1262.   version=`(hostinfo | sed -n 's/.*NeXT Mach ([0-9]*).*/1/p') 2>/dev/null`;
  1263.   if (version < 4)
  1264.     printf ("%s-next-nextstep%dn", __ARCHITECTURE__, version);
  1265.   else
  1266.     printf ("%s-next-openstep%dn", __ARCHITECTURE__, version);
  1267.   exit (0);
  1268. #endif
  1269. #if defined (MULTIMAX) || defined (n16)
  1270. #if defined (UMAXV)
  1271.   printf ("ns32k-encore-sysvn"); exit (0);
  1272. #else
  1273. #if defined (CMU)
  1274.   printf ("ns32k-encore-machn"); exit (0);
  1275. #else
  1276.   printf ("ns32k-encore-bsdn"); exit (0);
  1277. #endif
  1278. #endif
  1279. #endif
  1280. #if defined (__386BSD__)
  1281.   printf ("i386-pc-bsdn"); exit (0);
  1282. #endif
  1283. #if defined (sequent)
  1284. #if defined (i386)
  1285.   printf ("i386-sequent-dynixn"); exit (0);
  1286. #endif
  1287. #if defined (ns32000)
  1288.   printf ("ns32k-sequent-dynixn"); exit (0);
  1289. #endif
  1290. #endif
  1291. #if defined (_SEQUENT_)
  1292.     struct utsname un;
  1293.     uname(&un);
  1294.     if (strncmp(un.version, "V2", 2) == 0) {
  1295. printf ("i386-sequent-ptx2n"); exit (0);
  1296.     }
  1297.     if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
  1298. printf ("i386-sequent-ptx1n"); exit (0);
  1299.     }
  1300.     printf ("i386-sequent-ptxn"); exit (0);
  1301. #endif
  1302. #if defined (vax)
  1303. # if !defined (ultrix)
  1304. #  include <sys/param.h>
  1305. #  if defined (BSD)
  1306. #   if BSD == 43
  1307.       printf ("vax-dec-bsd4.3n"); exit (0);
  1308. #   else
  1309. #    if BSD == 199006
  1310.       printf ("vax-dec-bsd4.3renon"); exit (0);
  1311. #    else
  1312.       printf ("vax-dec-bsdn"); exit (0);
  1313. #    endif
  1314. #   endif
  1315. #  else
  1316.     printf ("vax-dec-bsdn"); exit (0);
  1317. #  endif
  1318. # else
  1319.     printf ("vax-dec-ultrixn"); exit (0);
  1320. # endif
  1321. #endif
  1322. #if defined (alliant) && defined (i860)
  1323.   printf ("i860-alliant-bsdn"); exit (0);
  1324. #endif
  1325.   exit (1);
  1326. }
  1327. EOF
  1328. $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && $dummy && exit 0
  1329. # Apollos put the system type in the environment.
  1330. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; }
  1331. # Convex versions that predate uname can use getsysinfo(1)
  1332. if [ -x /usr/convex/getsysinfo ]
  1333. then
  1334.     case `getsysinfo -f cpu_type` in
  1335.     c1*)
  1336. echo c1-convex-bsd
  1337. exit 0 ;;
  1338.     c2*)
  1339. if getsysinfo -f scalar_acc
  1340. then echo c32-convex-bsd
  1341. else echo c2-convex-bsd
  1342. fi
  1343. exit 0 ;;
  1344.     c34*)
  1345. echo c34-convex-bsd
  1346. exit 0 ;;
  1347.     c38*)
  1348. echo c38-convex-bsd
  1349. exit 0 ;;
  1350.     c4*)
  1351. echo c4-convex-bsd
  1352. exit 0 ;;
  1353.     esac
  1354. fi
  1355. cat >&2 <<EOF
  1356. $0: unable to guess system type
  1357. This script, last modified $timestamp, has failed to recognize
  1358. the operating system you are using. It is advised that you
  1359. download the most up to date version of the config scripts from
  1360.     ftp://ftp.gnu.org/pub/gnu/config/
  1361. If the version you run ($0) is already up to date, please
  1362. send the following data and any information you think might be
  1363. pertinent to <config-patches@gnu.org> in order to provide the needed
  1364. information to handle your system.
  1365. config.guess timestamp = $timestamp
  1366. uname -m = `(uname -m) 2>/dev/null || echo unknown`
  1367. uname -r = `(uname -r) 2>/dev/null || echo unknown`
  1368. uname -s = `(uname -s) 2>/dev/null || echo unknown`
  1369. uname -v = `(uname -v) 2>/dev/null || echo unknown`
  1370. /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null`
  1371. /bin/uname -X     = `(/bin/uname -X) 2>/dev/null`
  1372. hostinfo               = `(hostinfo) 2>/dev/null`
  1373. /bin/universe          = `(/bin/universe) 2>/dev/null`
  1374. /usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null`
  1375. /bin/arch              = `(/bin/arch) 2>/dev/null`
  1376. /usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null`
  1377. /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null`
  1378. UNAME_MACHINE = ${UNAME_MACHINE}
  1379. UNAME_RELEASE = ${UNAME_RELEASE}
  1380. UNAME_SYSTEM  = ${UNAME_SYSTEM}
  1381. UNAME_VERSION = ${UNAME_VERSION}
  1382. EOF
  1383. exit 1
  1384. # Local variables:
  1385. # eval: (add-hook 'write-file-hooks 'time-stamp)
  1386. # time-stamp-start: "timestamp='"
  1387. # time-stamp-format: "%:y-%02m-%02d"
  1388. # time-stamp-end: "'"
  1389. # End: