add mk-deb-chroot based on coriolis2-chroot
[dev-env-setup.git] / hdl-dev-repos-virtualenv
index 5ffb57aca6b6ac526b5d03535f775cd356dcdcf8..ab287bfabca6e26ee2c928a878d3208cb798b99c 100755 (executable)
@@ -4,20 +4,23 @@ 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/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
-python3 setup.py install
+python3 setup.py develop
 cd ../nmutil
-python3 setup.py install
+python3 setup.py develop
+cd ../c4m-jtag
+python3 setup.py develop
 cd ../ieee754fpu
 git submodule update --init --recursive
-python3 setup.py install
+python3 setup.py develop
 cd ../nmigen-soc
-python3 setup.py install
+python3 setup.py develop
 cd ../soc
 make gitupdate
 python3 setup.py develop