💾 Archived View for gmi.noulin.net › 2022-04-28-building-harelang.gmi captured on 2022-06-03 at 23:24:31. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-04-28)

🚧 View Differences

-=-=-=-=-=-=-

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