* Move "set remotebaud" from remote-utils.c to main.c to it applies
[binutils-gdb.git] / config.guess
index 923e0706fc4e0fbcfc97654bb514c8821d1ebd8c..f2507b19d99e9d1eee48125a4c43c5c67a346b03 100755 (executable)
@@ -38,8 +38,13 @@ UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
 
 case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
     alpha:OSF1:1.*:*)
+       # 1.2 uses "1.2" for uname -r.
        echo alpha-dec-osf${UNAME_RELEASE}
         exit 0 ;;
+    alpha:OSF1:V1.*:*)
+       # 1.3 uses "V1.3" for uname -r.
+       echo alpha-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^V//'`
+       exit 0 ;;
     sun4*:SunOS:5.*:*)
        echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
        exit 0 ;;
@@ -61,6 +66,9 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
     VAX*:ULTRIX*:*:*)
        echo vax-dec-ultrix${UNAME_RELEASE}
        exit 0 ;;
+    mips:*:5*:RISCos)
+       echo mips-mips-riscos${UNAME_RELEASE}
+       exit 0 ;;
     m88k:*:4*:R4*)
        echo m88k-motorola-sysv4
        exit 0 ;;
@@ -82,18 +90,60 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
     *:BOSX:*:*)
        echo rs6000-bull-bosx
        exit 0 ;;
+    DPX/2?00:B.O.S.:*:*)
+       echo m68k-bull-sysv3
+       exit 0 ;;
     9000/31?:HP-UX:*:*)
        echo m68000-hp-hpux
        exit 0 ;;
-    9000/3??:HP-UX:*:*)
+    9000/[34]??:HP-UX:*:*)
        echo m68k-hp-hpux
        exit 0 ;;
+    9000/[34]??:4.3bsd:1.*:*)
+       echo m68k-hp-bsd
+       exit 0 ;;
+    hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
+       echo m68k-hp-bsd4.4
+       exit 0 ;;
     9000/7??:HP-UX:*:* | 9000/8?7:HP-UX:*:* )
        echo hppa1.1-hp-hpux
        exit 0 ;;
     9000/8??:HP-UX:*:*)
        echo hppa1.0-hp-hpux
        exit 0 ;;
+    3050*:HI-UX:*:*)
+       sed 's/^        //' << EOF >dummy.c
+       #include <unistd.h>
+       int
+       main ()
+       {
+         long cpu = sysconf (_SC_CPU_VERSION);
+         if (CPU_IS_HP_MC68K (cpu))
+           puts ("m68k-hitachi-hiuxwe2");
+         else if (CPU_IS_PA_RISC (cpu))
+           {
+             switch (cpu)
+               {
+                 case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break;
+                 case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break;
+                 case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break;
+                 default: puts ("hppa-hitachi-hiuxwe2"); break;
+               }
+           }
+         else puts ("unknown-hitachi-hiuxwe2");
+         exit (0);
+       }
+EOF
+       ${CC-cc} dummy.c -o dummy && ./dummy && rm dummy.c dummy && exit 0
+       rm -f dummy.c dummy
+       echo unknown-hitachi-hiuxwe2
+       exit 0 ;;
+    9000/7??:4.3bsd:*:* | 9000/8?7:4.3bsd:*:* )
+       echo hppa1.1-hp-bsd
+       exit 0 ;;
+    9000/8??:4.3bsd:*:*)
+       echo hppa1.0-hp-bsd
+       exit 0 ;;
     C1*:ConvexOS:*:*)
        echo c1-convex-bsd
         exit 0 ;;
@@ -109,6 +159,12 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
     CRAY-2:UNICOS:*:*)
        echo cray2-cray-unicos
         exit 0 ;;
+    hp3[0-9][05]:NetBSD:*:*)
+       echo m68k-hp-netbsd${UNAME_RELEASE}
+       exit 0 ;;
+    i[34]86:NetBSD:*:*)
+       echo ${UNAME_MACHINE}-unknown-netbsd${UNAME_RELEASE}
+       exit 0 ;;
     i[34]86:Linux:*:*)
        echo ${UNAME_MACHINE}-unknown-linux
        exit 0 ;;
@@ -132,11 +188,14 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
        # "miniframe"
        echo m68010-convergent-sysv
        exit 0 ;;
-     M680[234]0:*:R3V[567]*:*)
+    M680[234]0:*:R3V[567]*:*)
        test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;;
+    3[34]??:*:4.0:*)
+       uname -p 2>/dev/null | grep 86 >/dev/null \
+         && echo i486-ncr-sysv4 && exit 0 ;;
 esac
 
-echo '(No uname command or uname output not recognized.)' 1>&2
+#echo '(No uname command or uname output not recognized.)' 1>&2
 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2
 
 cat >dummy.c <<EOF
@@ -153,6 +212,10 @@ main()
   printf("m68k-hp-bsd\n"); exit(0);
 #endif
 
+#if defined(NeXT)
+  printf("m68k-next-bsd\n"); exit(0);
+#endif
+
 #if defined (MULTIMAX) || defined (n16)
 #if defined (UMAXV)
   printf("ns32k-encore-sysv\n"); exit(0);
@@ -189,6 +252,6 @@ EOF
 ${CC-cc} dummy.c -o dummy && ./dummy && rm dummy.c dummy && exit 0
 rm -f dummy.c dummy
 
-echo '(Unable to guess system type)' 1>&2
+#echo '(Unable to guess system type)' 1>&2
 
 exit 1