mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
Install symbol files by default for DBG := 1 builds
svn path=/trunk/; revision=12896
This commit is contained in:
parent
5637b9f123
commit
325d499971
1 changed files with 7 additions and 5 deletions
|
@ -635,9 +635,12 @@ include $(PATH_TO_TOP)/config
|
|||
|
||||
TARGET_CFLAGS += $(MK_CFLAGS) $(STD_CFLAGS)
|
||||
ifeq ($(DBG),1)
|
||||
TARGET_ASFLAGS += -g
|
||||
TARGET_CFLAGS += -g
|
||||
TARGET_LFLAGS += -g
|
||||
TARGET_ASFLAGS += -g
|
||||
TARGET_CFLAGS += -g
|
||||
TARGET_LFLAGS += -g
|
||||
ifeq ($(INSTALL_SYMBOLS),)
|
||||
INSTALL_SYMBOLS := yes
|
||||
endif
|
||||
endif
|
||||
|
||||
TARGET_CPPFLAGS += $(MK_CPPFLAGS) $(STD_CPPFLAGS)
|
||||
|
@ -1047,10 +1050,9 @@ ifeq ($(INSTALL_SYMBOLS),yes)
|
|||
|
||||
forceinstall: $(SUBDIRS:%=%_install) $(MK_FULLNAME) $(MK_BASENAME).sym
|
||||
$(HALFVERBOSEECHO) [INSTALL] $(MK_FULLNAME) to $(MK_INSTALLDIR)/$(MK_INSTALL_FULLNAME)
|
||||
$(HALFVERBOSEECHO) [INSTALL] $(MK_BASENAME).sym to symbols/$(MK_INSTALL_BASENAME).sym
|
||||
-$(CP) $(MK_FULLNAME) $(INSTALL_DIR)/$(MK_INSTALLDIR)/$(MK_INSTALL_FULLNAME)
|
||||
$(HALFVERBOSEECHO) [INSTALL] $(MK_BASENAME).sym to symbols/$(MK_INSTALL_BASENAME).sym
|
||||
-$(CP) $(MK_BASENAME).sym $(INSTALL_DIR)/symbols/$(MK_INSTALL_BASENAME).sym
|
||||
@echo $(MK_FULLNAME) was successfully installed.
|
||||
|
||||
else # INSTALL_SYMBOLS
|
||||
|
||||
|
|
Loading…
Reference in a new issue