You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some libraries use the Godoc documentation library where they have a doc.go file where they only declare the package name and have a comment block with documentation.
When you run overload in instrument mode and you "instr" block in your json config has the following:
It will instrument all .go files meaning it will also try to instrument the documentation files. This means that its importing runtime but never using it in some files thus the go compiler will prevent it from being compiled due to the unused library.
The text was updated successfully, but these errors were encountered:
Some libraries use the Godoc documentation library where they have a
doc.go
file where they only declare the package name and have a comment block with documentation.When you run overload in
instrument
mode and you"instr"
block in your json config has the following:It will instrument all
.go
files meaning it will also try to instrument the documentation files. This means that its importingruntime
but never using it in some files thus the go compiler will prevent it from being compiled due to the unused library.The text was updated successfully, but these errors were encountered: