this post was submitted on 06 Apr 2024
228 points (98.7% liked)

Games

31803 readers
1239 users here now

Welcome to the largest gaming community on Lemmy! Discussion for all kinds of games. Video games, tabletop games, card games etc.

Weekly Threads:

What Are You Playing?

The Weekly Discussion Topic

Rules:

  1. Submissions have to be related to games

  2. No bigotry or harassment, be civil

  3. No excessive self-promotion

  4. Stay on-topic; no memes, funny videos, giveaways, reposts, or low-effort posts

  5. Mark Spoilers and NSFW

  6. No linking to piracy

More information about the community rules can be found here.

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] WolfLink@lemmy.ml 1 points 4 months ago (1 children)

iOS natively supports JIT (by which we mean writable and executable memory) but Apple locks it down to only two use cases:

  1. The JavaScript engine in Safari
  2. Support for running a debugger

AltStore launches a debugger and connects it to your phone. Even though it’s not actually doing anything with a debugger, that’s enough to convince iOS to let your app use memory that’s both writable and executable (the key feature needed for JIT).

Without JIT you need to either resort to a slower form of emulation or do something creative.