Go has added Valgrind support
go-review.googlesource.com
Go has added Valgrind support
1–10 of 157 posts
Re: Go has added Valgrind support
#2Re: Go has added Valgrind support
#3Otherwise the relevant warnings get swamped by a huge amount by irrelevant warnings.
This is why running Valgrind on Python code does not work.
Re: Go has added Valgrind support
#4Love that they have taken this route, this is the way bootstraped toolchains should be, minimal building blocks and everything else on the language itself.
Re: Go has added Valgrind support
#5looks very promising, one of the biggest issue in golang for me is profiling and constant memory leaks/pressure. Not sure if there is an alternative of what people use now
[1] https://github.com/cloudwego/goref
Disclaimer: I work on continuous profiling for Datadog and contribute to the profiling features in the runtime.
Re: Go has added Valgrind support
#6Re: Go has added Valgrind support
#7looks very promising, one of the biggest issue in golang for me is profiling and constant memory leaks/pressure. Not sure if there is an alternative of what people use now
As it is, the only way to currently handle that is with " -gcflags -m=3" or using something like VSCode Go plugin, via "ui.codelenses" and "ui.diagnostic.annotations" configurations.
Re: Go has added Valgrind support
#8looks very promising, one of the biggest issue in golang for me is profiling and constant memory leaks/pressure. Not sure if there is an alternative of what people use now
Re: Go has added Valgrind support
#9Re: Go has added Valgrind support
#10looks very promising, one of the biggest issue in golang for me is profiling and constant memory leaks/pressure. Not sure if there is an alternative of what people use now