X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=plugins%2Fgpu_neon%2FMakefile;fp=plugins%2Fgpu_neon%2FMakefile;h=955feab6a444a003bfae34ade43612e7975dcf77;hb=57467c77b7045642afd8de1679f1149acc9c1ab5;hp=08bf0ee6af839b42210e93043f73a9bb92f9cfd8;hpb=a2cb152a937d0aecbf794e5ba36431e6a17b7483;p=pcsx_rearmed.git diff --git a/plugins/gpu_neon/Makefile b/plugins/gpu_neon/Makefile index 08bf0ee6..955feab6 100644 --- a/plugins/gpu_neon/Makefile +++ b/plugins/gpu_neon/Makefile @@ -5,9 +5,14 @@ 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