Do not strip debug library

This commit is contained in:
Allege 2024-02-08 06:47:14 +11:00 committed by GitHub
parent 6d03208775
commit 2c1cd44a20
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -143,7 +143,10 @@ else
CC = gcc
fpic :=
LD_FLAGS :=
SHARED := -shared -static-libgcc -static-libstdc++ -s
SHARED := -shared -static-libgcc -static-libstdc++
ifneq ($(DEBUG), 1)
SHARED += -s
endif
CFLAGS += -D__WIN32__ -D__WIN32_LIBRETRO__
WINSOCKS := -lws2_32
endif