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
A recent rust-lang PR added support for LLVM assembly comment output. While only available on nightly, it would be great if cargo asm could support them.
Currently, the following commands don't work:
$ RUSTFLAGS="-Z asm-comments" cargo asm
thread 'main' panicked at 'line starts with _ but we failed to parse the label: ...
The text was updated successfully, but these errors were encountered:
Yep, I've asked if there are any plans to stabilize that flag but there aren't any already so this won't work with the stable Rust compilers for the time being. We can detect if the compiler is a nightly compiler, and pass it the flag if that's the case.
A recent rust-lang PR added support for LLVM assembly comment output. While only available on nightly, it would be great if
cargo asm
could support them.Currently, the following commands don't work:
The text was updated successfully, but these errors were encountered: