Merge pull request #78 from webgeek1234/master

libretro: allow mingw cross compile
This commit is contained in:
Twinaphex 2019-11-29 18:54:35 +01:00 committed by GitHub
commit 5d28c5ad39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -515,8 +515,8 @@ else ifneq (,$(findstring windows_msvc2017,$(platform)))
# Windows
else
TARGET := $(TARGET_NAME)_libretro.dll
CC = gcc
CXX = g++
CC ?= gcc
CXX ?= g++
SHARED := -shared -static-libgcc -static-libstdc++ -Wl,-no-undefined -Wl,-version-script=$(LIBRETRO_DIR)/link.T
TILED_RENDERING=1
endif