We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The built environment installs various versions of Xcodes, then Scipio doesn't care about target SDKs.
In such a situation, Scipio picks the unspecified SDK (in most cases, latest). It occurs the following error on the linking time.
Showing All Errors Only Cannot load module 'MyFramework' built with SDK 'iphonesimulator18.0' when using SDK 'iphonesimulator17.5':
If the app uses the older simulator and SDKs, but all frameworks are built with the latest SDK even if using the old Xcode.
Additionally, Scipio doesn't respect the SDK version when managing caches. In short, it treats frameworks built with different SDKs as identical.
To prevent this situation, we have to support the following features.
The text was updated successfully, but these errors were encountered:
xcodebuild -showsdks
Scipio/Sources/ScipioKit/BuildOptions.swift
Lines 157 to 180 in 578ce98
Sorry, something went wrong.
No branches or pull requests
The built environment installs various versions of Xcodes, then Scipio doesn't care about target SDKs.
In such a situation, Scipio picks the unspecified SDK (in most cases, latest). It occurs the following error on the linking time.
If the app uses the older simulator and SDKs, but all frameworks are built with the latest SDK even if using the old Xcode.
Additionally, Scipio doesn't respect the SDK version when managing caches. In short, it treats frameworks built with different SDKs as identical.
To prevent this situation, we have to support the following features.
The text was updated successfully, but these errors were encountered: