compile_linux_d.sh, tiny update to error messages and comments
This commit is contained in:
parent
3ae2e56160
commit
177bb47338
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue