We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The runtime.go is using //go:linkname to access runtime function: https://github.com/orijtech/structslop/blob/master/runtime.go
According to golang/go#67401, we should find a better way or keep thing works with future releases.
The text was updated successfully, but these errors were encountered:
orijtech/structslop
FWIW, as a workaround for building using Go 1.23 you can use -ldflags=-checklinkname=0.
-ldflags=-checklinkname=0
Examples:
go install -ldflags=-checklinkname=0 ./cmd/structslop
go build -ldflags=-checklinkname=0 ./cmd/structslop
EDIT:
Leaving this note for future me and any others coming across this repo.
Sorry, something went wrong.
No branches or pull requests
The runtime.go is using //go:linkname to access runtime function: https://github.com/orijtech/structslop/blob/master/runtime.go
According to golang/go#67401, we should find a better way or keep thing works with future releases.
The text was updated successfully, but these errors were encountered: