debug
with ndebug
and add --disable-debug
to configure
options in the instructions below
LALSUITE=$PWD
PREFIX=$HOME/lscsoft/debug
(I'd use different directories to install debug & non-debug versions of LALSuite)
rm -f $PREFIX/etc/lal*-user-env.* $PREFIX/lib/pkgconfig/*lal*.pc
mkdir -p build/debug/lal build/debug/lalapps build/debug/lalpulsar build/debug/lalframe
./00boot
cd build/debug/lal && $LALSUITE/`basename $PWD`/configure --prefix=$PREFIX && make && make install
for i in $PREFIX/etc/lal*-user-env.sh ; do source $i ; done
cd
command argument): cd ../lalpulsar && $LALSUITE/`basename $PWD`/configure --prefix=$PREFIX && make && make instal && for i in $PREFIX/etc/lal*-user-env.sh ; do source $i ; done
cd ../lalframe && $LALSUITE/`basename $PWD`/configure --prefix=$PREFIX && make && make instal && for i in $PREFIX/etc/lal*-user-env.sh ; do source $i ; done
cd ../lalapps && $LALSUITE/`basename $PWD`/configure --prefix=$PREFIX && make && make instal && for i in $PREFIX/etc/lal*-user-env.sh ; do source $i ; done
for i in $PREFIX/etc/lal*-user-env.sh ; do source $i ; done
~/.profile
, ~/.bashrc
or similar, because I tend to forget what I've written there and may end up using versions of things that I don't want.