Skip to content

Remap iOS simulator target names to fix the build for the simulator #113

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ fn sdk_path(target: &str) -> Result<String, std::io::Error> {
} else if target == "x86_64-apple-ios"
|| target == "i386-apple-ios"
|| target == "aarch64-apple-ios-sim"
|| target == "x86_64-apple-ios-sim"
{
"iphonesimulator"
} else if target == "aarch64-apple-ios"
Expand Down Expand Up @@ -127,6 +128,10 @@ fn build(sdk_path: Option<&str>, target: &str) {
"arm64-apple-ios"
} else if target == "aarch64-apple-darwin" {
"arm64-apple-darwin"
} else if target == "aarch64-apple-ios-sim" {
"arm64-apple-ios-simulator"
} else if target == "x86_64-apple-ios-sim" {
"x86_64-apple-ios-simulator"
} else {
target
};
Expand Down