From 9566c1201a2ad4f08f37f592bce69b6a3710aa68 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sun, 7 Jun 2020 00:05:31 +0100 Subject: [PATCH] advise people to use "make install" which does python setup.py develop --- index.mdwn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.mdwn b/index.mdwn index a4a87f69d..771bb93bd 100644 --- a/index.mdwn +++ b/index.mdwn @@ -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" -- 2.30.2