From: Aurelien Jarno <aurelien@aurel32.net>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [5911] Remove gcc 3.4 check
Date: Sun, 07 Dec 2008 13:40:38 +0000 [thread overview]
Message-ID: <E1L9JsE-0007e4-NU@cvs.savannah.gnu.org> (raw)
Revision: 5911
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5911
Author: aurel32
Date: 2008-12-07 13:40:38 +0000 (Sun, 07 Dec 2008)
Log Message:
-----------
Remove gcc 3.4 check
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Modified Paths:
--------------
trunk/Makefile.target
trunk/configure
Modified: trunk/Makefile.target
===================================================================
--- trunk/Makefile.target 2008-12-07 13:40:29 UTC (rev 5910)
+++ trunk/Makefile.target 2008-12-07 13:40:38 UTC (rev 5911)
@@ -97,13 +97,7 @@
ifeq ($(ARCH),i386)
HELPER_CFLAGS+=-fomit-frame-pointer
OP_CFLAGS+=-mpreferred-stack-boundary=2 -fomit-frame-pointer
-# op.c and helper.c need this on 32-bit x86 system to avoid
-# a compiler spill error. This can probably go away
-# once the SSE ops have been converted to TCG
-ifeq ($(HAVE_GT_GCC_3_3), true)
-I386_CFLAGS=-march=i586 -mtune=i686
endif
-endif
ifeq ($(ARCH),ppc)
CPPFLAGS+= -D__powerpc__
Modified: trunk/configure
===================================================================
--- trunk/configure 2008-12-07 13:40:29 UTC (rev 5910)
+++ trunk/configure 2008-12-07 13:40:38 UTC (rev 5911)
@@ -26,8 +26,6 @@
static="no"
cross_prefix=""
cc="gcc"
-gcc3_search="yes"
-gcc3_list="gcc-3.4.6 gcc-3.4 gcc34 gcc-3.3.6 gcc-3.3 gcc33 gcc-3.2 gcc32"
audio_drv_list=""
audio_card_list=""
host_cc="gcc"
@@ -106,7 +104,6 @@
profiler="no"
cocoa="no"
check_gfx="yes"
-check_gcc="yes"
softmmu="yes"
linux_user="no"
darwin_user="no"
@@ -273,7 +270,6 @@
--cross-prefix=*) cross_prefix="$optarg"
;;
--cc=*) cc="$optarg"
- gcc3_search="no"
;;
--host-cc=*) host_cc="$optarg"
;;
@@ -332,8 +328,6 @@
;;
--disable-gfx-check) check_gfx="no"
;;
- --disable-gcc-check) check_gcc="no"
- ;;
--disable-system) softmmu="no"
;;
--enable-system) softmmu="yes"
@@ -542,40 +536,6 @@
AIOLIBS="-lrt -lpthread"
fi
-# Check for gcc4, error if pre-gcc4
-if test "$check_gcc" = "yes" ; then
- cat > $TMPC <<EOF
-#if __GNUC__ < 4
-#error gcc3
-#endif
-int main(){return 0;}
-EOF
- if "$cc" $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
- echo "WARNING: \"$cc\" looks like gcc 4.x"
- found_compat_cc="no"
- 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 2> /dev/null | fgrep '(GCC) 3.' > /dev/null 2>&1 ; then
- echo "Found \"$compat_cc\""
- cc="$cross_prefix$compat_cc"
- found_compat_cc="yes"
- break
- fi
- done
- if test "$found_compat_cc" = "no" ; then
- echo "gcc 3.x not found!"
- fi
- fi
- if test "$found_compat_cc" = "no" ; then
- echo "QEMU is known to have problems when compiled with gcc 4.x"
- echo "It is recommended that you use gcc 3.x to build QEMU"
- echo "To use this compiler anyway, configure with --disable-gcc-check"
- exit 1;
- fi
- fi
-fi
-
if test ! -x "$(which cgcc 2>/dev/null)"; then
sparse="no"
fi
@@ -584,19 +544,6 @@
# Solaris specific configure tool chain decisions
#
if test "$solaris" = "yes" ; then
- #
- # gcc for solaris 10/fcs in /usr/sfw/bin doesn't compile qemu correctly
- # override the check with --disable-gcc-check
- #
- if test "$solarisrev" -eq 10 -a "$check_gcc" = "yes" ; then
- solgcc=`which $cc`
- if test "$solgcc" = "/usr/sfw/bin/gcc" ; then
- echo "Solaris 10/FCS gcc in /usr/sfw/bin will not compiled qemu correctly."
- echo "please get gcc-3.4.3 or later, from www.blastwave.org using pkg-get -i gcc3"
- echo "or get the latest patch from SunSolve for gcc"
- exit 1
- fi
- fi
solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
if test -z "$solinst" ; then
echo "Solaris install program not found. Use --install=/usr/ucb/install or"
@@ -1536,13 +1483,6 @@
echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
echo "#define CONFIG_KVM 1" >> $config_h
fi
- gcc3minver=`$cc --version 2> /dev/null| fgrep "(GCC) 3." | awk '{ print $3 }' | cut -f2 -d.`
- if test -n "$gcc3minver" && test $gcc3minver -gt 3
- then
- echo "HAVE_GT_GCC_3_3=true" >> $config_mak
- else
- echo "HAVE_GT_GCC_3_3=false" >> $config_mak
- fi
;;
x86_64)
echo "TARGET_ARCH=x86_64" >> $config_mak
next reply other threads:[~2008-12-07 13:40 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-12-07 13:40 Aurelien Jarno [this message]
2008-12-07 14:03 ` [Qemu-devel] [5911] Remove gcc 3.4 check Anthony Liguori
2008-12-07 14:26 ` Aurelien Jarno
2008-12-07 14:41 ` Blue Swirl
2008-12-07 19:20 ` Edgar E. Iglesias
2008-12-07 14:49 ` Andreas Färber
2008-12-07 15:19 ` Aurélien Jarno
2008-12-07 15:49 ` Andreas Färber
2008-12-07 16:03 ` Aurelien Jarno
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1L9JsE-0007e4-NU@cvs.savannah.gnu.org \
--to=aurelien@aurel32.net \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).