我的 Lua 脚本由LOOP编译,编译后的脚本模块在台式机(OSX 10.7.5)中运行良好。但是当我在Android手机(Android 2.3.6)下运行它时,它总是失败并报错attempt to call a string value
。相同的脚本也可以在同一部手机中以脚本(未编译)方式运行而不会出现问题。
测试使用 Lua 5.1.5 和 Android NDK r8b。
logcat中的错误:
12-26 09:40:26.934: E/libb22luapre(8190): Failed to run script: attempt to call a string value
C 代码片段(为简单起见,删除了错误处理代码):
const char script[] = "require \"hello.world\"\n"
"require \"anothermodule\"\n"
"hello.world.test2()";
luaL_loadstring(L, script);
lua_pcall(L, 0, LUA_MULTRET, 0);
我转储了预加载的表,这些必需的模块已经存在(加载成功)。
我搜索了网络,仍然找不到解决方案。任何建议将不胜感激。
[更新] 我为 android 编译了 lua 命令并将编译的 lua 脚本嵌入其中。错误与上述相同。
$ adb shell
$ cd /data/local
$ ls
tmp
lua
dump_preload.lua
$ ./lua dump_preload.lua
--- print table --- preload
test function: 0x376f0
anothermodule function: 0x37718
hello.world function: 0x376b0
--- print table --- loaded
string table: 0x33828
debug table: 0x37098
package table: 0x33d30
_G table: 0x32528
io table: 0x34e80
os table: 0x357b8
table table: 0x332c0
math table: 0x36530
coroutine table: 0x33988
--- print table --- loaders
1 function: 0x33ed8
2 function: 0x33ef8
3 function: 0x33f18
4 function: 0x33f38
$ ./lua
Lua 5.1.5 Copyright (C) 1994-2012 Lua.org, PUC-Rio
> require 'test'
attempt to call a string value
stack traceback:
[C]: ?
[C]: in function 'require'
stdin:1: in main chunk
[C]: ?
> require 'hello.world'
attempt to call a string value
stack traceback:
[C]: ?
[C]: in function 'require'
stdin:1: in main chunk
[C]: ?
>