We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aea10ca + 42b144e commit 36378cfCopy full SHA for 36378cf
rust-version
@@ -1 +1 @@
1
-e19ca1d946269f7b7eb13171531caf2e16f42076
+a7f375789bab1a4e4a291c963081a8ca7d2b6bd7
src/shims/posix/macos/dlsym.rs
@@ -17,6 +17,7 @@ impl Dlsym {
17
pub fn from_str(name: &str) -> InterpResult<'static, Option<Dlsym>> {
18
Ok(match name {
19
"getentropy" => Some(Dlsym::getentropy),
20
+ "openat" => None, // std has a fallback for this
21
_ => throw_unsup_format!("unsupported macOS dlsym: {}", name),
22
})
23
}
0 commit comments