mirror of
https://github.com/Noratrieb/does-it-build.git
synced 2026-01-16 03:05:03 +01:00
Use cargo check -Zbuild-std instead of cargo miri setup
This should be more reliable (not building with `cfg(miri)` and more accurately knowing whether a target supports std). Known targets affected by this change: - cygwin: should now build since it only breaks in `cfg(miri)` - i686-pc-nto-qnx700: officially doesn't support std closes #4
This commit is contained in:
parent
0be7b4c981
commit
df486c20f8
7 changed files with 85 additions and 68 deletions
|
|
@ -44,7 +44,7 @@ impl Nightlies {
|
|||
|
||||
self.all
|
||||
.iter()
|
||||
.flat_map(|nightly| [(nightly, BuildMode::Core), (nightly, BuildMode::MiriStd)])
|
||||
.flat_map(|nightly| [(nightly, BuildMode::Core), (nightly, BuildMode::Std)])
|
||||
.find(|(nightly, mode)| {
|
||||
!already_finished.contains(&FinishedNightly {
|
||||
nightly: (*nightly).to_owned(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue