Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Unreleased

* Fix tagging for iOS x86_64 simulator wheels.

## [1.10.1]

* Fix wrong dependency on Homebrew liblzma on macOS by static linking liblama
Expand Down
2 changes: 1 addition & 1 deletion src/build_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ impl BuildContext {
} else {
"x86_64"
};
let abi = if self.target.target_triple().ends_with("-sim") {
let abi = if target.target_arch() == Arch::X86_64 || self.target.target_triple().ends_with("-sim") {
"iphonesimulator"
} else {
"iphoneos"
Expand Down
Loading