mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Statically link libgcc on Windows
Fix for ioq3 test builds for Windows x86 (cross-compiled from Ubuntu using mingw-w64) requiring libgcc_s_sjlj-1.dll. I'm unable to reproduce the issue using mingw-w64 in Debian or Cygwin.
This commit is contained in:
parent
414f3c5e3e
commit
eeaade70bd
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -613,7 +613,7 @@ ifdef MINGW
|
|||
CLIENT_LDFLAGS += -mwindows
|
||||
endif
|
||||
CLIENT_LIBS = -lgdi32 -lole32
|
||||
RENDERER_LIBS = -lgdi32 -lole32 -lopengl32
|
||||
RENDERER_LIBS = -lgdi32 -lole32 -lopengl32 -static-libgcc
|
||||
|
||||
ifeq ($(USE_FREETYPE),1)
|
||||
FREETYPE_CFLAGS = -Ifreetype2
|
||||
|
|
Loading…
Reference in a new issue