mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
Enforce static linking of libgcc on Windows.
This is part of issue #205.
This commit is contained in:
parent
36c880e105
commit
4c8d504cf7
2 changed files with 2 additions and 2 deletions
|
@ -132,7 +132,7 @@ if(${OPENAL_SUPPORT})
|
|||
endif()
|
||||
|
||||
if(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
|
||||
list(APPEND yquake2LinkerFlags "-lm")
|
||||
list(APPEND yquake2LinkerFlags "-lm -static-libgcc")
|
||||
else()
|
||||
list(APPEND yquake2LinkerFlags "-lm -rdynamic")
|
||||
endif()
|
||||
|
|
2
Makefile
2
Makefile
|
@ -243,7 +243,7 @@ LDFLAGS := -L/usr/local/lib -lm
|
|||
else ifeq ($(YQ2_OSTYPE),OpenBSD)
|
||||
LDFLAGS := -L/usr/local/lib -lm
|
||||
else ifeq ($(YQ2_OSTYPE),Windows)
|
||||
LDFLAGS := -L/usr/lib -lws2_32 -lwinmm
|
||||
LDFLAGS := -L/usr/lib -lws2_32 -lwinmm -static-libgcc
|
||||
else ifeq ($(YQ2_OSTYPE), Darwin)
|
||||
LDFLAGS := $(OSX_ARCH) -lm
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue