[6.0] ModuleInterface: Print -target-variant flag in .swiftinterface files #75352
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
-target-variant
flag was accidentally omitted from the compiler flags printed in.swiftinterface
files, causing zippered modules containing inlinableif #available
checks and@backDeployed
declarations to be miscompiled when compiled from interface.withValue()
to manage a@TaskLocal
. Without the fix, a test compiled for macCatalyst and using Swift Testing could crash unexpectedly when running on an older version of macOS. Any macCatalyst app using any@backDeployed
API could run into similar issues, and@backDeployed
was adopted heavily in commonly used APIs.-target-variant
to.swiftinterfaces
is correct. However, doing so may reveal other issues since we do not have experience with libraries including this flag correctly.