-
Notifications
You must be signed in to change notification settings - Fork 12.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
Bump compiler_builtins #123426
Bump compiler_builtins #123426
Conversation
This comment has been minimized.
This comment has been minimized.
The job Click to see the possible cause of the failure (guessed by this bot)
|
Thanks for doing this! Could you try removing this line?:
I'm not sure if that would work, this heavily assumes that the symbols Rust uses from FWIW, here's a list of symbols provided by |
That is not easily doable. The build fails during stage0 -> stage1 compiler build which means it's still using prebuilt toolchain. |
Ah, OK. I'm not sure if we could use --- a/src/x86.rs
+++ b/src/x86.rs
@@ -12,6 +12,7 @@ intrinsics! {
#[cfg(all(
windows,
target_env = "gnu",
+ any(not(bootstrap), target_abi = "llvm"),
not(feature = "no-asm")
))]
pub unsafe extern "C" fn _alloca() { i.e. make |
No idea if that would work. |
r? @ghost
cc rust-lang/compiler-builtins#585