Skip to content

Educational implementation of ParaCL language interpreter.

Notifications You must be signed in to change notification settings

R0flan4k/ParaCL

Repository files navigation

ParaCL

Program Purpose

This is the educational implementational of ParaCL compiler.

How to build

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>

About

Educational implementation of ParaCL language interpreter.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published