diff --git a/compile_linux_d.sh b/compile_linux_d.sh index 07827e20b..3bf009280 100644 --- a/compile_linux_d.sh +++ b/compile_linux_d.sh @@ -37,20 +37,18 @@ if [ $? -ne 0 ]; then echo "./autogen.sh failed"; exit 1 ; fi #./autogen.sh --adms #if [ $? -ne 0 ]; then echo "./autogen.sh failed"; exit 1 ; fi -# In the following ../configure commands you will find an additional entry to the CFLAGS -# '-fno-omit-frame-pointer'. This entry compensates for a compiler bug of actual mingw gcc 4.6.1. echo if test "$1" = "64"; then cd debug64 - if [ $? -ne 0 ]; then echo "cd release64 failed"; exit 1 ; fi + if [ $? -ne 0 ]; then echo "cd debug64 failed"; exit 1 ; fi echo "configuring for 64 bit" echo # You may add --enable-adms to the following command for adding adms generated devices ../configure --with-x --with-readline=yes --enable-xspice --enable-cider --enable-openmp CFLAGS="-m64 -g" LDFLAGS="-m64 -g" else cd debug - if [ $? -ne 0 ]; then echo "cd release failed"; exit 1 ; fi + if [ $? -ne 0 ]; then echo "cd debug failed"; exit 1 ; fi echo "configuring for 32 bit" echo # You may add --enable-adms to the following command for adding adms generated devices