Skip to content

Commit 7151cd6

Browse files
committed
Add build.rs to make CI happy
1 parent 3f8c474 commit 7151cd6

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
- Add VxWorks support
44
[#105](https://github.com/lambda-fairy/rust-errno/pull/105)
55

6+
- Add cygwin support
7+
[#106](https://github.com/lambda-fairy/rust-errno/pull/106)
8+
69
# [0.3.10] - 2024-11-29
710

811
- Update to windows-sys 0.59

build.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
fn main() {
2+
// Cygwin target, added in 1.86
3+
println!("cargo:rustc-check-cfg=cfg(target_os, values(\"cygwin\"))");
4+
}

0 commit comments

Comments
 (0)