💾 Archived View for gmi.noulin.net › 2022-04-28-building-harelang.gmi captured on 2022-04-28 at 17:39:32. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
date: 2022-04-28 20:58:48
categories: programming
firstPublishDate: 2022-04-28 20:58:48
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