Re: Debug Tool for golang

2019-05-31 Thread Kevin Chadwick
On 5/31/19 5:28 PM, Ted Unangst wrote: > Kevin Chadwick wrote: >> Does anyone debug golang on OpenBSD and can advise on llvm/gcc or provide any >> other insight? > > I just use log. > Yep, not missing a trick then and apparently the old recommendation, Thanks all. https://blog.golang.org/debugg

Re: Debug Tool for golang

2019-05-31 Thread Ted Unangst
Kevin Chadwick wrote: > Does anyone debug golang on OpenBSD and can advise on llvm/gcc or provide any > other insight? I just use log.

Re: Debug Tool for golang

2019-05-31 Thread paul wisehart
On Fri, May 31, 2019 at 01:11:41PM +0100, Kevin Chadwick wrote: > It seems delve which is suggested by golang.org due to optimised binary > support > expects a Linux /proc and Linux threads (FreeBSD delve github issue tracker). > So > I guess without delve then building unoptimised binaries would

Debug Tool for golang

2019-05-31 Thread Kevin Chadwick
It seems delve which is suggested by golang.org due to optimised binary support expects a Linux /proc and Linux threads (FreeBSD delve github issue tracker). So I guess without delve then building unoptimised binaries would be required which is possibly to be expected when debugging. I'm not sure t