Fix correct commit hash for release 0.7.0 of openXC7
[dev-env-setup.git] / coriolis-install
index ef3ec5576b8503d6bb845de67fa62ac61f514898..c1b3b7ed5c8363b8ef62fad35037577d6f014790 100755 (executable)
@@ -11,7 +11,6 @@ echo "Current USER=$USER"
 # Install apt dependencies
 echo Installing necessary apt dependencies in the chroot
 sudo apt-get update -y
-sudo apt-get upgrade -y
 sudo apt-get install -y automake binutils-dev bison build-essential \
        sysvinit-utils sysvinit-core \
        ccache clang cmake doxygen dvipng flex gcc git graphviz \
@@ -23,7 +22,7 @@ sudo apt-get install -y automake binutils-dev bison build-essential \
        python3-setuptools python-dev python-qt4 python-sphinx \
        qt4-dev-tools rapidjson-dev tcl tcl-dev tcl-tclreadline \
        texlive texlive-fonts-extra texlive-lang-french \
-       texlive-latex-extra texlive-pictures xfig zlib1g-dev
+       texlive-latex-extra texlive-pictures xfig zlib1g-dev wget
 
 # Add convenience variable to chroot user .bash_profile
 vars_for_bash_profile="export PATH=/usr/lib/ccache:\044PATH
@@ -48,7 +47,7 @@ sudo apt-get update -y
 sudo apt-get build-dep yosys -y
 
 cd /home/$USER
-git clone https://github.com/cliffordwolf/yosys.git
+git clone https://github.com/YosysHQ/yosys.git
 cd yosys
 git checkout 049e3abf9baf795e69b9ecb9c4f19de6131f8418
 make config-clang
@@ -65,50 +64,61 @@ mkdir -p /home/$USER/coriolis-2.x/src
 cd /home/$USER/coriolis-2.x/src
 git clone https://gitlab.lip6.fr/vlsi-eda/coriolis.git
 cd coriolis
-# check out Libre-SOC 180nm ASIC version
+# check out Libre-SOC 180nm ASIC version - uses stable python2 version
 #git checkout devel
 git checkout LS180_RC7_FINAL
-# guaranteed to fail ./bootstrap/ccb.py --project=coriolis --make="-j$(nproc) install"
+# guaranteed to fail ./bootstrap/ccb.py --projecrt=coriolis --make="-j$(nproc) install"
 ./bootstrap/ccb.py --project=coriolis --make="-j1 install"
 
 # Setup and test coriolisenv
+# Have to use workaround as coriolisEnv.py can't detect the shell when ran inside a script.
+/bin/bash << EOF
 /home/$USER/coriolis-2.x/src/coriolis/bootstrap/coriolisEnv.py > /home/$USER/coriolisenv
-source /home/$USER/.bash_profile
+EOF
+
+# Set the environment variables needed for Coriolis2 and Alliance
+# coriolisenv overwrites env vars, so should occur first
 source /home/$USER/coriolisenv
+source /home/$USER/.bash_profile
 
 # Install alliance from source
 cd /home/$USER
-source coriolisenv
 git clone https://gitlab.lip6.fr/vlsi-eda/alliance.git
 mkdir -p /home/$USER/alliance/build /home/$USER/alliance/install
 mv alliance/alliance/src alliance
 rm -rf alliance/alliance
+# Compile Alliance
 cd alliance/src
 ./autostuff
 cd /home/$USER/alliance/build
 ../src/configure --prefix=/home/$USER/alliance/install --enable-alc-shared
-
-cd /home/$USER/alliance/build
-source /home/$USER/coriolisenv
-#make and install locally as local user
+# Make/Install as local user
 make -j1 install
 
 # Install and configure alliance-check-toolkit
 cd /home/$USER
 git clone https://gitlab.lip6.fr/vlsi-eda/alliance-check-toolkit.git
-source coriolisenv
+cd alliance-check-toolkit
+git checkout 3f40be93f1552 # specific version needed
+cd ..
 touch alliance-check-toolkit/etc/mk/users.d/user-$USER.mk
-cat <<EOG >>alliance-check-toolkit/etc/mk/users.d/user-$USER.mk
-export CORIOLIS_TOP=/home/$USER/coriolis-2.x/Linux.x86_64/Release.Shared/install
+
+# Environment variables for alliance-check-toolkit in a single script variable
+vars_for_alliance_check="export CORIOLIS_TOP=/home/$USER/coriolis-2.x/Linux.x86_64/Release.Shared/install
 export ALLIANCE_TOP=/home/$USER/alliance/install
 export CHECK_TOOLKIT=/home/$USER/alliance-check-toolkit
-export YOSYS_TOP=/home/$USER/yosys
-EOG
-source /home/$USER/.bash_profile
+export YOSYS_TOP=/home/$USER/yosys"
+
+echo -e "$vars_for_alliance_check" > /home/$USER/alliance-check-toolkit/etc/mk/users.d/user-$USER.mk
+
+echo "Setting /home/$USER/alliance-check-toolkit/etc/mk/users.d/user-$USER.mk file to:
+$vars_for_alliance_check"
+
+example_cell="chip_r"
 cd alliance-check-toolkit/benchs/adder/cmos
 make lvx
 echo -e "
-\e[1;91mSelect File -> Open Cell or press CTRL + o then enter as the cell name 'arm_chip_cts_r' without the single quotation marks.\e[0m
+\e[1;91mSelect File -> Open Cell or press CTRL + o then enter as the cell name '$example_cell' without the single quotation marks.\e[0m
 "
 make cgt