will this work in theory on any platform with lua?
$ luax compile -t native -o hello hello.lua
Soon I'll try this on my x86 tinycorelinux, would be nice.
Also, I was wondering if you did some research towards crosscompiling to architecture X via architecture Y:
$ qemu-aarch64 luax.lua compile -t native -o hello hello.lua
$ qemu-x86 luax.lua compile -t native -o hello hello.lua
I guess you still need a lua runtime which is compiled for those architectures no?
Reason: would be great to use luax inside codeberg pipelines to build binaries for various architectures as releases
will this work in theory on **any** platform with lua?
```bash
$ luax compile -t native -o hello hello.lua
```
Soon I'll try this on my x86 tinycorelinux, would be nice.
Also, I was wondering if you did some research towards crosscompiling to architecture X via architecture Y:
```
$ qemu-aarch64 luax.lua compile -t native -o hello hello.lua
$ qemu-x86 luax.lua compile -t native -o hello hello.lua
```
I guess you still need a lua runtime which is compiled for those architectures no?
> Reason: would be great to use luax inside codeberg pipelines to build binaries for various architectures as [releases](https://github.com/jbaicoianu/janusweb/blob/master/.github/workflows/deploy.yml#L45-L46)