diff options
author | Aaron Kling | 2019-06-07 14:13:41 -0500 |
---|---|---|
committer | GitLab Runner | 2019-08-03 02:24:19 -0500 |
commit | d50212dd94bd8e5ca5812e0867101a2e1130f57b (patch) | |
tree | 801d299154c7fba84b143f5e007596ec104c809a | |
parent | 0ed20f0a360817a8a3c21274bfdca93fb6e0dae5 (diff) | |
download | snes9x2005-d50212dd94bd8e5ca5812e0867101a2e1130f57b.tar.gz snes9x2005-d50212dd94bd8e5ca5812e0867101a2e1130f57b.tar.bz2 snes9x2005-d50212dd94bd8e5ca5812e0867101a2e1130f57b.zip |
libretro: allow mingw cross compile
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -474,8 +474,8 @@ else ifneq (,$(findstring windows_msvc2017,$(platform))) else TARGET := $(TARGET_NAME)_libretro.dll - CC = gcc - CXX = g++ + CC ?= gcc + CXX ?= g++ SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T LDFLAGS += -static-libgcc -static-libstdc++ -lwinmm endif |