From: Luke Kenneth Casson Leighton Date: Sat, 6 Jun 2020 23:05:31 +0000 (+0100) Subject: advise people to use "make install" which does python setup.py develop X-Git-Tag: convert-csv-opcode-to-binary~2541 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9566c1201a2ad4f08f37f592bce69b6a3710aa68;p=libreriscv.git advise people to use "make install" which does python setup.py develop --- 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"