Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,9 @@ jobs:
# - name: HermitOS
# if: startsWith(matrix.rust, 'nightly') && startsWith(matrix.os, 'ubuntu')
# run: cargo check -Z build-std --target x86_64-unknown-hermit
# TODO:
# - name: Check haiku
# if: startsWith(matrix.rust, 'nightly') && startsWith(matrix.os, 'ubuntu')
# run: cargo check -Z build-std --target x86_64-unknown-haiku
- name: Check haiku
if: startsWith(matrix.rust, 'nightly') && startsWith(matrix.os, 'ubuntu')
run: cargo check -Z build-std --target x86_64-unknown-haiku
- name: Check vita
if: startsWith(matrix.rust, 'nightly') && startsWith(matrix.os, 'ubuntu')
run: cargo check -Z build-std --target armv7-sony-vita-newlibeabihf
Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2104,13 +2104,15 @@ fn connect(
target_os = "aix",
target_vendor = "apple",
target_os = "espidf",
target_os = "haiku",
windows,
)))]
let flags = rn::SocketFlags::CLOEXEC;
#[cfg(any(
target_os = "aix",
target_vendor = "apple",
target_os = "espidf",
target_os = "haiku",
windows,
))]
let flags = rn::SocketFlags::empty();
Expand Down
Loading