X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile.libretro;h=222941d4378ac2e0fbaf92c4f87c3684626ae125;hb=7af838c45de8d323fd7a005e02eb142d1bbc9689;hp=831964f57dfd82c691e4a6707fbf8dea9a8989dc;hpb=92e2ce8532309ab0dfa2f82122855b6b06311539;p=pcsx_rearmed.git diff --git a/Makefile.libretro b/Makefile.libretro index 831964f5..222941d4 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -24,6 +24,7 @@ endif CC ?= gcc CXX ?= g++ AS ?= as +LD ?= ld CFLAGS ?= # early compiler overrides @@ -129,7 +130,7 @@ else ifneq (,$(findstring CortexA73_G12B,$(platform))) HAVE_NEON = 1 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 + CFLAGS += -march=armv8-a+crc -mcpu=cortex-a73 -mtune=cortex-a73.cortex-a53 # ALLWINNER H5 else ifneq (,$(findstring h5,$(platform))) @@ -141,7 +142,7 @@ else ifneq (,$(findstring h5,$(platform))) HAVE_NEON = 1 DYNAREC = ari64 CFLAGS += -fomit-frame-pointer -ffast-math -DARM - CPUFLAGS += -march=armv8-a+crc -mfpu=neon-fp-armv8 -mcpu=cortex-a53 -mtune=cortex-a53 + CFLAGS += -march=armv8-a+crc -mcpu=cortex-a53 -mtune=cortex-a53 else ifeq ($(platform), linux-portable) TARGET := $(TARGET_NAME)_libretro.so @@ -529,7 +530,7 @@ else ifeq ($(platform), miyoo) TARGET := $(TARGET_NAME)_libretro.so fpic := -fPIC CFLAGS += -mcpu=arm926ej-s -fsingle-precision-constant - CFLAGS += -DGPULIB_USE_MMAP -DGPU_UNAI_USE_INT_DIV_MULTINV -D_MIYOO + CFLAGS += -DGPU_UNAI_USE_INT_DIV_MULTINV -D_MIYOO ARCH = arm BUILTIN_GPU = unai DYNAREC = ari64 @@ -579,7 +580,7 @@ ifndef HAVE_NEON_ASM # asm for 32bit only HAVE_NEON_ASM = $(shell $(CC) -E -dD $(CFLAGS) include/arm_features.h | grep -q HAVE_NEON32 && echo 1 || echo 0) endif -ifeq ($(NO_UNDEF_CHECK)$(shell ld -v 2> /dev/null | awk '{print $$1}'),GNU) +ifeq ($(NO_UNDEF_CHECK)$(shell $(LD) -v 2> /dev/null | awk '{print $$1}'),GNU) MAIN_LDFLAGS += -Wl,--no-undefined endif ifdef ALLOW_LIGHTREC_ON_ARM