-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Add iOS version detection, turn off JIT on bootup if >= 14.3. #14201
Conversation
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.
Definitely needs app-android.cpp, no?
-[Unknown]
bool System_GetPropertyBool(SystemProperty prop) { | ||
switch (prop) { | ||
case SYSPROP_CAN_JIT: | ||
return true; |
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.
Thanks for remembering, sometimes seems like headless always gets last pick. Though indentation is a bit spacier than usual.
-[Unknown]
Seems libretro won't even hit this code, so we only need Android left. -[Unknown] |
a2899b8
to
21511ac
Compare
I had actually done Android too, it was just sitting unsaved in my editor for some reason. |
Shouldn't this be >= 14.4? JIT still works on 14.3 (on A12 and up). |
I was under the impression it worked on 12.2 but not later, apparently I was a minor version off. Can fix. |
I'm a bit undecided on exactly what we should do.
"Fixes" #14196
Options seem to be:
In the two second options, the user can still attempt to turn it on in case Apple makes a boo-boo and accidentally allows it again.
This implements the building blocks, and option 3 above.
Hm.