kc3-lang/kc3/doc/3_Guides/3.1_Install.en.md

Download

KC3 installation

There are no binary release from now, you must install from sources.

Get the sources

From git

From kmx.io git forge

git clone https://git.kmx.io/kc3-lang/kc3.git

From Github

git clone https://github/kc3-lang/kc3.git

Clone submodules also

cd kc3
git submodule init
git submodule update
cd fonts
git submodule init
git submodule update
cd ..

Install from sources

Install dependencies

Debian / Ubuntu / PopOS / Mint

# install build tools
sudo apt install pkg-config clang libtool-bin make ruby time

# install dependencies
sudo apt install libffi-dev libbsd-dev libevent-dev

# install demo dependencies
sudo apt install glew libfreetype-dev libsdl2-dev libxkbcommon-dev

Compilation

./configure
make -j8

Add the sources to LD_LIBRARY_PATH

. ./env

Create symlinks to libs

make lib_links

Top : KC3 Guides

Next : KC3 Testing Guide


Source

Download