mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
Do not strip if KDBG is used
svn path=/trunk/; revision=14811
This commit is contained in:
parent
ae45230c20
commit
940803cd14
1 changed files with 8 additions and 1 deletions
|
@ -661,8 +661,15 @@ endif
|
|||
#
|
||||
ifneq ($(DBG),1)
|
||||
MK_CFLAGS += -Os -Wno-strict-aliasing -funit-at-a-time -fweb -ftracer -momit-leaf-frame-pointer
|
||||
TARGET_LFLAGS += -Wl,-O1 -Wl,--sort-common -s
|
||||
MK_CFLAGS += -mpreferred-stack-boundary=2
|
||||
|
||||
#
|
||||
# Remove Symbols if no debugging is used at all
|
||||
#
|
||||
ifneq ($(KDBG),1)
|
||||
TARGET_LFLAGS += -Wl,-O1 -Wl,--sort-common -s
|
||||
endif
|
||||
|
||||
MK_CPPFLAGS += -O2 -Wno-strict-aliasing
|
||||
MK_CPPFLAGS += -mpreferred-stack-boundary=2
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue