Update: except for CIDER all relevant options are included
This commit is contained in:
parent
186086618c
commit
fcbf6d5d42
|
|
@ -12,17 +12,10 @@
|
||||||
# CentOS users may need to add -std=c99 to the CFLAGS in the ../configure
|
# CentOS users may need to add -std=c99 to the CFLAGS in the ../configure
|
||||||
# statement.
|
# statement.
|
||||||
# Options:
|
# Options:
|
||||||
# --enable-osdi will enable the OSDI interface, which, in conjuction with the
|
# --enable-cider will enable the CIDER process simulator to construct devices
|
||||||
# external OpenVAF Verilig-A compiler, will allow access to advanced compact
|
# in a semiconductor.
|
||||||
# device models writen in Verilog-A.
|
# XSPICE, KLU, OSDI, and OpenMP may be deselected if not required.
|
||||||
# Please see the ngspice manual, chapt. 13, for more info on using OSDI/OpenVAF.
|
|
||||||
# --enable-klu will add the new matrix solver in addition to Sparse 1.3.
|
|
||||||
# CIDER, XSPICE, KLU, and OpenMP may be selected at will.
|
|
||||||
# --disable-debug will give O2 optimization (versus O0 for debug) and removes all debugging info.
|
|
||||||
|
|
||||||
# ngspice as shared library:
|
|
||||||
# Replace --with-x by --with-ngshared in line ../configure ... .
|
|
||||||
# Add (optionally) --enable-relpath to avoid absolute paths when searching for code models.
|
|
||||||
# It might be necessary to uncomment and run ./autogen.sh .
|
# It might be necessary to uncomment and run ./autogen.sh .
|
||||||
|
|
||||||
SECONDS=0
|
SECONDS=0
|
||||||
|
|
@ -49,13 +42,13 @@ if test "$1" = "d"; then
|
||||||
if [ $? -ne 0 ]; then echo "cd debug failed"; exit 1 ; fi
|
if [ $? -ne 0 ]; then echo "cd debug failed"; exit 1 ; fi
|
||||||
echo "configuring for 64 bit debug"
|
echo "configuring for 64 bit debug"
|
||||||
echo
|
echo
|
||||||
../configure --with-x --enable-xspice --enable-cider --enable-predictor --enable-osdi --enable-klu --with-readline=yes --enable-openmp --prefix="/usr/local" --libdir="/usr/local/lib" CFLAGS="-g -m64 -O0 -Wall -Wno-unused-but-set-variable" LDFLAGS="-m64 -g"
|
../configure --with-x --enable-cider --prefix="/usr/local" --libdir="/usr/local/lib" CFLAGS="-g -m64 -O0 -Wall -Wno-unused-but-set-variable" LDFLAGS="-m64 -g"
|
||||||
else
|
else
|
||||||
cd release
|
cd release
|
||||||
if [ $? -ne 0 ]; then echo "cd release failed"; exit 1 ; fi
|
if [ $? -ne 0 ]; then echo "cd release failed"; exit 1 ; fi
|
||||||
echo "configuring for 64 bit release"
|
echo "configuring for 64 bit release"
|
||||||
echo
|
echo
|
||||||
../configure --with-x --enable-xspice --enable-cider --enable-predictor --enable-osdi --enable-klu --with-readline=yes --enable-openmp --disable-debug --prefix="/usr/local" --libdir="/usr/local/lib" CFLAGS="-m64 -O2" LDFLAGS="-m64 -s"
|
../configure --with-x --enable-cider --prefix="/usr/local" --libdir="/usr/local/lib" CFLAGS="-m64 -O2" LDFLAGS="-m64 -s"
|
||||||
fi
|
fi
|
||||||
if [ $? -ne 0 ]; then echo "../configure failed"; exit 1 ; fi
|
if [ $? -ne 0 ]; then echo "../configure failed"; exit 1 ; fi
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# ngspice build script for Linux, release or debug version, 64 bit
|
# ngspice build script for Linux, to build ngspice as a shared library, release or
|
||||||
|
# debug version, 64 bit
|
||||||
# compile_linux_shared.sh <d>
|
# compile_linux_shared.sh <d>
|
||||||
|
|
||||||
# Procedure:
|
# Procedure:
|
||||||
|
|
@ -8,11 +9,9 @@
|
||||||
# Declare 'compile_linux_shared.sh' as being executable and start compiling with
|
# Declare 'compile_linux_shared.sh' as being executable and start compiling with
|
||||||
# './compile_linux_shared.sh' or './compile_linux_shared.sh d' from the ngspice directory.
|
# './compile_linux_shared.sh' or './compile_linux_shared.sh d' from the ngspice directory.
|
||||||
# Options:
|
# Options:
|
||||||
# --enable-osdi will add the osdi interface which allows to dynamically load compiled Verilog-A
|
# --enable-cider will enable the CIDER process simulator to construct devices
|
||||||
# compact models. Compiling the VA code of the models is done by the OpenVAF compiler.
|
# in a semiconductor.
|
||||||
# Please see the ngspice manual, chapt. 13, for more info on OSDI/OpenVAF.
|
# XSPICE, KLU, OSDI, and OpenMP may be deselected if not required.
|
||||||
# CIDER, XSPICE, KLU, and OpenMP may be selected at will.
|
|
||||||
# --disable-debug will give O2 optimization (versus O0 for debug) and removes all debugging info.
|
|
||||||
|
|
||||||
# Add (optionally) --enable-relpath to avoid absolute paths when searching for code models.
|
# Add (optionally) --enable-relpath to avoid absolute paths when searching for code models.
|
||||||
# It might be necessary to uncomment and run ./autogen.sh especially if sources have been
|
# It might be necessary to uncomment and run ./autogen.sh especially if sources have been
|
||||||
|
|
@ -44,7 +43,7 @@ if test "$1" = "d"; then
|
||||||
echo
|
echo
|
||||||
# The --prefix (and perhaps --libdir) may be used to determine a different install location
|
# The --prefix (and perhaps --libdir) may be used to determine a different install location
|
||||||
# (depending on the Linux distribution, and on the calling programs search path).
|
# (depending on the Linux distribution, and on the calling programs search path).
|
||||||
../configure --with-ngshared --enable-xspice --enable-cider --enable-openmp --enable-osdi --enable-klu --prefix=/usr CFLAGS="-g -m64 -O0 -Wall" LDFLAGS="-m64 -g"
|
../configure --with-ngshared --enable-cider --prefix=/usr CFLAGS="-g -m64 -O0 -Wall" LDFLAGS="-m64 -g"
|
||||||
else
|
else
|
||||||
cd releasesh
|
cd releasesh
|
||||||
if [ $? -ne 0 ]; then echo "cd releasesh failed"; exit 1 ; fi
|
if [ $? -ne 0 ]; then echo "cd releasesh failed"; exit 1 ; fi
|
||||||
|
|
@ -52,7 +51,7 @@ else
|
||||||
echo
|
echo
|
||||||
# The --prefix (and perhaps --libdir) may be used to determine a different install location
|
# The --prefix (and perhaps --libdir) may be used to determine a different install location
|
||||||
# (depending on the Linux distribution, and on the calling programs search path).
|
# (depending on the Linux distribution, and on the calling programs search path).
|
||||||
../configure --with-ngshared --enable-xspice --enable-cider --enable-openmp --enable-osdi --enable-klu --disable-debug --prefix=/usr CFLAGS="-m64 -O2" LDFLAGS="-m64 -s"
|
../configure --with-ngshared --enable-cider --prefix=/usr CFLAGS="-m64 -O2" LDFLAGS="-m64 -s"
|
||||||
fi
|
fi
|
||||||
if [ $? -ne 0 ]; then echo "../configure failed"; exit 1 ; fi
|
if [ $? -ne 0 ]; then echo "../configure failed"; exit 1 ; fi
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue