From: notaz Date: Fri, 16 Sep 2022 20:45:15 +0000 (+0300) Subject: maybe fix x86 32bit detection for libretro's infra X-Git-Tag: r24l~373 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5507b49e3a9c46591ebe099961f76000a2ea1b45;p=pcsx_rearmed.git maybe fix x86 32bit detection for libretro's infra --- diff --git a/Makefile.libretro b/Makefile.libretro index 7f8ec744..7b9618e1 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -535,7 +535,7 @@ ifdef ALLOW_LIGHTREC_ON_ARM CFLAGS += -DALLOW_LIGHTREC_ON_ARM endif ifeq ($(BUILTIN_GPU),neon) -ifeq ($(ARCH),i686) +ifneq (,$(findstring $(ARCH),x86 i686)) CFLAGS_GPU_NEON ?= -msse2 # required endif ifeq ($(ARCH),x86_64)