Skip to content

Commit

Permalink
Auto merge of #2544 - JohnTitor:tiocremote-missing, r=JohnTitor
Browse files Browse the repository at this point in the history
Ignore `TIOCREMOTE` on macOS

r? `@ghost`
GHA macOS image updated to 20211114.1 which changed the default version of XCode to 13.1 thus we've encountered #2507.
  • Loading branch information
bors committed Nov 17, 2021
2 parents a8d7606 + d0a7b0f commit 9d94fb1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions libc-test/build.rs
Expand Up @@ -300,6 +300,9 @@ fn test_apple(target: &str) {
"KERN_KDENABLE_BG_TRACE" | "KERN_KDDISABLE_BG_TRACE" => true,
// FIXME: the value has been changed since Catalina (0xffff0000 -> 0x3fff0000).
"SF_SETTABLE" => true,

// FIXME: XCode 13.1 doesn't have it.
"TIOCREMOTE" => true,
_ => false,
}
});
Expand Down

0 comments on commit 9d94fb1

Please sign in to comment.