Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/regginator/luauc
Simple Native Luau Bytecode File Runner
https://github.com/regginator/luauc
luau
Last synced: 28 days ago
JSON representation
Simple Native Luau Bytecode File Runner
- Host: GitHub
- URL: https://github.com/regginator/luauc
- Owner: regginator
- License: mit
- Created: 2023-06-28T23:24:48.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-01-21T06:34:19.000Z (12 months ago)
- Last Synced: 2024-01-21T07:27:27.871Z (12 months ago)
- Topics: luau
- Language: C++
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# luauc
Simple Native Luau Bytecode File Runner
## Build
*(If on GNU/Linux, with `cmake` and `g++`)*
* Clone the Repository (Recursively)
```sh
git clone --recursive https://github.com/regginator/luauc.git
cd luauc
``````sh
./build.sh
```Or, manually..
```sh
mkdir -p luau/build
cmake -S luau -B luau/build -DCMAKE_BUILD_TYPE=Release
cmake --build luau/build --config Release --target Luau.VMg++ -std=c++17 -O2 -Wall -Wextra -o luauc luauc.cpp -Lluau/build -lLuau.VM
strip -s luauc
```## Usage
```
$ luauc
Usage: luauc
```