Makefile fix to enable build for "unix-armv7-hardfloat-neon"

This commit is contained in:
zoltanvb 2022-07-29 20:47:21 +02:00
parent fe88d74673
commit 5b4a74a91f

View File

@ -100,12 +100,13 @@ else ifneq (,$(findstring qnx,$(platform)))
GL_LIB := -lGLESv2
GLES := 1
else ifneq (,$(findstring armv,$(platform)))
CC = gcc
CC ?= gcc
TARGET := $(TARGET_NAME)_libretro.so
fpic := -fPIC
SHARED := -shared -Wl,--version-script=link.T -Wl,--no-undefined
CXXFLAGS += -I.
CFLAGS += -I.
LIBS += -lpthread
ifneq (,$(findstring gles,$(platform)))
GLES := 1
else