Skip to content

Compile notes

Steven Noreyko edited this page Feb 6, 2020 · 2 revisions

complile notes

norns source now has submodules so it needs to pull those in - so cloning from scratch:

cd ~
git clone https://github.com/fates-project/norns.git --recurse-submodules
cd norns
./waf configure
./waf

or updating an already pulled repo

cd ~/norns
git submodule update --init --recursive
./waf configure
./waf

Clone this wiki locally