-
Notifications
You must be signed in to change notification settings - Fork 377
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow
build-std
to take an array of crate names (#1488)
Closes #896. This is technically a breaking change because arbitrary strings passed to the `CROSS_BUILD_STD` environment variable (e.g. `yes`) are now no longer parsed as truthy values, but rather as a single crate name (or multiple, if containing commas) to pass to `-Zbuild-std` (resulting in e.g. `-Zbuild-std=yes`, which is invalid). Behaviour remains the same when `CROSS_BUILD_STD` is set to `true`, `false`, or a number that fits in an `i32`.
- Loading branch information
Showing
5 changed files
with
97 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"description": "Allow `build-std` to take an array of crate names", | ||
"issues": [896], | ||
"type": "changed", | ||
"breaking": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters