From fdddd3c042bdf76e111f29c436d7e51bfdb67178 Mon Sep 17 00:00:00 2001 From: Rudi Heitbaum Date: Tue, 27 May 2025 02:38:43 +0000 Subject: [PATCH] libretro-scummvm: fix findsting armv7 check - ref: https://github.com/libretro/scummvm issues 81 issuecomment-2910940105 --- ...03-libretro-fix-armv7-GCC-15.1-internal-compiler-error.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/emulation/libretro-scummvm/patches/0003-libretro-fix-armv7-GCC-15.1-internal-compiler-error.patch b/packages/emulation/libretro-scummvm/patches/0003-libretro-fix-armv7-GCC-15.1-internal-compiler-error.patch index 29728dfcb3..360ca9d8d6 100644 --- a/packages/emulation/libretro-scummvm/patches/0003-libretro-fix-armv7-GCC-15.1-internal-compiler-error.patch +++ b/packages/emulation/libretro-scummvm/patches/0003-libretro-fix-armv7-GCC-15.1-internal-compiler-error.patch @@ -15,7 +15,7 @@ index 0181825bfbbc..383a25cab706 100644 DEFINES += -Os else ifneq (,$(findstring $(platform), ios osx)) DEFINES += -O1 -+else ifneq (,$(findstring $(platform), armv7)) # fixes a GCC 15.1 internal compiler error. TODO check if it is fixed in GCC newer releases. ++else ifneq (,$(findstring armv7, $(platform))) # fixes a GCC 15.1 internal compiler error. TODO check if it is fixed in GCC newer releases. + DEFINES += -O1 else ifneq (,$(findstring $(platform), msvc genode rpi)) DEFINES += -O2