Building harelang

Feed

date: 2022-04-28 20:58:48

categories: programming

firstPublishDate: 2022-04-28 20:58:48

Harelang

Harelang is FOSS programming language which simple to build.

Here are commands to build it on Debian Bullseye (taken from the harelang website):

sudo apt-get install build-essential
mkdir ~/bin
export PATH=~/bin:$PATH
git clone git://c9x.me/qbe.git
cd qbe
make
cp obj/qbe ~/bin/
cd ..
git clone https://git.sr.ht/~sircmpwn/scdoc
cd scdoc
make
cp scdoc ~/bin/
cd ..
git clone https://git.sr.ht/~sircmpwn/harec
cd harec
./configure
make
#make test
cp harec ~/bin/
cd ..
git clone https://git.sr.ht/~sircmpwn/hare
cd hare
cp config.example.mk config.mk
make
sudo make install

tags: #programming #harelang

Feed