From 5b40b6a1a6abd7279227841e0f4527fe3ed95e04 Mon Sep 17 00:00:00 2001 From: Garrett Brown Date: Sun, 11 Aug 2024 17:29:58 -0700 Subject: [PATCH] config: Excluded 'android-armv7' platform from vba-next Build error was: /ndk-release-r21/bionic/libc/bionic/locale.cpp:136: error: undefined reference to 'operator new(unsigned int)' /ndk-release-r21/bionic/libc/bionic/locale.cpp:140: error: undefined reference to 'operator delete(void*)' /ndk-release-r21/bionic/libc/bionic/locale.cpp:155: error: undefined reference to 'operator new(unsigned int)' clang++: error: linker command failed with exit code 1 (use -v to see invocation) --- kodi_game_scripting/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kodi_game_scripting/config.py b/kodi_game_scripting/config.py index c1d60dc1..75eac6f3 100644 --- a/kodi_game_scripting/config.py +++ b/kodi_game_scripting/config.py @@ -171,7 +171,7 @@ 'uae': ('libretro-uae', 'Makefile', '.', 'jni', {'soname': 'puae'}), #'uae4arm': ('Chips-fr/uae4arm-rpi', 'Makefile.libretro', '.', 'jni', {}), # Fails to build on non arm system 'uzem': ('libretro-uzem', 'Makefile.libretro', '.', 'jni', {}), - 'vba-next': ('vba-next', 'Makefile', '.', 'libretro/jni', {'soname': 'vba_next'}), + 'vba-next': ('vba-next', 'Makefile', '.', 'libretro/jni', {'soname': 'vba_next', 'exclude_platforms': ['android-armv7']}), 'vbam': ('visualboyadvance-m/visualboyadvance-m', 'Makefile', 'src/libretro', 'src/libretro/jni', {}), 'vecx': ('libretro-vecx', 'Makefile', '.', 'jni', {}), 'vemulator': ('vemulator-libretro', 'Makefile', '.', 'jni', {}),