[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: turnning lua code to executable in a C program
- From: Marc Balmer <marc@...>
- Date: Mon, 24 Aug 2015 12:52:29 +0200
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.