From 5507b49e3a9c46591ebe099961f76000a2ea1b45 Mon Sep 17 00:00:00 2001 From: notaz Date: Fri, 16 Sep 2022 23:45:15 +0300 Subject: [PATCH] maybe fix x86 32bit detection for libretro's infra --- Makefile.libretro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.2