lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Thu, Oct 23, 2014 at 08:21:34PM +0800, 曾磊 wrote:
> hi all,
>     now, more than more apps need cross architectures.
> 
> such as:
>     iOS8's ipa:  must have tow architectures support.
>     armv7, armv7s, arm64

On these large devices, shipping bytecode is probably a waste of time.
Just strip out comments and unneeded whitespace from your sources; it'll
end up being smaller than the pre-compiled bytecode.

The compiler is so fast you probably won't notice the speed difference
anyway.

(Bytecode has only ever been useful for me in situations where code
space was so limited I didn't want to include the compiler.  It can
occasionally be used for IPC too; but in that situation the CPU will be
the same architecture anyway.

B.