We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 20f13b2 + dfe58a9 commit ba801d8Copy full SHA for ba801d8
src/librustuv/uvll.rs
@@ -728,7 +728,9 @@ extern {
728
// libuv requires other native libraries on various platforms. These are all
729
// listed here (for each platform)
730
731
-#[cfg(not(target_os = "android"))] // apparently pthreads isn't on android?
+// libuv doesn't use pthread on windows
732
+// android libc (bionic) provides pthread, so no additional link is required
733
+#[cfg(not(windows), not(target_os = "android"))]
734
#[link(name = "pthread")]
735
extern {}
736
0 commit comments