LLVM-based compiler for Slang - educational programming language.
https://slangdocs.readthedocs.io/ru/latest/
Clone the repository
git clone https://github.com/f0xeri/SlangCompilerInstall LLVM 18 and libgc-dev
sudo wget https://apt.llvm.org/llvm.sh &&
sudo bash ./llvm.sh 18 all &&
sudo apt-get install libgc-dev -yBuild the project
cd SlangCompilercmake -B build -DCMAKE_BUILD_TYPE=Releasecmake --build build --config ReleaseRun tests
cd tests &&
python -m setSlangcPath "../build/slangc" && python -m unittest runTests.py