qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v2 1.3] build: compile translate.o with -fno-gcs


From: Wei-Ren Chen
Subject: Re: [Qemu-devel] [PATCH v2 1.3] build: compile translate.o with -fno-gcse option
Date: Wed, 28 Nov 2012 10:01:51 +0800
User-agent: Mutt/1.5.21 (2010-09-15)

On Tue, Nov 27, 2012 at 05:21:03PM +0100, Paolo Bonzini wrote:
> Some versions of GCC require insane (>2GB) amounts of memory to compile
> translate.o.  As a countermeasure, disable the culprit optimization pass.
> This should fix the buildbot failure for default_x86_64_fedora16.
> Anyway is a good thing to do because people will try to compile 1.3 with
> less than 2GB of memory and complain.
> 
> Signed-off-by: Paolo Bonzini <address@hidden>
> ---
>  Makefile.target | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/Makefile.target b/Makefile.target
> index 8b658c0..d38bb58 100644
> --- a/Makefile.target
> +++ b/Makefile.target
> @@ -143,6 +143,12 @@ GENERATED_HEADERS += hmp-commands.h qmp-commands-old.h
>  
>  endif # CONFIG_SOFTMMU
>  
> +# Workaround for http://gcc.gnu.org/PR55489.  Happens with -fPIE/-fPIC
> +# and large functions that use global variables.  The bug is in all
> +# releases of GCC, but it became particularly acute in 4.7.x.  We
> +# should be able to delete this at the end of 2013.
> +%/translate.o: QEMU_CFLAGS += -fno-gcse
> +
>  nested-vars += obj-y
>  
>  # This resolves all nested paths, so it must come last

  No objection here. But will we remove this option when GCC fix this pr
or we just leave it there? If we're going to remove it in the future,
better keep a note on the release change log or somewhere else.

Regards,
chenwj

-- 
Wei-Ren Chen (陳韋任)
Computer Systems Lab, Institute of Information Science,
Academia Sinica, Taiwan (R.O.C.)
Tel:886-2-2788-3799 #1667
Homepage: http://people.cs.nctu.edu.tw/~chenwj



reply via email to

[Prev in Thread] Current Thread [Next in Thread]