From 0995d4a7641a77970b6bc732b94dcf7a37ad046e Mon Sep 17 00:00:00 2001 From: kub Date: Tue, 23 Mar 2021 23:11:23 +0100 Subject: [PATCH] libretro, turn of DRC for Apple OSes JIT requires special provisions in Retroarch and possibly cores as well --- Makefile.libretro | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile.libretro b/Makefile.libretro index 748618cc..6a189970 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -559,6 +559,13 @@ asm_32xdraw = 0 asm_32xmemory = 0 endif +ifeq ($(APPLE),1) +# turn off DRCs on Apple OSes. It needs signing and notarizing on the +# later versions, which picodrive isn't supporting right now. +use_sh2drc = 0 +use_svpdrc = 0 +endif + CFLAGS += $(fpic) ifeq ($(findstring Haiku,$(shell uname -a)),) -- 2.39.2