X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=hdl-dev-repos-virtualenv;h=ff8b2facbefbb2469acb69befc1e1eba5cb0b164;hb=32572e55f04ff96cf0d98fd566e93f048fa0afa8;hp=3472ba9e9cd48e486bf1370ca94d7bba61f34655;hpb=61ee9315e75f03bac74cddae7af906549af073b5;p=dev-env-setup.git diff --git a/hdl-dev-repos-virtualenv b/hdl-dev-repos-virtualenv index 3472ba9..ff8b2fa 100755 --- a/hdl-dev-repos-virtualenv +++ b/hdl-dev-repos-virtualenv @@ -6,29 +6,48 @@ pip3 install nose git clone https://github.com/nmigen/nmigen.git git clone https://git.libre-soc.org/git/c4m-jtag.git git clone https://git.libre-soc.org/git/nmutil.git +git clone https://git.libre-soc.org/git/openpower-isa.git git clone https://git.libre-soc.org/git/ieee754fpu.git git clone https://git.libre-soc.org/git/nmigen-soc.git git clone https://git.libre-soc.org/git/soc.git -cd nmigen +# nmigen +cd /home/$SUDO_USER/src/nmigen +git tag | xargs git tag -d # very annoying python3 setup.py develop -cd ../nmutil + +# nmigen-soc +cd ../nmigen-soc +git tag | xargs git tag -d # very annoying python3 setup.py develop + +# c4m-jtag cd ../c4m-jtag +git tag | xargs git tag -d # very annoying +python3 setup.py develop + +# nmutil +cd ../nmutil +python3 setup.py develop + +# openpower-isa +cd ../openpower-isa python3 setup.py develop +make svanalysis +make pywriter +make pyfnwriter + +# ieee754fpy cd ../ieee754fpu git submodule update --init --recursive python3 setup.py develop -cd ../nmigen-soc -python3 setup.py develop -# soc install +# soc cd ../soc make gitupdate python3 setup.py develop -make pywriter make mkpinmux -make svanalysis # comment this out - takes too long. run it manually # nosetests -v --processes=-1 --process-timeout=120 +