Skip to content

Commit 2f01868

Browse files
committed
Add rustflags support to config files
`build.rustflags` is treated exactly like `RUSTFLAGS`. It is a list, so argument lists with spaces work. `RUSTFLAGS` takes precedent, then `build.rustflags`.
1 parent e4baac0 commit 2f01868

8 files changed

+906
-451
lines changed

Cargo.lock

+54-54
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/cargo/ops/cargo_compile.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ fn scrape_target_config(config: &Config, triple: &str)
469469
None => return Ok(ret),
470470
};
471471
for (lib_name, _) in table.into_iter() {
472-
if lib_name == "ar" || lib_name == "linker" {
472+
if lib_name == "ar" || lib_name == "linker" || lib_name == "rustflags" {
473473
continue
474474
}
475475

0 commit comments

Comments
 (0)