diff options
author | Sumanto Kar | 2022-01-11 15:57:46 +0530 |
---|---|---|
committer | GitHub | 2022-01-11 15:57:46 +0530 |
commit | 9329498f461d3346af1c25db36ba9b155bbec874 (patch) | |
tree | 57cbb49fa7c7f35ff019b83d6c1757277dc12ecc | |
parent | 774d1a1100634b3d64b20f3b87f8ac453f3d58dc (diff) | |
download | nghdl-9329498f461d3346af1c25db36ba9b155bbec874.tar.gz nghdl-9329498f461d3346af1c25db36ba9b155bbec874.tar.bz2 nghdl-9329498f461d3346af1c25db36ba9b155bbec874.zip |
Upgrading to Ngspice 35 and adding Verilator objects
-rwxr-xr-x | Ubuntu/install-nghdl.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Ubuntu/install-nghdl.sh b/Ubuntu/install-nghdl.sh index 8450a4b..2dbb4e3 100755 --- a/Ubuntu/install-nghdl.sh +++ b/Ubuntu/install-nghdl.sh @@ -12,10 +12,10 @@ # REQUIREMENTS: --- # BUGS: --- # NOTES: --- -# AUTHOR: Fahim Khan, Rahul Paknikar +# AUTHOR: Fahim Khan, Rahul Paknikar, Sumanto Kar # ORGANIZATION: eSim, FOSSEE group at IIT Bombay # CREATED: Tuesday 02 December 2014 17:01 -# REVISION: Sunday 02 August 2020 01:35 +# REVISION: Tuesday 11 November 2021 15:56 #=============================================================================== ngspice="ngspice-nghdl" @@ -123,12 +123,14 @@ function installNgspice # Adding patch to Ngspice base code cp $src_dir/src/outitf.c $HOME/$ngspice/src/frontend + cp $src_dir/src/verilated.o $HOME/$ngspice/release/src/xspice/icm/ make -j$(nproc) make install # Make it executable sudo chmod 755 $HOME/$ngspice/install_dir/bin/ngspice + sudo chmod 777 -R $HOME/$ngspice/ set +e # Temporary disable exit on error trap "" ERR # Do not trap on error of any command |