1
0

Added true gcc debugging flags to debug builds under *nix (Fix contributed by ThuGie)

git-svn-id: http://mc-server.googlecode.com/svn/trunk@1016 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
madmaxoft@gmail.com 2012-10-28 20:52:55 +00:00
parent 265c810079
commit 64fb2655b9

View File

@ -69,9 +69,9 @@ else
# debug build - fully traceable by gdb in C++ code, slowest
# Since C code is used only for supporting libraries (zlib, lua), it is still O3-optimized
################
CC_OPTIONS = -s -ggdb -D_DEBUG -O3
CXX_OPTIONS = -s -ggdb -D_DEBUG
LNK_OPTIONS = -lstdc++ -pthread -ggdb
CC_OPTIONS = -s -ggdb -g -D_DEBUG -O3
CXX_OPTIONS = -s -ggdb -g -D_DEBUG
LNK_OPTIONS = -lstdc++ -pthread -g -ggdb
BUILDDIR = build/debug/
endif
endif