We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 990b3c8 commit ecf4fe0Copy full SHA for ecf4fe0
src/bootstrap/lib.rs
@@ -177,7 +177,7 @@ mod toolstate;
177
#[cfg(windows)]
178
mod job;
179
180
-#[cfg(unix)]
+#[cfg(all(unix, not(target_os = "haiku")))]
181
mod job {
182
use libc;
183
@@ -188,7 +188,7 @@ mod job {
188
}
189
190
191
-#[cfg(not(any(unix, windows)))]
+#[cfg(any(target_os = "haiku", not(any(unix, windows))))]
192
193
pub unsafe fn setup(_build: &mut ::Build) {
194
0 commit comments