From edd70cec60201e84247a2e28bba0fd51d1c7b58f Mon Sep 17 00:00:00 2001 From: Garrett Brown Date: Thu, 11 Jan 2024 22:08:10 +0000 Subject: [PATCH] Updated by kodi-game-scripting https://github.com/kodi-game/kodi-game-scripting/ --- Jenkinsfile | 2 +- depends/common/mame2003/CMakeLists.txt | 7 ++++++- depends/windows/mingw/mingw.sha256 | 2 +- depends/windows/mingw/mingw.txt | 2 +- game.libretro.mame2003/addon.xml.in | 2 +- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a4c5f12..aaa3557 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1 +1 @@ -buildPlugin(version: "Nexus", platforms: ["android-aarch64", "android-armv7", "osx-x86_64", "windows-i686", "windows-x86_64"]) +buildPlugin(version: "Nexus", platforms: ["android-aarch64", "android-armv7", "osx-x86_64", "osx-arm64", "windows-i686", "windows-x86_64"]) diff --git a/depends/common/mame2003/CMakeLists.txt b/depends/common/mame2003/CMakeLists.txt index 90f5fbc..78496b7 100644 --- a/depends/common/mame2003/CMakeLists.txt +++ b/depends/common/mame2003/CMakeLists.txt @@ -26,7 +26,12 @@ if(CORE_SYSTEM_NAME STREQUAL windows) elseif(CORE_SYSTEM_NAME STREQUAL linux) set(BUILD_COMMAND $(MAKE) -C . -f Makefile platform=unix ${LIBRETRO_DEBUG} GIT_VERSION=) elseif(CORE_SYSTEM_NAME STREQUAL osx) - set(BUILD_COMMAND $(MAKE) -C . -f Makefile platform=osx ${LIBRETRO_DEBUG} GIT_VERSION=) + if(CPU STREQUAL arm64) + set(ARCH arm) + else() + set(ARCH intel) + endif() + set(BUILD_COMMAND $(MAKE) -C . -f Makefile platform=osx arch=${ARCH} ${LIBRETRO_DEBUG} GIT_VERSION=) elseif(CORE_SYSTEM_NAME STREQUAL ios OR CORE_SYSTEM_NAME STREQUAL darwin_embedded) if(CORE_PLATFORM_NAME STREQUAL ios) set(LIBRETRO_SONAME mame2003_libretro_ios${CMAKE_SHARED_LIBRARY_SUFFIX}) diff --git a/depends/windows/mingw/mingw.sha256 b/depends/windows/mingw/mingw.sha256 index 3398fc6..b4768dc 100644 --- a/depends/windows/mingw/mingw.sha256 +++ b/depends/windows/mingw/mingw.sha256 @@ -1 +1 @@ -fa75120560563a311241c05882016978bd35612692c7f0d39815a27837bff27d +4013a9d5e51b448343efc24fc6a324cc999bb96b4c01b13a6bd3c661bb5c8a82 diff --git a/depends/windows/mingw/mingw.txt b/depends/windows/mingw/mingw.txt index dfd57e1..b79b9bd 100644 --- a/depends/windows/mingw/mingw.txt +++ b/depends/windows/mingw/mingw.txt @@ -1 +1 @@ -mingw http://mirrors.kodi.tv/build-deps/win32/msys2/msys2-base-x86_64-20231026.tar.xz +mingw http://mirrors.kodi.tv/build-deps/win32/msys2/msys2-base-x86_64-20210725.tar.xz diff --git a/game.libretro.mame2003/addon.xml.in b/game.libretro.mame2003/addon.xml.in index ac3e3a9..315f87b 100644 --- a/game.libretro.mame2003/addon.xml.in +++ b/game.libretro.mame2003/addon.xml.in @@ -1,7 +1,7 @@