genrated我有一個名爲hello.lua如何執行由luac在Linux
print('Hello Lua')
我遵守這個文件字節碼在RedHat Linux機器上,使用Lua5.3.4如下一個簡單的lua代碼LUA字節碼:
luac -o hello.luac hello.lua
chmod +x hello.luac
./hello.luac
bash: ./hello.luac: cannot execute binary file
建築應該沒問題,我猜。我不知道什麼是錯的。
不'luac'仍然支持家當? [手冊](http://www.lua.org/manual/5.3/manual.html#7)指出,口譯員的確有,但是[快速搜索](http://lua-users.org/lists/ lua-l/2010-05/msg00552.html)似乎可能已經在Lua 5.2中刪除了'luac'。 – Adam
@亞當,是的,它在5.2以上。 – lhf
@lhf工程!那很簡單。我假設它應該作爲一個沒有任何解釋器的二進制文件工作。 – sadashiv30