JIT-compiler for the programming language Dora implemented in Rust. Works on Linux (x86_64, aarch64) and macOS (x86_64). Build with:
You need to install these dependencies:
```
$ sudo dnf install capstone-devel ruby
$ sudo apt install libcapstone-dev ruby
$ brew install capstone ```
Ruby is used for running tests, while capstone is used for instruction decoding/disassembling machine code.
Install current Rust Nightly via rustup.rs. The nightly version of Rust is needed because Dora uses some unstable features of Rust (e.g. inline assembly).
Dora uses cargo for building, which is bundled with Rust:
```
rustup update nightly rustup override set nightly
tools/test tools/test-release ```