diff --git a/ChangeLog b/ChangeLog index 968ca72bc..c1d33c0da 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,9 @@ 2006-08-22 Javier Serrano Polo * configure.in: - changed package-maintainer-email-address to lmms-devel-list + - changed package-maintainer-email-address to lmms-devel-list + - removed -floop-optimization2-flag as it is deprecated and not + supported by coming GCC 4.2 2006-08-20 Javier Serrano Polo diff --git a/configure.in b/configure.in index 41d6b403d..746c39877 100644 --- a/configure.in +++ b/configure.in @@ -20,7 +20,7 @@ EXTRAFLAGS="" #"-floop-optimize2 -fgcse-sm -fgcse-las" # Tested with GCC 4.0--needs to be tested with 4.1--Danny 7/21/06 if test "x`$CC --version|head -1|cut -d\ -f3|cut -d. -f1`" = "x4" ; then - EXTRAFLAGS="$EXTRAFLAGS -floop-optimize2 -ftree-vectorize -ftree-loop-linear" + EXTRAFLAGS="$EXTRAFLAGS -ftree-vectorize -ftree-loop-linear" if test "x`$CC --version|head -1|cut -d\ -f3|cut -d. -f2`" != "x0" ; then EXTRAFLAGS="$EXTRAFLAGS -funsafe-loop-optimizations -Wunsafe-loop-optimizations" fi