From 02aa2c03f971bbac17e737b6d5de2e6b88332e8a Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Fri, 10 Nov 2023 19:48:52 +0100 Subject: [PATCH] klu is now compiled-in as standard --- compile_linux_shared.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compile_linux_shared.sh b/compile_linux_shared.sh index 5d28d3930..02e3a0908 100755 --- a/compile_linux_shared.sh +++ b/compile_linux_shared.sh @@ -11,7 +11,7 @@ # --enable-osdi will add the osdi interface which allows to dynamically load compiled Verilog-A # compact models. Compiling the VA code of the models is done by the OpenVAF compiler. # Please see the ngspice manual, chapt. 13, for more info on OSDI/OpenVAF. -# CIDER, XSPICE, and OpenMP may be selected at will. +# 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. @@ -44,7 +44,7 @@ if test "$1" = "d"; then echo # 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). - ../configure --with-ngshared --enable-xspice --enable-cider --enable-openmp --enable-osdi --prefix=/usr CFLAGS="-g -m64 -O0 -Wall" LDFLAGS="-m64 -g" + ../configure --with-ngshared --enable-xspice --enable-cider --enable-openmp --enable-osdi --enable-klu --prefix=/usr CFLAGS="-g -m64 -O0 -Wall" LDFLAGS="-m64 -g" else cd releasesh if [ $? -ne 0 ]; then echo "cd releasesh failed"; exit 1 ; fi @@ -52,7 +52,7 @@ else echo # 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). - ../configure --with-ngshared --enable-xspice --enable-cider --enable-openmp --disable-debug --enable-osdi --prefix=/usr CFLAGS="-m64 -O2" LDFLAGS="-m64 -s" + ../configure --with-ngshared --enable-xspice --enable-cider --enable-openmp --enable-osdi --enable-klu --disable-debug --prefix=/usr CFLAGS="-m64 -O2" LDFLAGS="-m64 -s" fi if [ $? -ne 0 ]; then echo "../configure failed"; exit 1 ; fi