[Scummvm-git-logs] scummvm master -> 3e49159bf7c53264761ae3244df2b37605ae0a33

sev- noreply at scummvm.org
Tue Mar 7 19:42:02 UTC 2023


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
3e49159bf7 CONFIGURE: Recognize more common architectures, and sort them


Commit: 3e49159bf7c53264761ae3244df2b37605ae0a33
    https://github.com/scummvm/scummvm/commit/3e49159bf7c53264761ae3244df2b37605ae0a33
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2023-03-07T20:41:57+01:00

Commit Message:
CONFIGURE: Recognize more common architectures, and sort them

Changed paths:
    configure


diff --git a/configure b/configure
index f063110c182..1b0c8b99679 100755
--- a/configure
+++ b/configure
@@ -865,7 +865,7 @@ Special configuration feature:
                                            psp for PlayStation Portable
                                            samsungtv for Samsung TV
                                            switch for Nintendo Switch
-										   tvos for Apple TV (tvOS 9.0+)
+                                           tvos for Apple TV (tvOS 9.0+)
                                            wasm32-unknown-emscripten for WebAssembly
                                            wii for Nintendo Wii
 
@@ -2623,8 +2623,14 @@ define_in_config_h_if_yes $_need_memalign 'SCUMM_NEED_ALIGNMENT'
 #
 echo_n "Checking host CPU architecture... "
 case $_host_cpu in
+	aarch64)
+		echo "aarch64"
+		;;
+	alpha*)
+		echo "Alpha"
+		;;
 	arm*)
-		echo "arm"
+		echo "ARM"
 		case $_host in
 			openpandora)
 				define_in_config_if_yes yes 'USE_ARM_NEON_ASPECT_CORRECTOR'
@@ -2641,14 +2647,20 @@ case $_host_cpu in
 
 		append_var DEFINES "-DARM_TARGET"
 		;;
-	aarch64)
-		echo "aarch64"
+	hppa* | parisc*)
+		echo "PA-RISC"
 		;;
 	i[3-6]86)
 		echo "x86"
 		_have_x86=yes
 		define_in_config_h_if_yes $_have_x86 'HAVE_X86'
 		;;
+	ia64*)
+		echo "Itanium"
+		;;
+	m68*)
+		echo "m68k"
+		;;
 	mips*)
 		echo "MIPS"
 		append_var DEFINES "-DMIPS_TARGET"
@@ -2657,14 +2669,23 @@ case $_host_cpu in
 		echo "PowerPC"
 		append_var DEFINES "-DPPC_TARGET"
 		;;
-	amd64 | x86_64)
-		echo "x86_64"
-		_have_amd64=yes
-		define_in_config_h_if_yes $_have_amd64 'HAVE_AMD64'
+	riscv*)
+		echo "RISC-V"
+		;;
+	sh*)
+		echo "SuperH"
+		;;
+	sparc*)
+		echo "SPARC"
 		;;
 	wasm32)
 		echo "wasm32"
 		;;
+	x86_64 | amd64)
+		echo "x86_64"
+		_have_amd64=yes
+		define_in_config_h_if_yes $_have_amd64 'HAVE_AMD64'
+		;;
 	*)
 		echo "unknown ($_host_cpu)"
 		;;




More information about the Scummvm-git-logs mailing list