diff options
author | Athul George | 2018-07-15 11:34:13 +0530 |
---|---|---|
committer | GitHub | 2018-07-15 11:34:13 +0530 |
commit | 16c96b8ce39e20456c319b4c08963fade1364b20 (patch) | |
tree | 77b585b5d616a66395c19a13811a063cb3aabb17 /install-nghdl.sh | |
parent | b397923dddfc9484a669cb69a3585d947d930e73 (diff) | |
parent | 2f85255b7f7ddc774b07fb13f38cc16bc6e6d5da (diff) | |
download | nghdl-16c96b8ce39e20456c319b4c08963fade1364b20.tar.gz nghdl-16c96b8ce39e20456c319b4c08963fade1364b20.tar.bz2 nghdl-16c96b8ce39e20456c319b4c08963fade1364b20.zip |
Merge pull request #28 from FOSSEE/develop
Develop: modifications in installation script, model_generation.py, ghdlserver files
Diffstat (limited to 'install-nghdl.sh')
-rwxr-xr-x | install-nghdl.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/install-nghdl.sh b/install-nghdl.sh index ab0a1eb..eade469 100755 --- a/install-nghdl.sh +++ b/install-nghdl.sh @@ -81,7 +81,11 @@ function installNgspice echo "Installing Ngspice....." echo "------------------------------------" sleep 5 - ../configure --enable-xspice --disable-debug --prefix=$HOME/$ngspice/install_dir/ --exec-prefix=$HOME/$ngspice/install_dir/ + ../configure --enable-xspice --disable-debug --prefix=$HOME/$ngspice/install_dir/ --exec-prefix=$HOME/$ngspice/install_dir/ + + #dirty fix for adding patch to ngspice base code + cp $src_dir/src/outitf.c $HOME/$ngspice/src/frontend + make make install if [ "$?" == 0 ];then |