We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Problem The error message when writing an invalid profile.panic option is wrong. It says:
error: incorrect value `xxx` for codegen option `panic` - either `panic` or `abort` was expected
It should say instead:
error: incorrect value `xxx` for codegen option `panic` - either `unwind` or `abort` was expected
That is, valid values for this option are 'unwind' and 'abort', but not 'panic'.
Steps
cargo build
Output of cargo version:
cargo version
cargo 1.32.0-nightly (b3d0b2e54 2018-11-15)
The text was updated successfully, but these errors were encountered:
This is an issue in rustc. I can post a quick fix.
Sorry, something went wrong.
Rollup merge of rust-lang#56176 - GuillaumeGomez:panic-setup-msg, r=n…
686257c
…agisa Panic setup msg Fixes rust-lang#56088.
No branches or pull requests
Problem
The error message when writing an invalid profile.panic option is wrong. It says:
It should say instead:
That is, valid values for this option are 'unwind' and 'abort', but not 'panic'.
Steps
cargo build
.Output of
cargo version
:The text was updated successfully, but these errors were encountered: