Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prefer target.env values over build.env config.
We currently use `build.env` over `target.$(...).env`, which means we cannot set a default value and then override it for a specific target. Given the following config file: ```toml [build.env] xargo = true [target.aarch64-unknown-linux-gnu.env] xargo = false ``` We currently would use `xargo` even on `aarch64-unknown-linux-gnu`, when we should not, and only use `xargo` for every other target. Closes #773.
- Loading branch information