This is the educational implementational of ParaCL compiler.
Firstly clone this repo and go root directory.
git clone [email protected]:R0flan4k/ParaCL.git
cd ParaCL
Next download conan into virtual environments:
python3 -m venv .venv
source .venv/bin/activate
pip3 install -r requirements.txt
Detect conan profile:
conan profile detect --force
Now you can build the project:
conan install . --build=missing -s compiler.cppstd=gnu20
cmake . -B build/Release -DCMAKE_TOOLCHAIN_FILE=build/Release/generators/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release
cmake --build build/Release
To compile ParaCL code use:
./build/Release/ParaCL <src_file_name>