dolphin-ios icon indicating copy to clipboard operation
dolphin-ios copied to clipboard

JIT ask

Open LucianShw opened this issue 1 year ago • 1 comments

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

LucianShw avatar Apr 25 '24 00:04 LucianShw

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

cootshk avatar Apr 27 '24 02:04 cootshk