Forked and bootstrapped from the original paren.
- LLVM (at least v18.1.4)
- C++20 complient compiler (much of this was only tested with clang)
- black (for formatting)
- lit (for testing)
python3
This can be built with a clang+llvm toolchain that provides:
- clang
- llvm-config (and core llvm libs)
- FileCheck (for testing)
- clang-format (optional)
The llvm release page for v18.1.4 provides a handful of prebuilt toolchains.
Assuming you have the toolchain from above, you can build the project with just the Toolchain.cmake
file:
$ mkdir build
$ cd build
$ cmake -GNinja -DCLANG_PREFIX=/path/to/clang/toolchain/bin/ -DCMAKE_TOOLCHAIN_FILE=../Toolchain.cmake ..
$ ninja
Install the required python packages:
$ pip install -r requirements.txt
Then in the build directory:
$ ninja check
Install the required python packages:
$ pip install -r requirements.txt
Then in the build directory:
$ ninja format