Remove -s from Windows build flags. It rips out the debug info, even with DEBUG=1.

This commit is contained in:
Alcaro 2014-10-21 17:56:46 +02:00
parent a8e8de66bd
commit e6e8147d41

View File

@ -93,7 +93,7 @@ else ifeq ($(platform), emscripten)
else
CC = gcc
TARGET := $(TARGET_NAME)_libretro.dll
SHARED := -shared -static-libgcc -static-libstdc++ -s -Wl,--version-script=link.T -Wl,--no-undefined
SHARED := -shared -static-libgcc -static-libstdc++ -Wl,--version-script=link.T -Wl,--no-undefined
GL_LIB := -L. -lopengl32
CXXFLAGS += -DGLEW_STATIC
endif