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
Hi, thanks for this project! I wanted to report an error during installation with rustc-demangle.
cargo +nightly-2019-12-05 install c2rust
Error
error[E0658]: use of unstable library feature 'matches_macro'
--> /Users/andrew/.cargo/registry/src/github.heygears.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:700:20
|
700 | if matches!((quote, c), ('\'', '"') | ('"', '\'')) {
| ^^^^^^^
|
= note: for more information, see https://github.com/rust-lang/rust/issues/65721
= help: add `#![feature(matches_macro)]` to the crate attributes to enable
It appears to be due to this change in rustc-demangle 0.1.21, which uses the matches! macro, which isn't stable in nightly-2019-12-05.
The text was updated successfully, but these errors were encountered:
On Mac, brew install llvm installs LLVM 12, which isn't doesn't appear to be supported by the latest release. Would be good to either make a new release with dfa995c or update the Mac instructions to brew install llvm@9 and LLVM_CONFIG_PATH=/usr/local/opt/llvm@9/bin/llvm-config.
Hi, thanks for this project! I wanted to report an error during installation with
rustc-demangle
.Error
It appears to be due to this change in rustc-demangle 0.1.21, which uses the
matches!
macro, which isn't stable innightly-2019-12-05
.The text was updated successfully, but these errors were encountered: