[Scummvm-git-logs] scummvm master -> de9287759b970ab1718d3c48c606b402ff4fd365

sev- noreply at scummvm.org
Mon Nov 20 14:26:52 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:
de9287759b Revert "IOS7: Disable SCUMMVM_NEON in iOS builds"


Commit: de9287759b970ab1718d3c48c606b402ff4fd365
    https://github.com/scummvm/scummvm/commit/de9287759b970ab1718d3c48c606b402ff4fd365
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2023-11-20T15:25:52+01:00

Commit Message:
Revert "IOS7: Disable SCUMMVM_NEON in iOS builds"

This reverts commit f6585ae5f5787fa9f8fce87f983511dc077e0695.

Since the NEON codepath was fixed by fracturehill

Changed paths:
    configure
    devtools/create_project/xcode.cpp


diff --git a/configure b/configure
index 708c5e5c3ab..e8cba710fa0 100755
--- a/configure
+++ b/configure
@@ -3680,7 +3680,7 @@ if test -n "$_host"; then
 			_backend="ios7"
 			_seq_midi=no
 			_timidity=no
-			_ext_neon=no
+			_ext_neon=yes
 			;;
 		kos32)
 			# neither pkg-config nor *-config work, so we setup everything manually
diff --git a/devtools/create_project/xcode.cpp b/devtools/create_project/xcode.cpp
index c6bc12a87f6..add9efdf1ef 100644
--- a/devtools/create_project/xcode.cpp
+++ b/devtools/create_project/xcode.cpp
@@ -1412,7 +1412,7 @@ void XcodeProvider::setupBuildConfiguration(const BuildSetup &setup) {
 	// Separate iphoneos and iphonesimulator definitions since simulator running on x86_64
 	// hosts doesn't support NEON
 	ValueList scummvmIOS_defines = scummvmIOSsimulator_defines;
-	//	ADD_DEFINE(scummvmIOS_defines, "SCUMMVM_NEON");
+	ADD_DEFINE(scummvmIOS_defines, "SCUMMVM_NEON");
 	ADD_SETTING_LIST(iPhone_Debug, "\"GCC_PREPROCESSOR_DEFINITIONS[sdk=iphoneos*]\"", scummvmIOS_defines, kSettingsNoQuote | kSettingsAsList, 5);
 	ADD_SETTING(iPhone_Debug, "ASSETCATALOG_COMPILER_APPICON_NAME", "AppIcon");
 	ADD_SETTING(iPhone_Debug, "ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME", "LaunchImage");
@@ -1575,7 +1575,7 @@ void XcodeProvider::setupBuildConfiguration(const BuildSetup &setup) {
 	// Separate appletvos and appletvsimulator definitions since simulator running on x86_64
 	// hosts doesn't support NEON
 	ValueList scummvmTVOS_defines = scummvmTVOSsimulator_defines;
-	//	ADD_DEFINE(scummvmTVOS_defines, "SCUMMVM_NEON");
+	ADD_DEFINE(scummvmTVOS_defines, "SCUMMVM_NEON");
 	ADD_SETTING_LIST(tvOS_Debug, "\"GCC_PREPROCESSOR_DEFINITIONS[sdk=appletvos*]\"", scummvmTVOS_defines, kSettingsNoQuote | kSettingsAsList, 5);
 	ADD_SETTING(tvOS_Debug, "ASSETCATALOG_COMPILER_APPICON_NAME", "AppIcon");
 	ADD_SETTING(tvOS_Debug, "ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME", "LaunchImage");




More information about the Scummvm-git-logs mailing list