Note:
- this repo is forked from https://github.com/hitzhangjie/tinydbg
- this branch is modified based on go-delve/delve@v1.24.1
- keep the core design and logic
- simplify platforms relevant info, only linux/amd64 kept
ps: The compiler and linker in Go 1.25 now generate debug information using DWARF version 5; the newer DWARF version reduces the space required for debugging information in Go binaries. DWARF 5 generation is gated by the “dwarf5” GOEXPERIMENT; this functionality can be disabled (for now) using GOEXPERIMENT=nodwarf5.
The GitHub issue tracker is for bugs only. Please use the developer mailing list for any feature proposals and discussions.
Delve is a debugger for the Go programming language. The goal of the project is to provide a simple, full featured debugging tool for Go. Delve should be easy to invoke and easy to use. Chances are if you're using a debugger, things aren't going your way. With that in mind, Delve should stay out of your way as much as possible.