You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git bisect points to 1c07096 as the culprit. It seems that the changes to libunwind.rs at line 237 accidentally dropped #[link(name = "unwind", kind = "static")] from _Unwind_Backtrace; readding this attribute allows rustc to build successfully.
I have a fix for this I'll upload shortly; just wanted to file an issue to reference first. :)
The text was updated successfully, but these errors were encountered:
libunwind: readd link attrs to _Unwind_Backtrace
It seems the removal of these in 1c07096 was unintended; readding them fixes the build.
fixesrust-lang#93349
r? `@alexcrichton`
Trying to build
rustc
on Debian with the following config used to work, but now fails:./x.py build
exits with:git bisect
points to 1c07096 as the culprit. It seems that the changes tolibunwind.rs
at line 237 accidentally dropped#[link(name = "unwind", kind = "static")]
from_Unwind_Backtrace
; readding this attribute allowsrustc
to build successfully.I have a fix for this I'll upload shortly; just wanted to file an issue to reference first. :)
The text was updated successfully, but these errors were encountered: