If I embed the V8 JavaScript Engine in my application (a game) is it still possible to distribute it in the Mac & iOS App Stores?

link|improve this question

V8 does not work on iOS, because it requires executable writable memory to JIT-compile code into. – user487683 Jun 26 '11 at 8:40
So basically if I want to target iOS devices V8 is a no go? I wanted to use V8 to provide access to various native C++ methods from javascript. I'm curious, would JavaScriptCore on iOS stand in as a suitable replacement? – Deon Botha Jun 26 '11 at 9:15
feedback

1 Answer

up vote 1 down vote accepted

If you embed your own interpreter engine (any programming language), you will have to disable JIT (or any other dynamic executable code generation), as writing executable code will not work in the app sandbox on stock OS iOS devices. Compiler engines are not allowed. An app with an interpreter also can not have any code download capability, or it will be rejected by Apple. So you will have to embed your complete game with your interpreter for submission to Apple's App store.

But there are many apps approved and in the app store with embedded interpreters (Basic, for instance).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.