We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f8c474 commit 7151cd6Copy full SHA for 7151cd6
CHANGELOG.md
@@ -3,6 +3,9 @@
3
- Add VxWorks support
4
[#105](https://github.com/lambda-fairy/rust-errno/pull/105)
5
6
+- Add cygwin support
7
+ [#106](https://github.com/lambda-fairy/rust-errno/pull/106)
8
+
9
# [0.3.10] - 2024-11-29
10
11
- Update to windows-sys 0.59
build.rs
@@ -0,0 +1,4 @@
1
+fn main() {
2
+ // Cygwin target, added in 1.86
+ println!("cargo:rustc-check-cfg=cfg(target_os, values(\"cygwin\"))");
+}
0 commit comments