-
Notifications
You must be signed in to change notification settings - Fork 348
New issue
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
Add a way to extract miri flags from --config, env and toml #3875
base: master
Are you sure you want to change the base?
Conversation
hmmm hahha ok maybe i should have retained "-Zmiri" instead of just miri. The latter makes file name and other things gets tangled in |
001faa5
to
3502a94
Compare
after debugging i found out that in phase_cargo_miri if i try to extract MIRIFLAGS (a.k.a choice (3)) from env then some of the program will fail like this
but if i seperate them into so that in phase_cargo_miri I only perform choice (1) and (2) and then in phase_runner the rest then the ui test passes fine. I think I'm missing sth important? |
@rustbot ready |
heheh now i know how to ask for review |
Yeah I've seen the PR. :) Thanks for creating it! It's quite busy in my life currently though, so I can't promise when I will get around to take a look at this. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR! However, I'm afraid I mostly don't understand what you are trying to do here...
We want to either compute the flags in phase_runner
, or compute them once upfront in phase_cargo_miri
. You currently have complicated logic in both places which definitely is not the right approach. Probably doing it once upfront is better, since computing the flags will be more expensive now.
So, in phase_cargo_miri
we compute the flags (details TBD, should work exactly like RUSTFLAGS). We take the result and store it in CARGO_ENCODED_MIRIFLAGS, using the usual ENCODED format cargo uses (documented e.g. here). Then phase_runner simply has to read that env var and set the arguments.
flags.split(' ').map(str::trim).filter(|s| !s.is_empty()).map(str::to_string).collect() | ||
} | ||
|
||
pub fn get_miriflags_cargo_mini() -> Vec<String> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add a doc comment explaining what this does. (Seems like you have a bunch of that inside the function, but that's now how doc comments work in Rust.)
Why "mini"?
pub fn get_miriflags_cargo_mini() -> Vec<String> { | ||
// Respect `MIRIFLAGS` and `miri.flags` setting in cargo config. | ||
// If MIRIFLAGS is present, flags from cargo config are ignored. | ||
// This matches cargo behavior for RUSTFLAGS. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add a link to where this behavior is documented for cargo.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi Ralf, this is from PR #2451 https://github.com/rust-lang/miri/pull/2451/files#diff-922365a8fd004632c70c2426b2851c89ed2e13229b7e7693550b87f00b100badR552 for the function get_miriflags().
I'll remove this block of comment from this function.
The comment can be made clearer by specifying flags from cargo config
to flags from .cargo/config.toml
(configuration file instead of --config option) since we run this in get_miriflags_runner
let mut cmd = cargo();
cmd.args(["-Zunstable-options", "config", "get", "miri.flags", "--format=json-value"]);
The behavior is from https://doc.rust-lang.org/cargo/reference/config.html#command-line-overrides
Cargo also accepts arbitrary configuration overrides through the --config command-line option. The argument should be in TOML syntax of KEY=VALUE:
cargo --config net.git-fetch-with-cli=true fetch
The --config option may be specified multiple times, in which case the values are merged in left-to-right order, using the same merging logic that is used when multiple configuration files apply.
Configuration values specified this way take precedence over environment variables, which take precedence over configuration files.
We check the arguments from --config first, then environment variable, then check the configuration files via cargo config get
.
I couldn't find the evidence for This matches cargo behavior for RUSTFLAGS.
Should I remove that line?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I couldn't find the evidence for This matches cargo behavior for RUSTFLAGS.
There is https://doc.rust-lang.org/cargo/reference/config.html#buildrustflags. So please add a link to that -- and make sure that MIRIFLAGS behaves the same, except that for now we don't have to support setting CARGO_ENCODED_MIRIFLAGS
or target.<triple>.miriflags
.
if let Ok(cargo_encoded_miri_flags) = env::var("CARGO_ENCODED_MIRIFLAGS") { | ||
// (1) | ||
// eprintln!("Choice 1"); | ||
flagsplit(cargo_encoded_miri_flags.as_str()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't make sense, "ENCODED" env vars shouldn't use flagsplit
. They use a different format that doesn't rely on whitespace. See the cargo docs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From https://doc.rust-lang.org/cargo/reference/environment-variables.html
CARGO_ENCODED_RUSTFLAGS — A list of custom flags separated by 0x1f (ASCII Unit Separator) to pass to all compiler invocations that Cargo performs.
I'll change this soon. Keeping this unresolved. Thank you
// (1) | ||
// eprintln!("Choice 1"); | ||
flagsplit(cargo_encoded_miri_flags.as_str()) | ||
} else if cargo_extra_flags().iter().any(|s| s.contains(&"-Zmiri".to_string())) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What are you trying to do here? cargo_extra_flags
will never contain any -Zmiri
. Please read the doc comment of the functions you call.
@@ -181,6 +181,8 @@ pub fn phase_cargo_miri(mut args: impl Iterator<Item = String>) { | |||
let target_dir = get_target_dir(&metadata); | |||
cmd.arg("--target-dir").arg(target_dir); | |||
|
|||
// eprintln!("Getting miri flags in phase_cargo_miri"); | |||
cmd.args(get_miriflags_cargo_mini()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So you are taking the miri flags and passing them to cargo...? How does that make sense?
@rustbot author |
Apologies for the delay. I'm jampacked with classes, exams and projects right now. I'll get back to it soon. Really sorry for this |
Thanks for the update, and no worries. :) |
Fixes #2347.
The main driver is get_miri_flags in
cargo-miri/src/util.rs
, which follow this stratergy:This is called once in phase_cargo_miri, then again in phase_runner.
For --config, I only retains all String that contains "miri", and then join them via " " for env. This is because flagsplit splits based on the space character. Please let me know if this is not the procedure.
In later stage this env is resolved into Vec via flagsplit().
I'm not sure how to write the test to describe this precedence of (1) over (2). Advice would be helpful :)