Merge pull request #38 from zoltanvb/master

Makefile fix to enable build for "unix-armv7-hardfloat-neon"
This commit is contained in:
LibretroAdmin 2022-07-29 22:55:54 +02:00 committed by GitHub
commit 39ba32e43d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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