diff options
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gbuild/gbuild.mk | 3 | ||||
-rw-r--r-- | solenv/gbuild/platform/com_MSC_defs.mk | 5 |
2 files changed, 2 insertions, 6 deletions
diff --git a/solenv/gbuild/gbuild.mk b/solenv/gbuild/gbuild.mk index 3d1f0f1292ce..48439f3762ba 100644 --- a/solenv/gbuild/gbuild.mk +++ b/solenv/gbuild/gbuild.mk @@ -133,10 +133,11 @@ ifeq ($(HARDLINKDELIVER),TRUE) gb_Deliver_HARDLINK := $(true) endif +# note: ENABLE_CRASHDUMP turns on gb_SYMBOL ifeq ($(or $(ENABLE_SYMBOLS),$(enable_symbols)),FALSE) gb_SYMBOL := $(false) else -ifneq ($(strip $(ENABLE_SYMBOLS)$(enable_symbols)),) +ifneq ($(strip $(ENABLE_SYMBOLS)$(enable_symbols)$(ENABLE_CRASHDUMP)),) gb_SYMBOL := $(true) endif endif diff --git a/solenv/gbuild/platform/com_MSC_defs.mk b/solenv/gbuild/platform/com_MSC_defs.mk index 43c919806d32..c5804a87cf7d 100644 --- a/solenv/gbuild/platform/com_MSC_defs.mk +++ b/solenv/gbuild/platform/com_MSC_defs.mk @@ -265,11 +265,6 @@ gb_DEBUG_CFLAGS+=-FS endif # this does not use CFLAGS so it is not overridable -ifneq ($(ENABLE_CRASHDUMP),) -gb_CFLAGS+=-Zi -gb_CXXFLAGS+=-Zi -endif - ifeq ($(gb_SYMBOL),$(true)) gb_CFLAGS+=$(gb_DEBUG_CFLAGS) gb_CXXFLAGS+=$(gb_DEBUG_CFLAGS) |