-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
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
x/build: use LLD linker on linux-amd64-clang builder? #59482
Comments
I agree we should have a clang+lld builder. My question is whether we should also keep a builder with the existing configuration (is it clang+bfd or clang+gold?). |
I'm going to guess that we should probably have builders for every popular C linker (or whatever we're willing to say we explicitly support). Logistical question: what can this builder share with other builders? Could it, for example, share |
Now we build the toolchain without cgo, right? If so, the result of Even if it still uses cgo, we probably can share. We just don't use LLD to link some tool binaries (the go command, the pprof command?), and that is probably fine, and we'll probably have the same coverage when linking test binaries. |
We could have a builder for clang+bfd, if the builder resource is fine. I think that is probably also a popular configuration that users use. |
For the record (this was mentioned in the linked issue, but worth repeating here) this exact combination would be very welcome for those of us who compile C/C++ files using |
Related: #59666 |
CC @golang/release. |
Hello, I'm sorry for the sudden interruption. |
I think it is a good idea to test lld (that's why I filed the issue). In the Go linker, we probably can switch off from defaulting to gold. |
The LLD linker is widely used by users. Occasionally there are some subtle differences in behavior between the C linkers (BFD, Gold, LLD), that cause issues for us (e.g. we may have assumptions based on the BFD linker's specific behavior (e.g. #59466), or we may uncover a bug in the C linker itself.)
As far as I can tell, we don't have much LLD coverage on the builders. I think it is probably good to have one. The
linux-amd64-clang
builder already uses LLVM based C compiler. So it may be a good fit. (gcc+lld is possible but probably not a popular configuration.)Thoughts? Thanks.
cc @prattmic (was chatting with Michael about this the other day)
The text was updated successfully, but these errors were encountered: