X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=plugins%2Fgpu_neon%2FMakefile;h=810809971a705f7ef2eba04ac96690693b5ae1ed;hb=90ac6fed274c1d573a971c66f8a1338e8918f066;hp=8a7342bd7dd09aefea5899ac2f167af08fba7e28;hpb=4132e8ca13b6395f8a9ef7ec7d01cbdcc19c037d;p=pcsx_rearmed.git diff --git a/plugins/gpu_neon/Makefile b/plugins/gpu_neon/Makefile index 8a7342bd..81080997 100644 --- a/plugins/gpu_neon/Makefile +++ b/plugins/gpu_neon/Makefile @@ -1,13 +1,19 @@ -CFLAGS += -ggdb -Wall -O2 +CFLAGS += -ggdb -Wall -O2 -DNDEBUG include ../../config.mak SRC += psx_gpu_if.c +CFLAGS += -I../../include CFLAGS += -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP -ifeq "$(HAVE_NEON)" "1" -SRC += psx_gpu/psx_gpu_arm_neon.S CFLAGS += -DNEON_BUILD +ifeq "$(HAVE_NEON)" "1" + ifeq "$(HAVE_NEON_ASM)" "1" + SRC += psx_gpu/psx_gpu_arm_neon.S + else + OBJS += psx_gpu/psx_gpu_simd.c + CFLAGS += -DSIMD_BUILD + endif else CFLAGS += -fno-strict-aliasing endif