diff options
author | rahulp13 | 2020-02-10 12:04:23 +0530 |
---|---|---|
committer | rahulp13 | 2020-02-10 12:04:23 +0530 |
commit | 983f3a24b7c12f9c236546fb81277f05a3c3c95a (patch) | |
tree | 0ad357d48cf35113b738d728eb5ddb18429e2e84 /Debian/Ubuntu 18.04/install-nghdl.sh | |
parent | a84748e23e825936d5a6c5aaabb202c97808e046 (diff) | |
download | nghdl-983f3a24b7c12f9c236546fb81277f05a3c3c95a.tar.gz nghdl-983f3a24b7c12f9c236546fb81277f05a3c3c95a.tar.bz2 nghdl-983f3a24b7c12f9c236546fb81277f05a3c3c95a.zip |
update installer
Diffstat (limited to 'Debian/Ubuntu 18.04/install-nghdl.sh')
-rwxr-xr-x | Debian/Ubuntu 18.04/install-nghdl.sh | 9 |
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 |