OpenCDK (Open Caitlyn Development Kit) is a free and open-source development kit for Caitlyn programming language. This includes Caitlyn compiler and Caitlyn virtual machine (CVM).
The best way to interact with us is to test tools and make bug reports through GitHub.
If you are a developer. Please check:
Caitlyn language is supported for Linux but other platforms should be able to build it too. First of all you will need to install gcc-10.
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install gcc-10
and you need GLFW
sudo apt-get install libglfw3
sudo apt-get install libglfw3-dev
Next we have to clone the repository
git clone https://github.com/ackerman2001/OpenCDK.git
cd OpenCDK
To build Caitlyn virtual machine
cd tools/cvm/src
gcc cvm.c -o cvm -lglfw -lGLU -lGL