This repository was archived by the owner on Dec 12, 2024. It is now read-only.

Description
When building an iOS project in Xcode for simulator, you get arm64-apple-ios-simulator by default.
The problem we're seeing is that there is no *MIN_VERSION load command, but there is a BUILD_VERSION which we use instead of the MIN_VERSION. The problem is that the version that we get back has an OS and SDK version that is way different from the others, which causes us issues when we build against it.
We need to figure out how to make it build cleanly with arm64-apple-ios-simulator. It probably means tweaking the arguments to dynamically set the SDK information instead of using a static version.