Fix correct commit hash for release 0.7.0 of openXC7
[dev-env-setup.git] / nextpnr-ecp5-install
index 8d8eddcea121c48d599ee72ba76fac214ce5fa2b..be18e12178be5f68decdfbca8ef860dcd02a8ac0 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/bash
 if [ "$EUID" -ne 0 ]
-  then echo "Please run as root"
+  then echo "Please run as root using 'sudo bash'"
   exit
 fi
 
@@ -10,24 +10,34 @@ apt-get install -y python3 python3-dev clang cmake libboost-dev \
                     libboost-program-options-dev libboost-iostreams-dev \
                     openocd libeigen3-dev
 
-cd /home
-mkdir nextpnr
-cd nextpnr
+# change into $SUDO_USER home directory
+cd /home/$SUDO_USER
+mkdir -p src/nextpnr
+cd src/nextpnr
 
-git clone --recursive https://github.com/YosysHQ/prjtrellis
+git clone --recursive -b 1.2.1 https://github.com/YosysHQ/prjtrellis
 git clone --recursive https://github.com/YosysHQ/nextpnr
 
+# prjtrellis
 cd prjtrellis
 cd libtrellis
 cmake -DCMAKE_INSTALL_PREFIX=/usr/local/libtrellis .
-make
+make -j$(nproc)
 make install
 cd ../..
 
+# nextpnr, use a specific version for now
 cd nextpnr
+git checkout e069b3bc
 cmake -DCMAKE_INSTALL_PREFIX=/usr/local/nextpnr-ecp5 \
+                    -DBUILD_PYTHON=OFF \
+                   -DBUILD_GUI=OFF \
                     -DARCH=ecp5 \
                     -DTRELLIS_INSTALL_PREFIX=/usr/local/libtrellis .
-make
+make -j$(nproc)
 make install
 
+cd /home/$SUDO_USER/src/nextpnr
+chown -R $SUDO_USER .
+chgrp -R $SUDO_USER .
+