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
This is the version which is downloaded by the rustc bootstrap process. I managed to get it working by manually downloading the previous (2019-08-23) version. I will try a newer version when convenient.
I tried to compile rustc on an elderly Linux box.
cargo panicked.
I traced the cause to https://github.com/rust-lang/cargo/blob/master/src/cargo/util/cpu.rs#L66
The unwrap panics because the /proc/stat file on this version only has 9 columns.
Backtrace:
Possible Solution(s)
Remove that unwrap by a unwrap_or_else("0").
Output of
cargo version
:cargo 1.39.0-beta (b6c6f68 2019-09-19)
The text was updated successfully, but these errors were encountered: