about summary refs log tree commit diff
path: root/scripts/config.guess
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-01-25 18:16:36 +0000
committerUlrich Drepper <drepper@redhat.com>1999-01-25 18:16:36 +0000
commit0dbd556796f099b54bcfbdec5b1baa2f4d1ab940 (patch)
tree12693509c1f5eb18705076510392f3f4fcfeec91 /scripts/config.guess
parentaaff4ba9a63d3bf8ba2df5ca18f15ab9681f17ee (diff)
downloadglibc-0dbd556796f099b54bcfbdec5b1baa2f4d1ab940.tar.gz
glibc-0dbd556796f099b54bcfbdec5b1baa2f4d1ab940.tar.xz
glibc-0dbd556796f099b54bcfbdec5b1baa2f4d1ab940.zip
Update.
	* scripts/config.guess: Changes for ARM/Linux.
	* scripts/config.sub: Likewise.
Diffstat (limited to 'scripts/config.guess')
-rwxr-xr-xscripts/config.guess19
1 files changed, 10 insertions, 9 deletions
diff --git a/scripts/config.guess b/scripts/config.guess
index 329821f4e3..6010014b15 100755
--- a/scripts/config.guess
+++ b/scripts/config.guess
@@ -374,21 +374,21 @@ EOF
               sed 's/^              //' << EOF >$dummy.c
               #include <stdlib.h>
               #include <unistd.h>
-              
+
               int main ()
               {
               #if defined(_SC_KERNEL_BITS)
                   long bits = sysconf(_SC_KERNEL_BITS);
-              #endif 
+              #endif
                   long cpu  = sysconf (_SC_CPU_VERSION);
-              
-                  switch (cpu) 
+
+                  switch (cpu)
               	{
               	case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
               	case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
-              	case CPU_PA_RISC2_0: 
+              	case CPU_PA_RISC2_0:
               #if defined(_SC_KERNEL_BITS)
-              	    switch (bits) 
+              	    switch (bits)
               		{
               		case 64: puts ("hppa2.0w"); break;
               		case 32: puts ("hppa2.0n"); break;
@@ -396,7 +396,7 @@ EOF
               		} break;
               #else  /* !defined(_SC_KERNEL_BITS) */
               	    puts ("hppa2.0"); break;
-              #endif 
+              #endif
               	default: puts ("hppa1.0"); break;
               	}
                   exit (0);
@@ -549,6 +549,7 @@ EOF
 	# uname on the ARM produces all sorts of strangeness, and we need to
 	# filter it out.
 	case "$UNAME_MACHINE" in
+	  armv*)		      ;;
 	  arm* | sa110*)	      UNAME_MACHINE="arm" ;;
 	esac
 
@@ -608,14 +609,14 @@ EOF
 			16)
 				UNAME_MACHINE="alphaev6"
 				;;
-			esac	
+			esac
 
 			objdump --private-headers $dummy | \
 			  grep ld.so.1 > /dev/null
 			if test "$?" = 0 ; then
 				LIBC="libc1"
 			fi
-		fi	
+		fi
 		rm -f $dummy.s $dummy
 		echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} ; exit 0
 	elif test "${UNAME_MACHINE}" = "mips" ; then