mirror of
https://github.com/libretro/libretro-prboom.git
synced 2024-11-23 07:59:39 +00:00
Do not strip debug library
This commit is contained in:
parent
6ec854969f
commit
6be5a20bd6
6
Makefile
6
Makefile
@ -612,7 +612,11 @@ else
|
||||
EXT?=dll
|
||||
TARGET := $(TARGET_NAME)_libretro.$(EXT)
|
||||
CC ?= gcc
|
||||
SHARED := -shared -static-libgcc -static-libstdc++ -s -Wl,--version-script=libretro/link.T
|
||||
SHARED := -shared -static-libgcc -static-libstdc++
|
||||
ifneq ($(DEBUG), 1)
|
||||
SHARED += -s
|
||||
endif
|
||||
SHARED += -Wl,--version-script=libretro/link.T
|
||||
CFLAGS += -D__WIN32__ -Wno-missing-field-initializers -DHAVE_STRLWR
|
||||
LIBS =
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user