clx is a cross-platform ahead-of-time Lua compiler and runtime that generates standalone native executables through modern C++ toolchains. clx is not trying to be the fastest Lua implementation in every workload.
Its goal is to provide:
- ahead-of-time native compilation,
- deployable standalone executables,
- predictable runtime performance,
- fast startup times,
- integration with existing C++ toolchains,
- and strong optimization opportunities through modern native compilers.
git clone https://github.com/clxcompiler/clx.git
cd clx
./build.sh install # or build.bat install on Windows
clx examples/hello/hello.lua
./hello
Hello clx !- Competitive performance with strong results on many AOT-friendly workloads
- No bytecode interpreter overhead — compiles to standalone native executables
- Aggressive optimizations — leverages modern optimizations via Clang/GCC/MSVC
- Small binaries — size-oriented builds can produce very compact executables (Lua programs can be under 100 KB with
--minimal) - Targets Lua 5.5 compatibility — coroutines, metamethods, tables, and more
- NaN-boxed value representation
- Inline string optimization (strings ≤ 5 bytes stored in value, no allocation)
- Fast-path table access caches
- Lightweight AOT-oriented runtime
- clx C++ API: develop portable native modules using a value-oriented API
clx is currently in beta. The compiler is already capable of compiling non-trivial Lua applications, but compatibility work and optimization improvements are ongoing.
- Hello World (minimal executable)
- Mandelbrot Viewer (graphics demo)
- Pong (complete game built in Lua)
- Sokol Module (native graphics module using the clx C++ API)
- Linux:
g++(recommended for TCO) orclang++ - macOS:
g++(recommended for TCO) orclang++(Xcode) - Windows:
g++(LLVM) or MSVC - CMake 3.15+ for building
Note: The compiler used to build
clxis fixed at build time via CMake and used for all Lua script compilation. This ensures ABI compatibility between the runtime libraries and generated code. Rebuild clx with a different compiler if you need a different backend.
./build.sh # Release (default)
./build.sh debug # Debug
./build.sh clean # Removes build/ + /usr/local install
./build.sh install # Release + install to /usr/local
./build.sh uninstall # Removes installed files in /usr/local./build.bat # Release (default)
./build.bat debug # Debug
./build.bat clean # Removes build/ + ./bin and ./lib
./build.bat install # Release + install to /bin and ./lib
./build.bat uninstall # Removes previously installed clxAlso works directly with CMake:
mkdir -p build && cmake -S . -B build && cmake --build buildOnce compiled, you will find :
build/clx— The compiler executablebuild/libclx.a— Static runtime librarybuild/libclx_size.a— Static runtime library optimized for size
./build/clx file.lua # Compile to executable (default flags)
./build/clx --object file.lua # Object file (.o/.obj)
./build/clx --static file.lua # Static clx module (.a/.lib)
./build/clx --cpp file.lua # Generate C++ source, don't compile
./build/clx file.lua -O2 # Forward unknown clx flags to the backend compiler
./build/clx file.lua --output f.exe # Custom output name
./build/clx file.lua --debug # No optimizations, debug symbols
./build/clx file.lua --minimal # base + package modules only
./build/clx file.lua --fast # Optimize for speed
./build/clx file.lua --size # Optimize for size (default)
./build/clx --version # Print version
./build/clx --help # Display helpclx targets Lua 5.5 compatibility.
Current status:
- Core language: largely implemented
- Tables and metatables: implemented
- Coroutines: implemented
- Modules: implemented
- Most standard libraries: implemented
See compatibility.md for detailed status.
load()/dofile()/loadfile()/string.dump()— dynamic code loading requires a runtime interpreterdebugmodule — very complex in a pure AOT model- The traditional Lua C API is not supported.
- Binary modules should be written using the clx C++ API.
./tests/run.sh # POSIX
./tests/run.bat # WindowsEach .lua in tests/ is compiled to a binary and executed. Tests print [OK]/[FAIL] per assertion.
Results are expressed in speedup factor against standard Lua 5.5 interpreter :
| Script | lua 5.5 | LuaJIT | clx --fast |
|---|---|---|---|
| fib.lua | 0.293s (1.00x) | 0.048s (6.10x) | 0.006s (48.83x) |
| arraysum.lua | 0.110s (1.00x) | 0.044s (2.50x) | 0.023s (4.78x) |
| spectralnorm.lua | 0.303s (1.00x) | 0.018s (16.83x) | 0.040s (7.57x) |
| canada.lua | 0.450s (1.00x) | 0.148s (3.04x) | 0.231s (1.95x) |
| warmup.lua | 0.006s (1.00x) | 0.008s (0.75x) | 0.003s (2.00x) |
Measured on Intel® Core™ i5 Ultra 125U CPU @ 4.30GHz · Linux · GCC 13.3.0 · Avg of 10 runs
Full benchmarks are available in clx benchmarks
Documentation is available in the doc/ directory, including :
- Getting Started
- CLI Reference
- Compatibility Status
- Module Development Guide
- C++ API Reference
- Runtime Internals
- Architecture Overview
- Benchmarks
clx is MIT Licensed — Copyright (c) 2026 Tine Samir