OatmealDome / dolphin-ios

Dolphin for iOS, reborn
Other
250 stars 27 forks source link

JIT ask #141

Open LucianShw opened 2 months ago

LucianShw commented 2 months ago

Is enabling JIT on my device safe? What does activating it do to my device?

cootshk commented 2 months ago

JIT stands for Just In Time compilation

In a normal program, you change all of the code into computer instructions, then run them all at once. In JIT, you only compile the code when it is needed, leading to speedup

Apple blocks JIT, as a bug in any app using it (especially browsers) can allow for random code to be run on your device (which is not good)

As long as you trust the ROMs you give dolphiniOS, you will be fine