From 5f7e8c3e496611b3c905919c47c91c37ddabcbe9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Andr=C3=A9=20Santoni?= Date: Sat, 11 Apr 2026 11:16:40 +0200 Subject: [PATCH 1/2] Exclude lutro until its on the buildbot --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 8bf2b49c..70e09a1a 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,9 @@ ifeq ($(ARCH), arm) CORES := $(filter-out mednafen_saturn,$(CORES)) CORES := $(filter-out melonds,$(CORES)) endif +ifeq ($(ARCH), arm64) + CORES := $(filter-out lutro,$(CORES)) +endif DYLIBS = $(addprefix cores/, $(addsuffix _libretro.dylib,$(CORES))) DLLS = $(addprefix cores/, $(addsuffix _libretro.dll,$(CORES))) From b3a7fe509d34a5968c6361b21aca17711692d1e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Andr=C3=A9=20Santoni?= Date: Sat, 11 Apr 2026 11:44:18 +0200 Subject: [PATCH 2/2] Filter more --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 70e09a1a..0bfc3072 100644 --- a/Makefile +++ b/Makefile @@ -22,6 +22,12 @@ ifeq ($(ARCH), arm) endif ifeq ($(ARCH), arm64) CORES := $(filter-out lutro,$(CORES)) + CORES := $(filter-out mednafen_pce,$(CORES)) + CORES := $(filter-out mednafen_saturn,$(CORES)) + CORES := $(filter-out mupen64plus_next,$(CORES)) + CORES := $(filter-out picodrive,$(CORES)) + CORES := $(filter-out stella2014,$(CORES)) + CORES := $(filter-out vecx,$(CORES)) endif DYLIBS = $(addprefix cores/, $(addsuffix _libretro.dylib,$(CORES)))