gcc32 may well be a 4.x version for a 32bit target, so add an additional check, hopef...
authorbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>
Thu, 26 Jul 2007 20:41:46 +0000 (20:41 +0000)
committerbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>
Thu, 26 Jul 2007 20:41:46 +0000 (20:41 +0000)
Probe also gcc-3.3.6 to make Gentoo users happy.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3087 c046a42c-6fe2-441c-8c8c-71466251a162

configure

index 62e0b0c..7709c97 100755 (executable)
--- a/configure
+++ b/configure
@@ -23,7 +23,7 @@ static="no"
 cross_prefix=""
 cc="gcc"
 gcc3_search="yes"
-gcc3_list="gcc-3.4 gcc34 gcc-3.3 gcc33 gcc-3.2 gcc32"
+gcc3_list="gcc-3.4 gcc34 gcc-3.3.6 gcc-3.3 gcc33 gcc-3.2 gcc32"
 host_cc="gcc"
 ar="ar"
 make="make"
@@ -413,7 +413,7 @@ EOF
        if test "$gcc3_search" = "yes" ; then
            echo "Looking for gcc 3.x"
            for compat_cc in $gcc3_list ; do
-               if "$cross_prefix$compat_cc" --version > /dev/null 2>&1 ; then
+               if "$cross_prefix$compat_cc" --version 2> /dev/null | fgrep '(GCC) 3.' > /dev/null 2>&1 ; then
                    echo "Found \"$compat_cc\""
                    cc="$cross_prefix$compat_cc"
                    found_compat_cc="yes"