[BACK]Return to config.guess CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2018

Annotation of OpenXM_contrib2/asir2018/config.guess, Revision 1.2

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>