[Scummvm-git-logs] scummvm master -> 7cf76b22fadf783c5d6d066bee4a0ec67a6e6609

sev- noreply at scummvm.org
Sat Aug 12 22:24:04 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:
7cf76b22fa CONFIGURE: Fix architecture names for CPU features


Commit: 7cf76b22fadf783c5d6d066bee4a0ec67a6e6609
    https://github.com/scummvm/scummvm/commit/7cf76b22fadf783c5d6d066bee4a0ec67a6e6609
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2023-08-13T00:23:41+02:00

Commit Message:
CONFIGURE: Fix architecture names for CPU features

Changed paths:
    configure


diff --git a/configure b/configure
index 7904df0ca90..861ec5176b6 100755
--- a/configure
+++ b/configure
@@ -982,9 +982,9 @@ Optional Features:
   --disable-windows-console do not show console output on Windows
   --enable-windows-unicode  use Windows Unicode APIs (default)
   --disable-windows-unicode use Windows ANSI APIs
-  --enable-ext-sse2         allow code to use sse2 extensions on x86/64
-  --enable-ext-avx2         allow code to use avx2 extensions on x86/64
-  --enable-ext-neon         allow code to use neon extensions on Arm
+  --enable-ext-sse2         allow code to use sse2 extensions on x86/amd64
+  --enable-ext-avx2         allow code to use avx2 extensions on x86/amd64
+  --enable-ext-neon         allow code to use neon extensions on ARM
 
 Optional Documentation Options:
   --with-manual-version=VERSION version to use when generating the manual (optional)
@@ -6916,13 +6916,13 @@ case $_host_cpu in
 esac
 
 define_in_config_if_yes "$_ext_sse2" 'SCUMMVM_SSE2'
-echo_n "Enabling x86/64 SSE2... "
+echo_n "Enabling x86/amd64 SSE2... "
 echo "$_ext_sse2"
 define_in_config_if_yes "$_ext_avx2" 'SCUMMVM_AVX2'
-echo_n "Enabling x86/64 AVX2... "
+echo_n "Enabling x86/amd64 AVX2... "
 echo "$_ext_avx2"
 define_in_config_if_yes "$_ext_neon" 'SCUMMVM_NEON'
-echo_n "Enabling Arm NEON... "
+echo_n "Enabling ARM NEON... "
 echo "$_ext_neon"
 
 echo_n "Backend... "




More information about the Scummvm-git-logs mailing list