diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-19 23:51:28 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-19 23:51:28 +0000 |
commit | a62623af016570b79e7706a0d0f0797ac340182f (patch) | |
tree | e29688328b8275e25e8509b9e038ee136c6af031 | |
parent | 740f6bf6fe1b4e54214a39939b2a8941d2b03f14 (diff) | |
download | gcc-a62623af016570b79e7706a0d0f0797ac340182f.tar.gz |
* config/bootstrap-lto.mk: Use -ffat-lto-objects.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205064 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | config/bootstrap-lto.mk | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index a8b909cb735..5f576400655 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-11-18 Jan Hubicka <jh@suse.cz> + + * config/bootstrap-lto.mk: Use -ffat-lto-objects. + 2013-11-15 David Edelsohn <dje.gcc@gmail.com> * MAINTAINERS (Global Reviewers, c++): Remove Mark Mitchell. diff --git a/config/bootstrap-lto.mk b/config/bootstrap-lto.mk index bbd3515eaa4..27bad1529be 100644 --- a/config/bootstrap-lto.mk +++ b/config/bootstrap-lto.mk @@ -1,5 +1,7 @@ # This option enables LTO for stage2 and stage3. +# FIXME: Our build system is not yet able to use gcc-ar wrapper, so we need +# to go with -ffat-lto-objects. -STAGE2_CFLAGS += -flto=jobserver -frandom-seed=1 -STAGE3_CFLAGS += -flto=jobserver -frandom-seed=1 +STAGE2_CFLAGS += -flto=jobserver -frandom-seed=1 -ffat-lto-objects +STAGE3_CFLAGS += -flto=jobserver -frandom-seed=1 -ffat-lto-objects STAGEprofile_CFLAGS += -fno-lto |