Skip to content

Commit 199589d

Browse files
committed
handle rustc args properly in bootstrap
Because `RUSTFLAGS` gets overwritten during the conversion from `Cargo` to `Command`, the passed rustc args were being lost. This change combines the rustc args with the values that override `RUSTFLAGS`. Signed-off-by: onur-ozkan <[email protected]>
1 parent 3d5528c commit 199589d

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/bootstrap/src/core/builder.rs

+4-6
Original file line numberDiff line numberDiff line change
@@ -2093,12 +2093,10 @@ impl<'a> Builder<'a> {
20932093
rustdocflags.arg("--cfg=parallel_compiler");
20942094
}
20952095

2096-
// set rustc args passed from command line
2097-
let rustc_args =
2098-
self.config.cmd.rustc_args().iter().map(|s| s.to_string()).collect::<Vec<_>>();
2099-
if !rustc_args.is_empty() {
2100-
cargo.env("RUSTFLAGS", &rustc_args.join(" "));
2101-
}
2096+
// Pass the value of `--rustc-args` from test command. If it's not a test command, this won't set anything.
2097+
self.config.cmd.rustc_args().iter().for_each(|v| {
2098+
rustflags.arg(v);
2099+
});
21022100

21032101
Cargo {
21042102
command: cargo,

0 commit comments

Comments
 (0)