5

我使用 luac 来编译我的 lua 代码。luac版本是5.2.2,我的app原生lua是5.2.2。

我的lua代码

function hello()
    print("hello test luac ")
end

hello()

预编译代码:

1b4c 7561 5200 0104 0804 0800 1993 0d0a
1a0a 0000 0000 0000 0000 0001 0205 0000
0025 0000 0008 0000 8006 0040 001d 4080
001f 0080 0001 0000 0004 0600 0000 0000
0000 6865 6c6c 6f00 0100 0000 0100 0000
0300 0000 0000 0204 0000 0006 0040 0041
4000 001d 4000 011f 0080 0002 0000 0004
0600 0000 0000 0000 7072 696e 7400 0411
0000 0000 0000 0068 656c 6c6f 2074 6573
7420 6c75 6163 2000 0000 0000 0100 0000
0000 5b00 0000 0000 0000 402f 5573 6572
732f 7269 6b2f 4465 736b 746f 702f 6361
7264 4761 6d65 2f63 6c69 656e 742f 4361
7264 5265 6c65 6173 652f 7376 6e2e 7368
2f41 7373 6574 732f 5374 7265 616d 696e
6741 7373 6574 732f 4c75 612f 5465 7374
2e6c 7561 0004 0000 0002 0000 0002 0000
0002 0000 0003 0000 0000 0000 0001 0000
0005 0000 0000 0000 005f 454e 5600 0100
0000 0100 5b00 0000 0000 0000 402f 5573
6572 732f 7269 6b2f 4465 736b 746f 702f
6361 7264 4761 6d65 2f63 6c69 656e 742f
4361 7264 5265 6c65 6173 652f 7376 6e2e
7368 2f41 7373 6574 732f 5374 7265 616d
696e 6741 7373 6574 732f 4c75 612f 5465
7374 2e6c 7561 0005 0000 0003 0000 0001
0000 0005 0000 0005 0000 0005 0000 0000
0000 0001 0000 0005 0000 0000 0000 005f
454e 5600

当我dofile预编译代码时,出现如下错误:

LuaScriptException:/Users/rik/Desktop/cardGame/client/CardRelease/svn.sh/Assets/StreamingAssets/Lua/luac.out:不兼容的预编译块
NLua.Lua.ThrowExceptionFromError (Int32 oldTop)
NLua.Lua.DoFile (System.String 文件名)

如何在我的应用程序中使用预编译的 lua 代码?

4

1 回答 1

3

您预编译 Lua 脚本的平台以及您尝试加载它的平台是不兼容的,因为它们具有不同的字长或字节序。Lua 字节码不能跨架构移植。

于 2013-10-25T11:25:13.280 回答