mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 06:43:20 +03:00
7ed4e63062
fix error on missing value for -C flags Before: ``` error: codegen option `panic` requires either `unwind`, `abort`, or `immediate-abort` (C panic=<value>) ``` After: ``` error: codegen option `panic` requires either `unwind`, `abort`, or `immediate-abort` (`-C panic=<value>`) ``` The second commit renames a field in the options macro for better consistency; that did not seem worth its own PR.