From 13d462fe909948ce1588197207b2b79c681ad367 Mon Sep 17 00:00:00 2001 From: rahulp13 Date: Wed, 23 Feb 2022 15:43:21 +0530 Subject: Do not prompt for choice in apt tool --- Ubuntu/install-nghdl.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Ubuntu/install-nghdl.sh b/Ubuntu/install-nghdl.sh index 84f0cc8..2c6bbdf 100755 --- a/Ubuntu/install-nghdl.sh +++ b/Ubuntu/install-nghdl.sh @@ -54,7 +54,7 @@ function installDependency sudo apt install -y llvm-${llvm_version} llvm-${llvm_version}-dev echo "Installing Clang.........................................." - sudo apt-get install -y clang + sudo apt install -y clang echo "Installing Zlib1g-dev....................................." sudo apt install -y zlib1g-dev @@ -72,11 +72,11 @@ function installDependency sudo apt install -y libxaw7-dev - echo "Installing $verilator dependencies........................" - if [[ -n "$(which apt-get 2> /dev/null)" ]] + echo "Installing dependencies for $verilator...................." + if [[ -n "$(which apt 2> /dev/null)" ]] then # Ubuntu - sudo apt-get install make autoconf g++ flex bison + sudo apt install -y make autoconf g++ flex bison else [[ -n "$(which yum 2> /dev/null)" ]] # Ubuntu sudo yum install make autoconf flex bison which -y -- cgit From b60628553cae464d199ba8f7215c484de6cfc24e Mon Sep 17 00:00:00 2001 From: rahulp13 Date: Mon, 28 Feb 2022 11:07:18 +0530 Subject: Refactored NSIS plugin and deprecate OS support --- Windows/NSISplugins/ZipDLL (1).zip | Bin 379356 -> 0 bytes Windows/NSISplugins/ZipDLL.zip | Bin 0 -> 379356 bytes Windows/README.md | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 Windows/NSISplugins/ZipDLL (1).zip create mode 100644 Windows/NSISplugins/ZipDLL.zip diff --git a/Windows/NSISplugins/ZipDLL (1).zip b/Windows/NSISplugins/ZipDLL (1).zip deleted file mode 100644 index f5c4fc0..0000000 Binary files a/Windows/NSISplugins/ZipDLL (1).zip and /dev/null differ diff --git a/Windows/NSISplugins/ZipDLL.zip b/Windows/NSISplugins/ZipDLL.zip new file mode 100644 index 0000000..f5c4fc0 Binary files /dev/null and b/Windows/NSISplugins/ZipDLL.zip differ diff --git a/Windows/README.md b/Windows/README.md index dd84f6d..5a48e87 100644 --- a/Windows/README.md +++ b/Windows/README.md @@ -1,7 +1,7 @@ NGHDL Installer (Windows OS) ==== -It contains all the documentation for making NGHDL executable (using PyInstaller) and packging NGHDL for Windows 7 and above. +It contains all the documentation for making NGHDL executable (using PyInstaller) and packging NGHDL for Windows 8 and above. > Note: Do not develop NGHDL on Windows OS. Work only with `installers` branch on Windows OS and do development on Linux OS. > Reference : https://stackoverflow.com/questions/37672886/cannot-get-rid-of-unstaged-files-in-git-on-my-local -- cgit