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
Please answer these questions before submitting your issue. Thanks!
Try building with Go 1.23 rc1, eg in while testing Go 1.23 rc1 in homebrew:
Succesfull build
Build error:
# github.com/pingcap/tidb/dumpling/cmd/dumpling link: github.com/pingcap/tidb/pkg/util/printer: invalid reference to runtime.buildVersion
Note, that Go 1.23 no longer allows //go:linkname * runtime.* link instructioins, see
//go:linkname * runtime.*
It is used several times in tidb: https://github.com/search?q=repo%3Apingcap%2Ftidb%20linkname&type=code
The text was updated successfully, but these errors were encountered:
Great, Thank for your report. We will start to support the go1.23. TiDB 8.5 will use go 1.23.
Sorry, something went wrong.
Note that you can use runtime/debug.ReadBuildInfo and then use info.GoVersion instead of runtime.buildVersion.
It has been fixed by #53619.
I have success to build tidb with go1.23rc1.
util: remove localpool which is unused now (#54228)
3731796
ref #54197
It has been fixed by #53619. I have success to build tidb with go1.23rc1.
the original post is about dumpling not tidb. Can you check make build for dumpling?
Please don't forget to tag a release sometime before Go 1.23 is released in August.
No branches or pull requests
Bug Report
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
Try building with Go 1.23 rc1, eg in while testing Go 1.23 rc1 in homebrew:
2. What did you expect to see? (Required)
Succesfull build
3. What did you see instead (Required)
Build error:
4. What is your TiDB version? (Required)
Note, that Go 1.23 no longer allows
//go:linkname * runtime.*
link instructioins, seeIt is used several times in tidb:
https://github.com/search?q=repo%3Apingcap%2Ftidb%20linkname&type=code
The text was updated successfully, but these errors were encountered: