X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=plugins%2Fgpu_neon%2FMakefile;h=955feab6a444a003bfae34ade43612e7975dcf77;hb=38e03f0aee6c94ff6c35a9597f45f88be5cae300;hp=8a7342bd7dd09aefea5899ac2f167af08fba7e28;hpb=4132e8ca13b6395f8a9ef7ec7d01cbdcc19c037d;p=pcsx_rearmed.git diff --git a/plugins/gpu_neon/Makefile b/plugins/gpu_neon/Makefile index 8a7342bd..955feab6 100644 --- a/plugins/gpu_neon/Makefile +++ b/plugins/gpu_neon/Makefile @@ -1,13 +1,18 @@ -CFLAGS += -ggdb -Wall -O2 +CFLAGS += -ggdb -Wall -O2 -DNDEBUG include ../../config.mak SRC += psx_gpu_if.c 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