We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eae8118 commit 94b75acCopy full SHA for 94b75ac
compiler/rustc_target/src/spec/mod.rs
@@ -2956,8 +2956,8 @@ impl Target {
2956
);
2957
check_eq!(
2958
self.is_like_windows,
2959
- self.os == "windows" || self.os == "uefi",
2960
- "`is_like_windows` must be set if and only if `os` is `windows` or `uefi`"
+ self.os == "windows" || self.os == "uefi" || self.os == "cygwin",
+ "`is_like_windows` must be set if and only if `os` is `windows`, `uefi` or `cygwin`"
2961
2962
2963
self.is_like_wasm,
0 commit comments