config.guess
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:27k
源码类别:

DVD

开发平台:

Unix_Linux

  1. #! /bin/sh
  2. # Attempt to guess a canonical system name.
  3. #   Copyright (C) 1992, 93, 94, 95, 96, 97, 1998 Free Software Foundation, Inc.
  4. #
  5. # This file is free software; you can redistribute it and/or modify it
  6. # under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful, but
  11. # WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13. # General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. #
  19. # As a special exception to the GNU General Public License, if you
  20. # distribute this file as part of a program that contains a
  21. # configuration script generated by Autoconf, you may include it under
  22. # the same distribution terms that you use for the rest of that program.
  23. # Written by Per Bothner <bothner@cygnus.com>.
  24. # The master version of this file is at the FSF in /home/gd/gnu/lib.
  25. #
  26. # This script attempts to guess a canonical system name similar to
  27. # config.sub.  If it succeeds, it prints the system name on stdout, and
  28. # exits with 0.  Otherwise, it exits with 1.
  29. #
  30. # The plan is that this can be called by configure scripts if you
  31. # don't specify an explicit system type (host/target name).
  32. #
  33. # Only a few systems have been added to this list; please add others
  34. # (but try to keep the structure clean).
  35. #
  36. # This is needed to find uname on a Pyramid OSx when run in the BSD universe.
  37. # (ghazi@noc.rutgers.edu 8/24/94.)
  38. if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
  39. PATH=$PATH:/.attbin ; export PATH
  40. fi
  41. UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
  42. UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
  43. UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
  44. UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
  45. dummy=dummy-$$
  46. trap 'rm -f $dummy.c $dummy.o $dummy; exit 1' 1 2 15
  47. # Note: order is significant - the case branches are not exclusive.
  48. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
  49.     alpha:OSF1:*:*)
  50. if test $UNAME_RELEASE = "V4.0"; then
  51. UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
  52. fi
  53. # A Vn.n version is a released version.
  54. # A Tn.n version is a released field test version.
  55. # A Xn.n version is an unreleased experimental baselevel.
  56. # 1.2 uses "1.2" for uname -r.
  57. cat <<EOF >$dummy.s
  58. .globl main
  59. .ent main
  60. main:
  61. .frame $30,0,$26,0
  62. .prologue 0
  63. .long 0x47e03d80 # implver $0
  64. lda $2,259
  65. .long 0x47e20c21 # amask $2,$1
  66. srl $1,8,$2
  67. sll $2,2,$2
  68. sll $0,3,$0
  69. addl $1,$0,$0
  70. addl $2,$0,$0
  71. ret $31,($26),1
  72. .end main
  73. EOF
  74. ${CC-cc} $dummy.s -o $dummy 2>/dev/null
  75. if test "$?" = 0 ; then
  76. ./$dummy
  77. case "$?" in
  78. 7)
  79. UNAME_MACHINE="alpha"
  80. ;;
  81. 15)
  82. UNAME_MACHINE="alphaev5"
  83. ;;
  84. 14)
  85. UNAME_MACHINE="alphaev56"
  86. ;;
  87. 10)
  88. UNAME_MACHINE="alphapca56"
  89. ;;
  90. 16)
  91. UNAME_MACHINE="alphaev6"
  92. ;;
  93. esac
  94. fi
  95. rm -f $dummy.s $dummy
  96. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr [[A-Z]] [[a-z]]`
  97. exit 0 ;;
  98.     21064:Windows_NT:50:3)
  99. echo alpha-dec-winnt3.5
  100. exit 0 ;;
  101.     Amiga*:UNIX_System_V:4.0:*)
  102. echo m68k-cbm-sysv4
  103. exit 0;;
  104.     amiga:NetBSD:*:*)
  105.       echo m68k-cbm-netbsd${UNAME_RELEASE}
  106.       exit 0 ;;
  107.     amiga:OpenBSD:*:*)
  108. echo m68k-unknown-openbsd${UNAME_RELEASE}
  109. exit 0 ;;
  110.     *:[Aa]miga[Oo][Ss]:*:*)
  111. echo ${UNAME_MACHINE}-unknown-amigaos
  112. exit 0 ;;
  113.     arc64:OpenBSD:*:*)
  114. echo mips64el-unknown-openbsd${UNAME_RELEASE}
  115. exit 0 ;;
  116.     arc:OpenBSD:*:*)
  117. echo mipsel-unknown-openbsd${UNAME_RELEASE}
  118. exit 0 ;;
  119.     hkmips:OpenBSD:*:*)
  120. echo mips-unknown-openbsd${UNAME_RELEASE}
  121. exit 0 ;;
  122.     pmax:OpenBSD:*:*)
  123. echo mipsel-unknown-openbsd${UNAME_RELEASE}
  124. exit 0 ;;
  125.     sgi:OpenBSD:*:*)
  126. echo mips-unknown-openbsd${UNAME_RELEASE}
  127. exit 0 ;;
  128.     wgrisc:OpenBSD:*:*)
  129. echo mipsel-unknown-openbsd${UNAME_RELEASE}
  130. exit 0 ;;
  131.     arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
  132. echo arm-acorn-riscix${UNAME_RELEASE}
  133. exit 0;;
  134.     arm32:NetBSD:*:*)
  135. echo arm-unknown-netbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/./'`
  136. exit 0 ;;
  137.     SR2?01:HI-UX/MPP:*:*)
  138. echo hppa1.1-hitachi-hiuxmpp
  139. exit 0;;
  140.     Pyramid*:OSx*:*:*|MIS*:OSx*:*:*|MIS*:SMP_DC-OSx*:*:*)
  141. # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.
  142. if test "`(/bin/universe) 2>/dev/null`" = att ; then
  143. echo pyramid-pyramid-sysv3
  144. else
  145. echo pyramid-pyramid-bsd
  146. fi
  147. exit 0 ;;
  148.     NILE:*:*:dcosx)
  149. echo pyramid-pyramid-svr4
  150. exit 0 ;;
  151.     sun4H:SunOS:5.*:*)
  152. echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
  153. exit 0 ;;
  154.     sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
  155. echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
  156. exit 0 ;;
  157.     i86pc:SunOS:5.*:*)
  158. echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
  159. exit 0 ;;
  160.     sun4*:SunOS:6*:*)
  161. # According to config.sub, this is the proper way to canonicalize
  162. # SunOS6.  Hard to guess exactly what SunOS6 will be like, but
  163. # it's likely to be more like Solaris than SunOS4.
  164. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
  165. exit 0 ;;
  166.     sun4*:SunOS:*:*)
  167. case "`/usr/bin/arch -k`" in
  168.     Series*|S4*)
  169. UNAME_RELEASE=`uname -v`
  170. ;;
  171. esac
  172. # Japanese Language versions have a version number like `4.1.3-JL'.
  173. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
  174. exit 0 ;;
  175.     sun3*:SunOS:*:*)
  176. echo m68k-sun-sunos${UNAME_RELEASE}
  177. exit 0 ;;
  178.     sun*:*:4.2BSD:*)
  179. UNAME_RELEASE=`(head -1 /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
  180. test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
  181. case "`/bin/arch`" in
  182.     sun3)
  183. echo m68k-sun-sunos${UNAME_RELEASE}
  184. ;;
  185.     sun4)
  186. echo sparc-sun-sunos${UNAME_RELEASE}
  187. ;;
  188. esac
  189. exit 0 ;;
  190.     aushp:SunOS:*:*)
  191. echo sparc-auspex-sunos${UNAME_RELEASE}
  192. exit 0 ;;
  193.     atari*:NetBSD:*:*)
  194. echo m68k-atari-netbsd${UNAME_RELEASE}
  195. exit 0 ;;
  196.     atari*:OpenBSD:*:*)
  197. echo m68k-unknown-openbsd${UNAME_RELEASE}
  198. exit 0 ;;
  199.     sun3*:NetBSD:*:*)
  200. echo m68k-sun-netbsd${UNAME_RELEASE}
  201. exit 0 ;;
  202.     sun3*:OpenBSD:*:*)
  203. echo m68k-unknown-openbsd${UNAME_RELEASE}
  204. exit 0 ;;
  205.     mac68k:NetBSD:*:*)
  206. echo m68k-apple-netbsd${UNAME_RELEASE}
  207. exit 0 ;;
  208.     mac68k:OpenBSD:*:*)
  209. echo m68k-unknown-openbsd${UNAME_RELEASE}
  210. exit 0 ;;
  211.     mvme68k:OpenBSD:*:*)
  212. echo m68k-unknown-openbsd${UNAME_RELEASE}
  213. exit 0 ;;
  214.     mvme88k:OpenBSD:*:*)
  215. echo m88k-unknown-openbsd${UNAME_RELEASE}
  216. exit 0 ;;
  217.     powerpc:machten:*:*)
  218. echo powerpc-apple-machten${UNAME_RELEASE}
  219. exit 0 ;;
  220.     macppc:NetBSD:*:*)
  221.         echo powerpc-apple-netbsd${UNAME_RELEASE}
  222.         exit 0 ;;
  223.     RISC*:Mach:*:*)
  224. echo mips-dec-mach_bsd4.3
  225. exit 0 ;;
  226.     RISC*:ULTRIX:*:*)
  227. echo mips-dec-ultrix${UNAME_RELEASE}
  228. exit 0 ;;
  229.     VAX*:ULTRIX*:*:*)
  230. echo vax-dec-ultrix${UNAME_RELEASE}
  231. exit 0 ;;
  232.     2020:CLIX:*:*)
  233. echo clipper-intergraph-clix${UNAME_RELEASE}
  234. exit 0 ;;
  235.     mips:*:*:UMIPS | mips:*:*:RISCos)
  236. sed 's/^ //' << EOF >$dummy.c
  237. int main (argc, argv) int argc; char **argv; {
  238. #if defined (host_mips) && defined (MIPSEB)
  239. #if defined (SYSTYPE_SYSV)
  240.   printf ("mips-mips-riscos%ssysvn", argv[1]); exit (0);
  241. #endif
  242. #if defined (SYSTYPE_SVR4)
  243.   printf ("mips-mips-riscos%ssvr4n", argv[1]); exit (0);
  244. #endif
  245. #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)
  246.   printf ("mips-mips-riscos%sbsdn", argv[1]); exit (0);
  247. #endif
  248. #endif
  249.   exit (-1);
  250. }
  251. EOF
  252. ${CC-cc} $dummy.c -o $dummy 
  253.   && ./$dummy `echo "${UNAME_RELEASE}" | sed -n 's/([0-9]*).*/1/p'` 
  254.   && rm $dummy.c $dummy && exit 0
  255. rm -f $dummy.c $dummy
  256. echo mips-mips-riscos${UNAME_RELEASE}
  257. exit 0 ;;
  258.     Night_Hawk:Power_UNIX:*:*)
  259. echo powerpc-harris-powerunix
  260. exit 0 ;;
  261.     m88k:CX/UX:7*:*)
  262. echo m88k-harris-cxux7
  263. exit 0 ;;
  264.     m88k:*:4*:R4*)
  265. echo m88k-motorola-sysv4
  266. exit 0 ;;
  267.     m88k:*:3*:R3*)
  268. echo m88k-motorola-sysv3
  269. exit 0 ;;
  270.     AViiON:dgux:*:*)
  271.         # DG/UX returns AViiON for all architectures
  272.         UNAME_PROCESSOR=`/usr/bin/uname -p`
  273.         if [ $UNAME_PROCESSOR = mc88100 -o $UNAME_PROCESSOR = mc88110 ] ; then
  274. if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx 
  275.      -o ${TARGET_BINARY_INTERFACE}x = x ] ; then
  276. echo m88k-dg-dgux${UNAME_RELEASE}
  277. else
  278. echo m88k-dg-dguxbcs${UNAME_RELEASE}
  279. fi
  280.         else echo i586-dg-dgux${UNAME_RELEASE}
  281.         fi
  282.   exit 0 ;;
  283.     M88*:DolphinOS:*:*) # DolphinOS (SVR3)
  284. echo m88k-dolphin-sysv3
  285. exit 0 ;;
  286.     M88*:*:R3*:*)
  287. # Delta 88k system running SVR3
  288. echo m88k-motorola-sysv3
  289. exit 0 ;;
  290.     XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)
  291. echo m88k-tektronix-sysv3
  292. exit 0 ;;
  293.     Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
  294. echo m68k-tektronix-bsd
  295. exit 0 ;;
  296.     *:IRIX*:*:*)
  297. echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
  298. exit 0 ;;
  299.     ????????:AIX?:[12].1:2)   # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
  300. echo romp-ibm-aix      # uname -m gives an 8 hex-code CPU id
  301. exit 0 ;;              # Note that: echo "'`uname -s`'" gives 'AIX '
  302.     i?86:AIX:*:*)
  303. echo i386-ibm-aix
  304. exit 0 ;;
  305.     *:AIX:2:3)
  306. if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
  307. sed 's/^ //' << EOF >$dummy.c
  308. #include <sys/systemcfg.h>
  309. main()
  310. {
  311. if (!__power_pc())
  312. exit(1);
  313. puts("powerpc-ibm-aix3.2.5");
  314. exit(0);
  315. }
  316. EOF
  317. ${CC-cc} $dummy.c -o $dummy && ./$dummy && rm $dummy.c $dummy && exit 0
  318. rm -f $dummy.c $dummy
  319. echo rs6000-ibm-aix3.2.5
  320. elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
  321. echo rs6000-ibm-aix3.2.4
  322. else
  323. echo rs6000-ibm-aix3.2
  324. fi
  325. exit 0 ;;
  326.     *:AIX:*:4)
  327. IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | head -1 | awk '{ print $1 }'`
  328. if /usr/sbin/lsattr -EHl ${IBM_CPU_ID} | grep POWER >/dev/null 2>&1; then
  329. IBM_ARCH=rs6000
  330. else
  331. IBM_ARCH=powerpc
  332. fi
  333. if [ -x /usr/bin/oslevel ] ; then
  334. IBM_REV=`/usr/bin/oslevel`
  335. else
  336. IBM_REV=4.${UNAME_RELEASE}
  337. fi
  338. echo ${IBM_ARCH}-ibm-aix${IBM_REV}
  339. exit 0 ;;
  340.     *:AIX:*:*)
  341. echo rs6000-ibm-aix
  342. exit 0 ;;
  343.     ibmrt:4.4BSD:*|romp-ibm:BSD:*)
  344. echo romp-ibm-bsd4.4
  345. exit 0 ;;
  346.     ibmrt:*BSD:*|romp-ibm:BSD:*)            # covers RT/PC NetBSD and
  347. echo romp-ibm-bsd${UNAME_RELEASE}   # 4.3 with uname added to
  348. exit 0 ;;                           # report: romp-ibm BSD 4.3
  349.     *:BOSX:*:*)
  350. echo rs6000-bull-bosx
  351. exit 0 ;;
  352.     DPX/2?00:B.O.S.:*:*)
  353. echo m68k-bull-sysv3
  354. exit 0 ;;
  355.     9000/[34]??:4.3bsd:1.*:*)
  356. echo m68k-hp-bsd
  357. exit 0 ;;
  358.     hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
  359. echo m68k-hp-bsd4.4
  360. exit 0 ;;
  361.     9000/[34678]??:HP-UX:*:*)
  362. case "${UNAME_MACHINE}" in
  363.     9000/31? )            HP_ARCH=m68000 ;;
  364.     9000/[34]?? )         HP_ARCH=m68k ;;
  365.     9000/6?? | 9000/7?? | 9000/80[24] | 9000/8?[13679] | 9000/892 )
  366.               sed 's/^              //' << EOF >$dummy.c
  367.               #include <stdlib.h>
  368.               #include <unistd.h>
  369.               
  370.               int main ()
  371.               {
  372.               #if defined(_SC_KERNEL_BITS)
  373.                   long bits = sysconf(_SC_KERNEL_BITS);
  374.               #endif 
  375.                   long cpu  = sysconf (_SC_CPU_VERSION);
  376.               
  377.                   switch (cpu) 
  378.                {
  379.                case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
  380.                case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
  381.                case CPU_PA_RISC2_0: 
  382.               #if defined(_SC_KERNEL_BITS)
  383.                    switch (bits) 
  384.                {
  385.                case 64: puts ("hppa2.0w"); break;
  386.                case 32: puts ("hppa2.0n"); break;
  387.                default: puts ("hppa2.0"); break;
  388.                } break;
  389.               #else  /* !defined(_SC_KERNEL_BITS) */
  390.                    puts ("hppa2.0"); break;
  391.               #endif 
  392.                default: puts ("hppa1.0"); break;
  393.                }
  394.                   exit (0);
  395.               }
  396. EOF
  397. (${CC-cc} $dummy.c -o $dummy 2>/dev/null ) && HP_ARCH=`./$dummy`
  398. rm -f $dummy.c $dummy
  399. esac
  400. HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
  401. echo ${HP_ARCH}-hp-hpux${HPUX_REV}
  402. exit 0 ;;
  403.     3050*:HI-UX:*:*)
  404. sed 's/^ //' << EOF >$dummy.c
  405. #include <unistd.h>
  406. int
  407. main ()
  408. {
  409.   long cpu = sysconf (_SC_CPU_VERSION);
  410.   /* The order matters, because CPU_IS_HP_MC68K erroneously returns
  411.      true for CPU_PA_RISC1_0.  CPU_IS_PA_RISC returns correct
  412.      results, however.  */
  413.   if (CPU_IS_PA_RISC (cpu))
  414.     {
  415.       switch (cpu)
  416. {
  417.   case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break;
  418.   case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break;
  419.   case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break;
  420.   default: puts ("hppa-hitachi-hiuxwe2"); break;
  421. }
  422.     }
  423.   else if (CPU_IS_HP_MC68K (cpu))
  424.     puts ("m68k-hitachi-hiuxwe2");
  425.   else puts ("unknown-hitachi-hiuxwe2");
  426.   exit (0);
  427. }
  428. EOF
  429. ${CC-cc} $dummy.c -o $dummy && ./$dummy && rm $dummy.c $dummy && exit 0
  430. rm -f $dummy.c $dummy
  431. echo unknown-hitachi-hiuxwe2
  432. exit 0 ;;
  433.     9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
  434. echo hppa1.1-hp-bsd
  435. exit 0 ;;
  436.     9000/8??:4.3bsd:*:*)
  437. echo hppa1.0-hp-bsd
  438. exit 0 ;;
  439.     hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
  440. echo hppa1.1-hp-osf
  441. exit 0 ;;
  442.     hp8??:OSF1:*:*)
  443. echo hppa1.0-hp-osf
  444. exit 0 ;;
  445.     i?86:OSF1:*:*)
  446. if [ -x /usr/sbin/sysversion ] ; then
  447.     echo ${UNAME_MACHINE}-unknown-osf1mk
  448. else
  449.     echo ${UNAME_MACHINE}-unknown-osf1
  450. fi
  451. exit 0 ;;
  452.     parisc*:Lites*:*:*)
  453. echo hppa1.1-hp-lites
  454. exit 0 ;;
  455.     C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
  456. echo c1-convex-bsd
  457.         exit 0 ;;
  458.     C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
  459. if getsysinfo -f scalar_acc
  460. then echo c32-convex-bsd
  461. else echo c2-convex-bsd
  462. fi
  463.         exit 0 ;;
  464.     C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
  465. echo c34-convex-bsd
  466.         exit 0 ;;
  467.     C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
  468. echo c38-convex-bsd
  469.         exit 0 ;;
  470.     C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
  471. echo c4-convex-bsd
  472.         exit 0 ;;
  473.     CRAY*X-MP:*:*:*)
  474. echo xmp-cray-unicos
  475.         exit 0 ;;
  476.     CRAY*Y-MP:*:*:*)
  477. echo ymp-cray-unicos${UNAME_RELEASE}
  478. exit 0 ;;
  479.     CRAY*[A-Z]90:*:*:*)
  480. echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} 
  481. | sed -e 's/CRAY.*([A-Z]90)/1/' 
  482.       -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/
  483. exit 0 ;;
  484.     CRAY*TS:*:*:*)
  485. echo t90-cray-unicos${UNAME_RELEASE}
  486. exit 0 ;;
  487.     CRAY*T3E:*:*:*)
  488. echo t3e-cray-unicosmk${UNAME_RELEASE}
  489. exit 0 ;;
  490.     CRAY-2:*:*:*)
  491. echo cray2-cray-unicos
  492.         exit 0 ;;
  493.     F300:UNIX_System_V:*:*)
  494.         FUJITSU_SYS=`uname -p | tr [A-Z] [a-z] | sed -e 's////'`
  495.         FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
  496.         echo "f300-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
  497.         exit 0 ;;
  498.     F301:UNIX_System_V:*:*)
  499.        echo f301-fujitsu-uxpv`echo $UNAME_RELEASE | sed 's/ .*//'`
  500.        exit 0 ;;
  501.     hp3[0-9][05]:NetBSD:*:*)
  502. echo m68k-hp-netbsd${UNAME_RELEASE}
  503. exit 0 ;;
  504.     hp300:OpenBSD:*:*)
  505. echo m68k-unknown-openbsd${UNAME_RELEASE}
  506. exit 0 ;;
  507.     sparc*:BSD/OS:*:*)
  508. echo sparc-unknown-bsdi${UNAME_RELEASE}
  509. exit 0 ;;
  510.     i?86:BSD/386:*:* | i?86:BSD/OS:*:*)
  511. echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
  512. exit 0 ;;
  513.     *:BSD/OS:*:*)
  514. echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
  515. exit 0 ;;
  516.     *:FreeBSD:*:*)
  517. echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
  518. exit 0 ;;
  519.     *:NetBSD:*:*)
  520. echo ${UNAME_MACHINE}-unknown-netbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/./'`
  521. exit 0 ;;
  522.     *:OpenBSD:*:*)
  523. echo ${UNAME_MACHINE}-unknown-openbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/./'`
  524. exit 0 ;;
  525.     i*:CYGWIN*:*)
  526. echo ${UNAME_MACHINE}-pc-cygwin
  527. exit 0 ;;
  528.     i*:MINGW*:*)
  529. echo ${UNAME_MACHINE}-pc-mingw32
  530. exit 0 ;;
  531.     p*:CYGWIN*:*)
  532. echo powerpcle-unknown-cygwin
  533. exit 0 ;;
  534.     prep*:SunOS:5.*:*)
  535. echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
  536. exit 0 ;;
  537.     *:GNU:*:*)
  538. echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
  539. exit 0 ;;
  540.     *:Linux:*:*)
  541. # uname on the ARM produces all sorts of strangeness, and we need to
  542. # filter it out.
  543. case "$UNAME_MACHINE" in
  544.   arm* | sa110*)       UNAME_MACHINE="arm" ;;
  545. esac
  546. # The BFD linker knows what the default object file format is, so
  547. # first see if it will tell us.
  548. ld_help_string=`ld --help 2>&1`
  549. ld_supported_emulations=`echo $ld_help_string 
  550.  | sed -ne '/supported emulations:/!d
  551.     s/[  ][  ]*/ /g
  552.     s/.*supported emulations: *//
  553.     s/ .*//
  554.     p'`
  555.         case "$ld_supported_emulations" in
  556.   i?86linux)  echo "${UNAME_MACHINE}-pc-linux-gnuaout"      ; exit 0 ;;
  557.   i?86coff)   echo "${UNAME_MACHINE}-pc-linux-gnucoff"      ; exit 0 ;;
  558.   sparclinux) echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;;
  559.   armlinux)   echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;;
  560.   m68klinux)  echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;;
  561.   elf32ppc)   echo "powerpc-unknown-linux-gnu"              ; exit 0 ;;
  562. esac
  563. if test "${UNAME_MACHINE}" = "alpha" ; then
  564. sed 's/^ //'  <<EOF >$dummy.s
  565. .globl main
  566. .ent main
  567. main:
  568. .frame $30,0,$26,0
  569. .prologue 0
  570. .long 0x47e03d80 # implver $0
  571. lda $2,259
  572. .long 0x47e20c21 # amask $2,$1
  573. srl $1,8,$2
  574. sll $2,2,$2
  575. sll $0,3,$0
  576. addl $1,$0,$0
  577. addl $2,$0,$0
  578. ret $31,($26),1
  579. .end main
  580. EOF
  581. LIBC=""
  582. ${CC-cc} $dummy.s -o $dummy 2>/dev/null
  583. if test "$?" = 0 ; then
  584. ./$dummy
  585. case "$?" in
  586. 7)
  587. UNAME_MACHINE="alpha"
  588. ;;
  589. 15)
  590. UNAME_MACHINE="alphaev5"
  591. ;;
  592. 14)
  593. UNAME_MACHINE="alphaev56"
  594. ;;
  595. 10)
  596. UNAME_MACHINE="alphapca56"
  597. ;;
  598. 16)
  599. UNAME_MACHINE="alphaev6"
  600. ;;
  601. esac
  602. objdump --private-headers $dummy | 
  603.   grep ld.so.1 > /dev/null
  604. if test "$?" = 0 ; then
  605. LIBC="libc1"
  606. fi
  607. fi
  608. rm -f $dummy.s $dummy
  609. echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} ; exit 0
  610. elif test "${UNAME_MACHINE}" = "mips" ; then
  611.   cat >$dummy.c <<EOF
  612. main(argc, argv)
  613.      int argc;
  614.      char *argv[];
  615. {
  616. #ifdef __MIPSEB__
  617.   printf ("%s-unknown-linux-gnun", argv[1]);
  618. #endif
  619. #ifdef __MIPSEL__
  620.   printf ("%sel-unknown-linux-gnun", argv[1]);
  621. #endif
  622.   return 0;
  623. }
  624. EOF
  625.   ${CC-cc} $dummy.c -o $dummy 2>/dev/null && ./$dummy "${UNAME_MACHINE}" && rm $dummy.c $dummy && exit 0
  626.   rm -f $dummy.c $dummy
  627. else
  628.   # Either a pre-BFD a.out linker (linux-gnuoldld)
  629.   # or one that does not give us useful --help.
  630.   # GCC wants to distinguish between linux-gnuoldld and linux-gnuaout.
  631.   # If ld does not provide *any* "supported emulations:"
  632.   # that means it is gnuoldld.
  633.   echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations:"
  634.   test $? != 0 && echo "${UNAME_MACHINE}-pc-linux-gnuoldld" && exit 0
  635.   case "${UNAME_MACHINE}" in
  636.   i?86)
  637.     VENDOR=pc;
  638.     ;;
  639.   *)
  640.     VENDOR=unknown;
  641.     ;;
  642.   esac
  643.   # Determine whether the default compiler is a.out or elf
  644.   cat >$dummy.c <<EOF
  645. #include <features.h>
  646. main(argc, argv)
  647.      int argc;
  648.      char *argv[];
  649. {
  650. #ifdef __ELF__
  651. # ifdef __GLIBC__
  652. #  if __GLIBC__ >= 2
  653.     printf ("%s-${VENDOR}-linux-gnun", argv[1]);
  654. #  else
  655.     printf ("%s-${VENDOR}-linux-gnulibc1n", argv[1]);
  656. #  endif
  657. # else
  658.    printf ("%s-${VENDOR}-linux-gnulibc1n", argv[1]);
  659. # endif
  660. #else
  661.   printf ("%s-${VENDOR}-linux-gnuaoutn", argv[1]);
  662. #endif
  663.   return 0;
  664. }
  665. EOF
  666.   ${CC-cc} $dummy.c -o $dummy 2>/dev/null && ./$dummy "${UNAME_MACHINE}" && rm $dummy.c $dummy && exit 0
  667.   rm -f $dummy.c $dummy
  668. fi ;;
  669. # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.  earlier versions
  670. # are messed up and put the nodename in both sysname and nodename.
  671.     i?86:DYNIX/ptx:4*:*)
  672. echo i386-sequent-sysv4
  673. exit 0 ;;
  674.     i?86:UNIX_SV:4.2MP:2.*)
  675.         # Unixware is an offshoot of SVR4, but it has its own version
  676.         # number series starting with 2...
  677.         # I am not positive that other SVR4 systems won't match this,
  678. # I just have to hope.  -- rms.
  679.         # Use sysv4.2uw... so that sysv4* matches it.
  680. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
  681. exit 0 ;;
  682.     i?86:*:4.*:* | i?86:SYSTEM_V:4.*:*)
  683. if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
  684. echo ${UNAME_MACHINE}-univel-sysv${UNAME_RELEASE}
  685. else
  686. echo ${UNAME_MACHINE}-pc-sysv${UNAME_RELEASE}
  687. fi
  688. exit 0 ;;
  689.     i?86:*:3.2:*)
  690. if test -f /usr/options/cb.name; then
  691. UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
  692. echo ${UNAME_MACHINE}-pc-isc$UNAME_REL
  693. elif /bin/uname -X 2>/dev/null >/dev/null ; then
  694. UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')`
  695. (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486
  696. (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) 
  697. && UNAME_MACHINE=i586
  698. echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
  699. else
  700. echo ${UNAME_MACHINE}-pc-sysv32
  701. fi
  702. exit 0 ;;
  703.     i?86:UnixWare:*:*)
  704. if /bin/uname -X 2>/dev/null >/dev/null ; then
  705.   (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) 
  706.     && UNAME_MACHINE=i586
  707. fi
  708. echo ${UNAME_MACHINE}-unixware-${UNAME_RELEASE}-${UNAME_VERSION}
  709. exit 0 ;;
  710.     pc:*:*:*)
  711.         # uname -m prints for DJGPP always 'pc', but it prints nothing about
  712.         # the processor, so we play safe by assuming i386.
  713. echo i386-pc-msdosdjgpp
  714.         exit 0 ;;
  715.     Intel:Mach:3*:*)
  716. echo i386-pc-mach3
  717. exit 0 ;;
  718.     paragon:*:*:*)
  719. echo i860-intel-osf1
  720. exit 0 ;;
  721.     i860:*:4.*:*) # i860-SVR4
  722. if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
  723.   echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
  724. else # Add other i860-SVR4 vendors below as they are discovered.
  725.   echo i860-unknown-sysv${UNAME_RELEASE}  # Unknown i860-SVR4
  726. fi
  727. exit 0 ;;
  728.     mini*:CTIX:SYS*5:*)
  729. # "miniframe"
  730. echo m68010-convergent-sysv
  731. exit 0 ;;
  732.     M68*:*:R3V[567]*:*)
  733. test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;;
  734.     3[34]??:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 4850:*:4.0:3.0)
  735. OS_REL=''
  736. test -r /etc/.relid 
  737. && OS_REL=.`sed -n 's/[^ ]* [^ ]* ([0-9][0-9]).*/1/p' < /etc/.relid`
  738. /bin/uname -p 2>/dev/null | grep 86 >/dev/null 
  739.   && echo i486-ncr-sysv4.3${OS_REL} && exit 0
  740. /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null 
  741.   && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;;
  742.     3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
  743.         /bin/uname -p 2>/dev/null | grep 86 >/dev/null 
  744.           && echo i486-ncr-sysv4 && exit 0 ;;
  745.     m68*:LynxOS:2.*:*)
  746. echo m68k-unknown-lynxos${UNAME_RELEASE}
  747. exit 0 ;;
  748.     mc68030:UNIX_System_V:4.*:*)
  749. echo m68k-atari-sysv4
  750. exit 0 ;;
  751.     i?86:LynxOS:2.*:*)
  752. echo i386-unknown-lynxos${UNAME_RELEASE}
  753. exit 0 ;;
  754.     TSUNAMI:LynxOS:2.*:*)
  755. echo sparc-unknown-lynxos${UNAME_RELEASE}
  756. exit 0 ;;
  757.     rs6000:LynxOS:2.*:* | PowerPC:LynxOS:2.*:*)
  758. echo rs6000-unknown-lynxos${UNAME_RELEASE}
  759. exit 0 ;;
  760.     SM[BE]S:UNIX_SV:*:*)
  761. echo mips-dde-sysv${UNAME_RELEASE}
  762. exit 0 ;;
  763.     RM*:SINIX-*:*:*)
  764. echo mips-sni-sysv4
  765. exit 0 ;;
  766.     *:SINIX-*:*:*)
  767. if uname -p 2>/dev/null >/dev/null ; then
  768. UNAME_MACHINE=`(uname -p) 2>/dev/null`
  769. echo ${UNAME_MACHINE}-sni-sysv4
  770. else
  771. echo ns32k-sni-sysv
  772. fi
  773. exit 0 ;;
  774.     PENTIUM:CPunix:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
  775.                            # says <Richard.M.Bartel@ccMail.Census.GOV>
  776.         echo i586-unisys-sysv4
  777.         exit 0 ;;
  778.     *:UNIX_System_V:4*:FTX*)
  779. # From Gerald Hewes <hewes@openmarket.com>.
  780. # How about differentiating between stratus architectures? -djm
  781. echo hppa1.1-stratus-sysv4
  782. exit 0 ;;
  783.     *:*:*:FTX*)
  784. # From seanf@swdc.stratus.com.
  785. echo i860-stratus-sysv4
  786. exit 0 ;;
  787.     mc68*:A/UX:*:*)
  788. echo m68k-apple-aux${UNAME_RELEASE}
  789. exit 0 ;;
  790.     news*:NEWS-OS:*:6*)
  791. echo mips-sony-newsos6
  792. exit 0 ;;
  793.     R3000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R4000:UNIX_SV:*:*)
  794. if [ -d /usr/nec ]; then
  795.         echo mips-nec-sysv${UNAME_RELEASE}
  796. else
  797.         echo mips-unknown-sysv${UNAME_RELEASE}
  798. fi
  799.         exit 0 ;;
  800.     BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only.
  801. echo powerpc-be-beos
  802. exit 0 ;;
  803.     BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only.
  804. echo powerpc-apple-beos
  805. exit 0 ;;
  806.     BePC:BeOS:*:*) # BeOS running on Intel PC compatible.
  807. echo i586-pc-beos
  808. exit 0 ;;
  809.     SX-4:SUPER-UX:*:*)
  810. echo sx4-nec-superux${UNAME_RELEASE}
  811. exit 0 ;;
  812.     SX-5:SUPER-UX:*:*)
  813. echo sx5-nec-superux${UNAME_RELEASE}
  814. exit 0 ;;
  815.     Power*:Rhapsody:*:*)
  816. echo powerpc-apple-rhapsody${UNAME_RELEASE}
  817. exit 0 ;;
  818.     *:Rhapsody:*:*)
  819. echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
  820. exit 0 ;;
  821. esac
  822. #echo '(No uname command or uname output not recognized.)' 1>&2
  823. #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2
  824. cat >$dummy.c <<EOF
  825. #ifdef _SEQUENT_
  826. # include <sys/types.h>
  827. # include <sys/utsname.h>
  828. #endif
  829. main ()
  830. {
  831. #if defined (sony)
  832. #if defined (MIPSEB)
  833.   /* BFD wants "bsd" instead of "newsos".  Perhaps BFD should be changed,
  834.      I don't know....  */
  835.   printf ("mips-sony-bsdn"); exit (0);
  836. #else
  837. #include <sys/param.h>
  838.   printf ("m68k-sony-newsos%sn",
  839. #ifdef NEWSOS4
  840.           "4"
  841. #else
  842.   ""
  843. #endif
  844.          ); exit (0);
  845. #endif
  846. #endif
  847. #if defined (__arm) && defined (__acorn) && defined (__unix)
  848.   printf ("arm-acorn-riscix"); exit (0);
  849. #endif
  850. #if defined (hp300) && !defined (hpux)
  851.   printf ("m68k-hp-bsdn"); exit (0);
  852. #endif
  853. #if defined (NeXT)
  854. #if !defined (__ARCHITECTURE__)
  855. #define __ARCHITECTURE__ "m68k"
  856. #endif
  857.   int version;
  858.   version=`(hostinfo | sed -n 's/.*NeXT Mach ([0-9]*).*/1/p') 2>/dev/null`;
  859.   if (version < 4)
  860.     printf ("%s-next-nextstep%dn", __ARCHITECTURE__, version);
  861.   else
  862.     printf ("%s-next-openstep%dn", __ARCHITECTURE__, version);
  863.   exit (0);
  864. #endif
  865. #if defined (MULTIMAX) || defined (n16)
  866. #if defined (UMAXV)
  867.   printf ("ns32k-encore-sysvn"); exit (0);
  868. #else
  869. #if defined (CMU)
  870.   printf ("ns32k-encore-machn"); exit (0);
  871. #else
  872.   printf ("ns32k-encore-bsdn"); exit (0);
  873. #endif
  874. #endif
  875. #endif
  876. #if defined (__386BSD__)
  877.   printf ("i386-pc-bsdn"); exit (0);
  878. #endif
  879. #if defined (sequent)
  880. #if defined (i386)
  881.   printf ("i386-sequent-dynixn"); exit (0);
  882. #endif
  883. #if defined (ns32000)
  884.   printf ("ns32k-sequent-dynixn"); exit (0);
  885. #endif
  886. #endif
  887. #if defined (_SEQUENT_)
  888.     struct utsname un;
  889.     uname(&un);
  890.     if (strncmp(un.version, "V2", 2) == 0) {
  891. printf ("i386-sequent-ptx2n"); exit (0);
  892.     }
  893.     if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
  894. printf ("i386-sequent-ptx1n"); exit (0);
  895.     }
  896.     printf ("i386-sequent-ptxn"); exit (0);
  897. #endif
  898. #if defined (vax)
  899. #if !defined (ultrix)
  900.   printf ("vax-dec-bsdn"); exit (0);
  901. #else
  902.   printf ("vax-dec-ultrixn"); exit (0);
  903. #endif
  904. #endif
  905. #if defined (alliant) && defined (i860)
  906.   printf ("i860-alliant-bsdn"); exit (0);
  907. #endif
  908.   exit (1);
  909. }
  910. EOF
  911. ${CC-cc} $dummy.c -o $dummy 2>/dev/null && ./$dummy && rm $dummy.c $dummy && exit 0
  912. rm -f $dummy.c $dummy
  913. # Apollos put the system type in the environment.
  914. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; }
  915. # Convex versions that predate uname can use getsysinfo(1)
  916. if [ -x /usr/convex/getsysinfo ]
  917. then
  918.     case `getsysinfo -f cpu_type` in
  919.     c1*)
  920. echo c1-convex-bsd
  921. exit 0 ;;
  922.     c2*)
  923. if getsysinfo -f scalar_acc
  924. then echo c32-convex-bsd
  925. else echo c2-convex-bsd
  926. fi
  927. exit 0 ;;
  928.     c34*)
  929. echo c34-convex-bsd
  930. exit 0 ;;
  931.     c38*)
  932. echo c38-convex-bsd
  933. exit 0 ;;
  934.     c4*)
  935. echo c4-convex-bsd
  936. exit 0 ;;
  937.     esac
  938. fi
  939. #echo '(Unable to guess system type)' 1>&2
  940. exit 1