Re: [go-nuts] go1.14/go1.14.1 missing some debug information

2020-04-01 Thread 'Than McIntosh' via golang-nuts
Thanks for filing the issue (https://github.com/golang/go/issues/38192). I added some comments. On Wed, Apr 1, 2020 at 12:46 AM Ian Lance Taylor wrote: > On Tue, Mar 31, 2020 at 5:19 PM sanye wrote: > > > > Hello gophers, > > I have a problem when debugging with gdb using go1.14/1.14.1, set a

Re: [go-nuts] go1.14/go1.14.1 missing some debug information

2020-03-31 Thread Ian Lance Taylor
On Tue, Mar 31, 2020 at 5:19 PM sanye wrote: > > Hello gophers, > I have a problem when debugging with gdb using go1.14/1.14.1, set a > breakpoint on entrypoint will not show line and file information, but > go1.13.9 and older versions have, here is the detail > > demo.go >

[go-nuts] go1.14/go1.14.1 missing some debug information

2020-03-31 Thread sanye
Hello gophers, I have a problem when debugging with gdb using go1.14/1.14.1, set a breakpoint on entrypoint will not show line and file information, but go1.13.9 and older versions have, here is the detail demo.go package main func main() { println("hello world") } build