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 5837e3a commit 21c78b9Copy full SHA for 21c78b9
build.rs
@@ -11,7 +11,10 @@ fn sdk_path(target: &str) -> Result<String, std::io::Error> {
11
12
let sdk = if target.contains("apple-darwin") {
13
"macosx"
14
- } else if target == "x86_64-apple-ios" || target == "i386-apple-ios" {
+ } else if target == "x86_64-apple-ios"
15
+ || target == "i386-apple-ios"
16
+ || target == "aarch64-apple-ios-sim"
17
+ {
18
"iphonesimulator"
19
} else if target == "aarch64-apple-ios"
20
|| target == "armv7-apple-ios"
0 commit comments