Changelog
 configure.ac
 configure

Add "-g" option to the GCC compilation defaults.
trunk
Salvatore Filippone 8 years ago
parent 73419bded3
commit cfb8d20ab5

@ -6,7 +6,7 @@ Changelog. A lot less detailed than usual, at least for past
2017/04/05: make ISO_C_BINDING and MOVE_ALLOC mandatory prereq.
2017/03/20: Changes for GPU codes: added buffers to MAPs, reduce number of
malloc/free, added new maybe_free_buffers method on vector.
2017/02/12: New stopping criterion, soimplified mat_dist
2017/02/12: New stopping criterion, simplified mat_dist
2017/02/06: Fixes for --enable-long-integers and for RPM build.
2016/07/14: Fix matrix print with renumbering.
2016/06/18: New thresholds for quicksort

8
configure vendored

@ -5907,7 +5907,7 @@ if test "X$CCOPT" == "X" ; then
if test "X$psblas_cv_fc" == "Xgcc" ; then
# note that no space should be placed around the equality symbol in assignements
# Note : 'native' is valid _only_ on GCC/x86 (32/64 bits)
CCOPT="-O3 $CCOPT"
CCOPT="-g -O3 $CCOPT"
elif test "X$psblas_cv_fc" == X"xlf" ; then
# XL compiler : consider using -qarch=auto
@ -5929,7 +5929,7 @@ if test "X$CCOPT" == "X" ; then
# using GCC in conjunction with NAG.
CCOPT="-O2"
else
CCOPT="-O2 $CCOPT"
CCOPT="-g -O2 $CCOPT"
fi
fi
#CFLAGS="${CCOPT}"
@ -5942,7 +5942,7 @@ if test "X$FCOPT" == "X" ; then
if test "X$psblas_cv_fc" == "Xgcc" ; then
# note that no space should be placed around the equality symbol in assignations
# Note : 'native' is valid _only_ on GCC/x86 (32/64 bits)
FCOPT="-O3 $FCOPT"
FCOPT="-g -O3 $FCOPT"
elif test "X$psblas_cv_fc" == X"xlf" ; then
# XL compiler : consider using -qarch=auto
FCOPT="-O3 -qarch=auto -qfixed -qsuffix=f=f:cpp=F -qlanglvl=extended $FCOPT"
@ -5964,7 +5964,7 @@ if test "X$FCOPT" == "X" ; then
FCOPT="-O2 "
# NOTE : PG & Sun use -fast instead -O3
else
FCOPT="-O2 $FCOPT"
FCOPT="-g -O2 $FCOPT"
fi
fi
if test "X$psblas_cv_fc" == X"nag" ; then

@ -333,7 +333,7 @@ if test "X$CCOPT" == "X" ; then
if test "X$psblas_cv_fc" == "Xgcc" ; then
# note that no space should be placed around the equality symbol in assignements
# Note : 'native' is valid _only_ on GCC/x86 (32/64 bits)
CCOPT="-O3 $CCOPT"
CCOPT="-g -O3 $CCOPT"
elif test "X$psblas_cv_fc" == X"xlf" ; then
# XL compiler : consider using -qarch=auto
@ -355,7 +355,7 @@ if test "X$CCOPT" == "X" ; then
# using GCC in conjunction with NAG.
CCOPT="-O2"
else
CCOPT="-O2 $CCOPT"
CCOPT="-g -O2 $CCOPT"
fi
fi
#CFLAGS="${CCOPT}"
@ -368,7 +368,7 @@ if test "X$FCOPT" == "X" ; then
if test "X$psblas_cv_fc" == "Xgcc" ; then
# note that no space should be placed around the equality symbol in assignations
# Note : 'native' is valid _only_ on GCC/x86 (32/64 bits)
FCOPT="-O3 $FCOPT"
FCOPT="-g -O3 $FCOPT"
elif test "X$psblas_cv_fc" == X"xlf" ; then
# XL compiler : consider using -qarch=auto
FCOPT="-O3 -qarch=auto -qfixed -qsuffix=f=f:cpp=F -qlanglvl=extended $FCOPT"
@ -390,7 +390,7 @@ if test "X$FCOPT" == "X" ; then
FCOPT="-O2 "
# NOTE : PG & Sun use -fast instead -O3
else
FCOPT="-O2 $FCOPT"
FCOPT="-g -O2 $FCOPT"
fi
fi
if test "X$psblas_cv_fc" == X"nag" ; then

Loading…
Cancel
Save