What version of Delve are you using (dlv version)?
Delve Debugger
Version: 1.24.0
Build: $Id: 2d55e4d30150e3fc68e64357e21293d7920fc1f1 $
What version of Go are you using? (go version)?
go version go1.24.1 darwin/arm64
1、What operating system and processor architecture are you using?
darwin/arm64 Apple/M3
2、What did you do?
I use VSCode to develop GO programs, but when I use DLV for breakpoints
And i use ["--check-go-version=false"]
3、What did you expect to see?
Breakpoint takes effect
4、What did you see instead?
it doesn't work
this is lanuch.json
{ "version": "0.2.0", "configurations": [ { "name": "icuDebug", "type": "go", "request": "launch", "mode": "auto", "program": "${workspaceFolder}/cmd/app/main.go", //"cwd": "${workspaceFolder}", "args": [], "env": {}, "stopOnEntry": false, "trace": "info", "console": "integratedTerminal", "dlvFlags": ["--check-go-version=false"] } ] }
it's my project demo
be deeply grateful