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

spleen1981 noreply at scummvm.org
Fri May 23 09:34:14 UTC 2025


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .

Summary:
e566a6432f LIBRETRO: BUILD: fix armv7 GCC 15.1 internal compiler error


Commit: e566a6432fd1951417bf78280cc7c741957fc419
    https://github.com/scummvm/scummvm/commit/e566a6432fd1951417bf78280cc7c741957fc419
Author: Giovanni Cascione (ing.cascione at gmail.com)
Date: 2025-05-23T11:33:57+02:00

Commit Message:
LIBRETRO: BUILD: fix armv7 GCC 15.1 internal compiler error

Changed paths:
    backends/platform/libretro/Makefile


diff --git a/backends/platform/libretro/Makefile b/backends/platform/libretro/Makefile
index 0181825bfbb..383a25cab70 100644
--- a/backends/platform/libretro/Makefile
+++ b/backends/platform/libretro/Makefile
@@ -552,6 +552,8 @@ ifneq (,$(findstring $(platform), wiiu vita))
    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.
+   DEFINES += -O1
 else ifneq (,$(findstring $(platform), msvc genode rpi))
    DEFINES += -O2
 else




More information about the Scummvm-git-logs mailing list