We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c2aa27 commit 15a342fCopy full SHA for 15a342f
src/lib.rs
@@ -287,6 +287,8 @@ impl fmt::Display for Error {
287
std::env::var("CARGO_PKG_NAME").unwrap_or_else(|_| "sys".to_owned());
288
let instructions = if cfg!(target_os = "macos") {
289
"Try `brew install pkgconf` if you have Homebrew.\n"
290
+ } else if cfg!(target_os = "ios") {
291
+ "" // iOS cross-compilation requires a custom setup, no easy fix
292
} else if cfg!(unix) {
293
"Try `apt install pkg-config`, or `yum install pkg-config`,\n\
294
or `pkg install pkg-config`, or `apk add pkgconfig` \
0 commit comments