Developer Guides
Setup
Install the required tools to build tagion
Ubuntu
apt-get install git autoconf build-essential libtool dub cmake
Download a D compiler ldc or dmd
- LLVM D compiler - ldc2 (v1.37.0)
wget https://github.com/ldc-developers/ldc/releases/download/v1.37.0/ldc2-1.37.0-linux-x86_64.tar.xz
tar xf ldc2-1.37.0-linux-x86_64.tar.xz
export PATH="path-to-ldc2/ldc2-1.34.0-linux-x86_64/bin:$PATH"
- Reference D compiler - dmd (v2.107.1)
wget https://downloads.dlang.org/releases/2.x/2.107.1/dmd.2.107.1.linux.tar.xz
tar xf dmd.2.107.1.linux.tar.xz
export PATH="path-to-dmd2/dmd2/linux/bin64:$PATH"