delve icon indicating copy to clipboard operation
delve copied to clipboard

Delve is a debugger for the Go programming language.

Results 154 delve issues
Sort by recently updated
recently updated
newest added

Changes FindLocation to support multiple targets and adds an AddrPid member to api.Breakpoint so that clients can set breakpoints by address when multiple targets are connected (but at them moment...

This PR adds support for debugging on `windows/arm64`. There are some tests failing, but with these changes I can use `dlv` to debug big codebases without problems. I could reuse...

needs-rebase

Fixes issue where Delve fails to start if starlark can not allocate a large amount of memory at startup. Fixes #2907

**This PR is currently as draft to better improve implementation and pass tests.** This PR partially implements https://github.com/go-delve/delve/issues/3094, by implementing redirection of `stdout` and `stderr` to the debug console via...

An incorrect path to separate files with debug information is generated: /usr/lib/debug/.build-id/.build-id/%s/%s.debug -> /usr/lib/debug/.build-id/%s/%s.debug

Our previous implementation of waiting on resumeRequestLoop was not safe, because the channel may be closed several times. This change removes this bug by instead having two channels to track...

needs-rebase

Spin-off from https://github.com/go-delve/delve/issues/2958#issuecomment-1196787927 Original feature request: https://github.com/golang/vscode-go/issues/2368 While #2958 discusses a bigger refactoring work, we want to clear all breakpoints/logpoints before disconnecting. Related: https://github.com/go-delve/delve/issues/1961 We were told Goland explicitly issues...

kind/enhancement
area/dap

**Go Version**: 1.18 **Delve Version**: 1.8.2 #### Current status DAP allows sending `stdout`/`stderr` outputs back to the DAP client, by which it is shown on the debug console of the...

kind/enhancement
area/dap

If a client connection is closed while a running command is in progress, that command is not interrupted, so the auto-resume goroutine continues as if nothing has happened. The auto-resume...

kind/discussion
area/dap

Request to support ARM32 platform. ARM64 was added in #118 and there are many comments on that issue about Raspberry Pi and ARM32, so I thought there should be a...

kind/enhancement
area/proc/native
kind/port