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
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
>
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