mirror of
https://github.com/corda/corda.git
synced 2025-06-23 01:19:00 +00:00
document iOS support in readme.txt
This commit is contained in:
14
readme.txt
14
readme.txt
@ -54,7 +54,7 @@ Avian can currently target the following platforms:
|
|||||||
Linux (i386, x86_64, ARM, and 32-bit PowerPC)
|
Linux (i386, x86_64, ARM, and 32-bit PowerPC)
|
||||||
Windows (i386 and x86_64)
|
Windows (i386 and x86_64)
|
||||||
Mac OS X (i386, x86_64 and 32-bit PowerPC)
|
Mac OS X (i386, x86_64 and 32-bit PowerPC)
|
||||||
|
Apple iOS (i386 and ARM)
|
||||||
|
|
||||||
Building
|
Building
|
||||||
--------
|
--------
|
||||||
@ -78,6 +78,7 @@ certain flags described below, all of which are optional.
|
|||||||
arch={i386,x86_64,powerpc,arm} \
|
arch={i386,x86_64,powerpc,arm} \
|
||||||
process={compile,interpret} \
|
process={compile,interpret} \
|
||||||
mode={debug,debug-fast,fast,small} \
|
mode={debug,debug-fast,fast,small} \
|
||||||
|
ios={true,false} \
|
||||||
bootimage={true,false} \
|
bootimage={true,false} \
|
||||||
heapdump={true,false} \
|
heapdump={true,false} \
|
||||||
tails={true,false} \
|
tails={true,false} \
|
||||||
@ -93,13 +94,20 @@ certain flags described below, all of which are optional.
|
|||||||
default: output of $(uname -m), normalized in some cases
|
default: output of $(uname -m), normalized in some cases
|
||||||
(e.g. i686 -> i386)
|
(e.g. i686 -> i386)
|
||||||
|
|
||||||
|
* process - choice between pure interpreter or JIT compiler
|
||||||
|
default: compile
|
||||||
|
|
||||||
* mode - which set of compilation flags to use to determine
|
* mode - which set of compilation flags to use to determine
|
||||||
optimization level, debug symbols, and whether to enable
|
optimization level, debug symbols, and whether to enable
|
||||||
assertions
|
assertions
|
||||||
default: fast
|
default: fast
|
||||||
|
|
||||||
* process - choice between pure interpreter or JIT compiler
|
* ios - if true, cross-compile for iOS on OS X. Note that
|
||||||
default: compile
|
non-jailbroken iOS devices do not allow JIT compilation, so only
|
||||||
|
process=interpret or bootimage=true builds will run on such
|
||||||
|
devices. See git://oss.readytalk.com/hello-ios.git for an example
|
||||||
|
of an Xcode project for iOS which uses Avian.
|
||||||
|
default: false
|
||||||
|
|
||||||
* bootimage - if true, create a boot image containing the pre-parsed
|
* bootimage - if true, create a boot image containing the pre-parsed
|
||||||
class library and ahead-of-time compiled methods. This option is
|
class library and ahead-of-time compiled methods. This option is
|
||||||
|
Reference in New Issue
Block a user