We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 265a0e0 commit fa2c55bCopy full SHA for fa2c55b
rye/src/main.rs
@@ -1,3 +1,8 @@
1
+// libcurl crashes on Somona unless CoreServices is linked in
2
+// See https://github.com/mitsuhiko/rye/issues/428
3
+#[cfg_attr(target_os = "macos", link(name = "CoreServices", kind = "framework"))]
4
+extern "C" {}
5
+
6
use std::process;
7
use std::sync::atomic::{AtomicBool, Ordering};
8
0 commit comments