summaryrefslogtreecommitdiff
path: root/Debian/Ubuntu 18.04/install-nghdl.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Debian/Ubuntu 18.04/install-nghdl.sh')
-rwxr-xr-xDebian/Ubuntu 18.04/install-nghdl.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/Debian/Ubuntu 18.04/install-nghdl.sh b/Debian/Ubuntu 18.04/install-nghdl.sh
index 78da81f..ca529c7 100755
--- a/Debian/Ubuntu 18.04/install-nghdl.sh
+++ b/Debian/Ubuntu 18.04/install-nghdl.sh
@@ -43,10 +43,17 @@ function installDependency
echo "Installing GNAT-5........................................."
sudo apt install -y gnat-5
if [ $? -ne 0 ]; then
- echo -e "\n\n\"GNAT\" dependency couldn't be installed.\nKindly resolve above errors and try again."
+ echo -e "\n\n\"GNAT-5\" dependency couldn't be installed.\nKindly resolve above errors and try again."
exit 1
fi
+ echo "Installing LLVM-3.9......................................."
+ sudo apt install -y llvm-3.9
+ if [ $? -ne 0 ]; then
+ echo -e "\n\n\"LLVM-3.9\" dependency couldn't be installed.\nKindly resolve above errors and try again."
+ exit 1
+ fi
+
echo "Installing Zlib1g-dev....................................."
sudo apt install -y zlib1g-dev
if [ $? -ne 0 ]; then