advise people to use "make install" which does python setup.py develop
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sat, 6 Jun 2020 23:05:31 +0000 (00:05 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sat, 6 Jun 2020 23:05:31 +0000 (00:05 +0100)
index.mdwn

index a4a87f69d1845ed6356d1d3cdc1454e0a4e95144..771bb93bd6ea3fccbc983610ffc182cd3b11093a 100644 (file)
@@ -120,9 +120,9 @@ Here is an example process of how to play with the soc code:
     git clone https://git.libre-riscv.org/git/ieee754fpu.git
     git clone https://git.libre-riscv.org/git/soc.git
     
-    cd nmutil; pip3 install -e .; cd ..
-    cd ieee754fpu; pip3 install -e .; cd ..
-    cd soc; git submodule init; git submodule update; pip3 install -e .; cd ..
+    cd nmutil; ;ake install; cd ..
+    cd ieee754fpu; make install; cd ..
+    cd soc; make gitupdate; make install; cd ..
     
     python3 soc/src/soc/decoder/power_decoder.py
     yosys -p "read_ilang decoder.il; show dec31"