From: Paul Cercueil Date: Sat, 11 Feb 2023 18:34:16 +0000 (+0000) Subject: Fix Android build (#716) X-Git-Tag: r24l~335 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;ds=sidebyside;h=4373e29de72c917dbcd04ec2a5fb685e69d9def3;p=pcsx_rearmed.git Fix Android build (#716) Android builds don't use the Makefile, and the build recipe wasn't modified to add the new constprop.c source file from Lightrec. Signed-off-by: Paul Cercueil --- diff --git a/jni/Android.mk b/jni/Android.mk index 4ba224fc..37e3c353 100644 --- a/jni/Android.mk +++ b/jni/Android.mk @@ -156,6 +156,7 @@ ifeq ($(HAVE_LIGHTREC),1) $(ROOT_DIR)/include/lightning \ $(ROOT_DIR)/include/lightrec SOURCES_C += $(DEPS_DIR)/lightrec/blockcache.c \ + $(DEPS_DIR)/lightrec/constprop.c \ $(DEPS_DIR)/lightrec/disassembler.c \ $(DEPS_DIR)/lightrec/emitter.c \ $(DEPS_DIR)/lightrec/interpreter.c \