liteide icon indicating copy to clipboard operation
liteide copied to clipboard

when use delve debug program will rand crash at some where

Open epowsal opened this issue 4 years ago • 1 comments

when use delve debug program. when debug step to somewhere. liteide will rand crash at somewhere without any message. the process just disappear. but the dlv.exe process is still running. I found the bug many times. the old version have this bug too. liteide 37.4 golang 1.17 system windows delve is the last version that build from delve code

epowsal avatar Sep 04 '21 11:09 epowsal

I fixed this problem by change the debuger, code patch: M:\work\code\qt\liteide37.4\liteidex\src\plugins\dlvdebugger\dlvdebuggerplugin.cpp: delete: 54 #ifdef USE_DLVCLIENT DlvRpcDebugger *debug = new DlvRpcDebugger(app); #else DlvDebugger *debug = new DlvDebugger(app); #endif

add: 54 #ifdef USE_DLVCLIENT DlvDebugger *debug = new DlvDebugger(app); #else DlvRpcDebugger *debug = new DlvRpcDebugger(app); #endif

runsys avatar Apr 09 '22 02:04 runsys