-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Specify linkers for cross-compile scenarios #25719
Conversation
The recent MSVC patch made the build system pass explicit linkers to rustc, but did not set that up for anything other than MSVC.
(rust_highfive has picked a reviewer for you, use r? to override) |
This only modified the platforms that we need for the bots but presumably all other cross-compiles are broken too. |
Maybe a better solution would be to fall back to the old behavior of the linker hasn't been overridden. |
@bors r+ |
📌 Commit 1cda323 has been approved by |
Thanks @eddyb |
The recent MSVC patch made the build system pass explicit linkers to rustc, but did not set that up for anything other than MSVC. This is blocking nightlies.
For anyone else reading this and looking for the MSVC PR, it's #25350 |
The recent MSVC patch made the build system pass explicit linkers to
rustc, but did not set that up for anything other than MSVC.
This is blocking nightlies.