-
-
Notifications
You must be signed in to change notification settings - Fork 21.5k
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
iOS: Weak-link MetalFX #101614
iOS: Weak-link MetalFX #101614
Conversation
Does this fix #101585? |
b018428
to
0cd0f88
Compare
@Repiteo yes, I've just confirmed it fixes the build. |
Looks pretty good! I'll let @bruvzg evaluate tomorrow and start the new beta 1 build once he confirms which solution to go for. |
@@ -7,6 +7,7 @@ | |||
objects = { | |||
|
|||
/* Begin PBXBuildFile section */ | |||
054F8BE62D38852F00B81423 /* MetalFX.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 054F8BE52D38852F00B81423 /* MetalFX.framework */; settings = {ATTRIBUTES = (Weak, ); }; }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note the Weak
attribute, which allows apps to run on OS versions older than iOS 16, which don't have MetalFX.
Thanks! |
Closes #101585
MetalFX must be weak-linked in the iOS Xcode project.
Important
Supersedes