diff options
author | Twinaphex | 2019-09-14 08:13:31 +0200 |
---|---|---|
committer | GitHub | 2019-09-14 08:13:31 +0200 |
commit | e5cadd2f21fb64e8c7194ad006b39e6f555c4a5b (patch) | |
tree | e0332df0d7c7c8994217fc5da43c01264e3b4693 | |
parent | 24267eff01bdfe2807201ca9bd195a86bec40bc6 (diff) | |
parent | d50212dd94bd8e5ca5812e0867101a2e1130f57b (diff) | |
download | snes9x2005-e5cadd2f21fb64e8c7194ad006b39e6f555c4a5b.tar.gz snes9x2005-e5cadd2f21fb64e8c7194ad006b39e6f555c4a5b.tar.bz2 snes9x2005-e5cadd2f21fb64e8c7194ad006b39e6f555c4a5b.zip |
Merge pull request #67 from webgeek1234/master
libretro: allow mingw cross compile
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -484,8 +484,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 |