From cd4f7c6e48477dc715f15838a8ac3b61f41f2167 Mon Sep 17 00:00:00 2001 From: notaz Date: Fri, 15 Jul 2022 01:33:46 +0300 Subject: [PATCH] make: make the assignment work '?=' keeps the previous assignment, which is probably not what was intended. --- Makefile.libretro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.libretro b/Makefile.libretro index 3edda648..33e87084 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -72,7 +72,7 @@ else ifneq (,$(findstring CortexA73_G12B,$(platform))) fpic := -fPIC SHARED := -shared -Wl,-version-script=link.T ARCH = arm64 - DYNAREC ?= ari64 + DYNAREC = ari64 CFLAGS += -fomit-frame-pointer -ffast-math -DARM CPUFLAGS += -march=armv8-a+crc -mfpu=neon-fp-armv8 -mcpu=cortex-a73 -mtune=cortex-a73.cortex-a53 @@ -82,7 +82,7 @@ else ifneq (,$(findstring h5,$(platform))) fpic := -fPIC SHARED := -shared -Wl,-version-script=link.T ARCH = arm64 - DYNAREC ?= ari64 + DYNAREC = ari64 CFLAGS += -fomit-frame-pointer -ffast-math -DARM CPUFLAGS += -march=armv8-a+crc -mfpu=neon-fp-armv8 -mcpu=cortex-a53 -mtune=cortex-a53 -- 2.39.2