1. Remove bug about unsupport systems, because we has pretty error msg. 2. Add usage for remote debugging. Relate: #1883, #1829, #861, #1332.
691 B
691 B
Known Bugs
- When Delve is compiled with versions of go prior to 1.7.0 it is not possible to set a breakpoint on a function in a remote package using the
Receiver.MethodNamesyntax. See Issue #528. - When running Delve on binaries compiled with a version of go prior to 1.9.0
localswill print all local variables, including ones that are out of scope, the shadowed flag will be applied arbitrarily. If there are multiple variables defined with the same name in the current functionprintwill not be able to select the correct one for the current line. reverse stepwill not reverse step into functions called by deferred calls.