X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=hdl-dev-repos-virtualenv;h=d2cfdff90ea5bb333ab7e7dc3c6c99e4c74c6271;hb=0caebf1ca85fbb8de523568a398b42f4da718180;hp=2dde08af068f5f96836b0a8785f0d7b3fa017716;hpb=74a0b1b125a64e679a726bb751f417212a114225;p=dev-env-setup.git diff --git a/hdl-dev-repos-virtualenv b/hdl-dev-repos-virtualenv index 2dde08a..d2cfdff 100755 --- a/hdl-dev-repos-virtualenv +++ b/hdl-dev-repos-virtualenv @@ -4,7 +4,9 @@ python3 -m venv .env 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 @@ -13,13 +15,24 @@ cd nmigen python3 setup.py develop cd ../nmutil python3 setup.py develop +cd ../openpower-isa +python3 setup.py develop +make pywriter +make svanalysis +cd ../c4m-jtag +python3 setup.py develop cd ../ieee754fpu git submodule update --init --recursive python3 setup.py develop cd ../nmigen-soc python3 setup.py develop + +# soc install cd ../soc make gitupdate python3 setup.py develop -python src/soc/decoder/pseudo/pywriter.py -nosetests -v --processes=-1 --process-timeout=120 +make mkpinmux + +# comment this out - takes too long. run it manually +# nosetests -v --processes=-1 --process-timeout=120 +