From 14ef12613713f3c7244849f8ed027b0450434c34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Mon, 5 Sep 2022 22:14:24 +0200 Subject: [PATCH] Correct libretro buildfix (hopefully) --- libretro/Makefile.common | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/libretro/Makefile.common b/libretro/Makefile.common index ab82fcca28cb..6f14483b0845 100644 --- a/libretro/Makefile.common +++ b/libretro/Makefile.common @@ -161,9 +161,6 @@ ifeq ($(PLATFORM_EXT), android) $(EXTDIR)/libzip/zip_source_file_stdio_named.c \ $(EXTDIR)/libzip/zip_random_unix.c endif - - SOURCES_C +=\ - $(COMMONDIR)/Math/fast/fast_matrix.c endif SOURCES_C += $(LIBRETRODIR)/ext/glew/glew.c @@ -311,7 +308,8 @@ SOURCES_CXX += \ $(COMMONDIR)/TimeUtil.cpp SOURCES_C +=\ - $(COMMONDIR)/GPU/OpenGL/gl3stub.c + $(COMMONDIR)/GPU/OpenGL/gl3stub.c \ + $(COMMONDIR)/Math/fast/fast_matrix.c SOURCES_CXX += \ $(GPUCOMMONDIR)/Draw2D.cpp \ @@ -657,8 +655,7 @@ ifeq ($(WITH_DYNAREC),1) SOURCES_C += $(EXTDIR)/libpng17/arm/arm_init.c \ $(EXTDIR)/libpng17/arm/filter_neon_intrinsics.c - ASMFILES += $(COMMONDIR)/Math/fast/fast_matrix_neon.S \ - $(EXTDIR)/libpng17/arm/filter_neon.S + ASMFILES += $(EXTDIR)/libpng17/arm/filter_neon.S endif else ifneq (,$(findstring msvc,$(platform)))