Commit bc32229a authored by Yoni Fogel's avatar Yoni Fogel

Addresses #1531 Default windbg will not auto-start (making debugging difficult)

git-svn-id: file:///svn/toku/tokudb@9973 c7de825b-a66e-492c-adef-691d508d4ae1
parent 7239050e
......@@ -202,7 +202,7 @@ ifneq ($(CYGWIN),)
ALWAYS_LINK=$(LIBPORTABILITY) /usr/lib/libz.a
SRCPATH_DIRS = `find $(TOKUROOT) -type d | grep -v '/\.[^.]' | grep -F -v "$(TOKUROOT)$(OS_NOTCHOICE)" | tr '\n' ';'`
ifeq ($(WINDBG),1)
VGRIND = windbg -Q -c "ddddddddd;g" -y "$(SRCPATH_DIRS)" -srcpath "$(SRCPATH_DIRS)" #No Valgrind in cygwin #-G is quit at exit, but does not return ERROR on error!!! and quits on error to quickly
VGRIND = windbg -hd -y "$(SRCPATH_DIRS)" -srcpath "$(SRCPATH_DIRS)" #No Valgrind in cygwin #-G is quit at exit, but does not return ERROR on error!!! and quits on error to quickly
else
VGRIND =
endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment