lua-users home
lua-l archive

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



Am 24.08.15 um 10:51 schrieb Amir Ramezani:
> my problem is, it doesnt work and does not bind to executable!
> it open's it!, but writes to another file, but the file is different
> from executable

It's on my todo list to write a utility called "luacc" (note the two
'c's) which on the commandline is more or less compatible with luac, but
does not produce Lua bytecode, but a binary executable:

$ luacc -o hello hello.lua
$ ./hello
Hello, World!
$


Once done, I will make it available.

- m.