2014-09-01 16:41:28 +00:00
|
|
|
# This option enables LTO for stage2 and stage3 in slim mode
|
2010-06-21 00:23:06 +00:00
|
|
|
|
2014-09-01 16:41:28 +00:00
|
|
|
STAGE2_CFLAGS += -flto=jobserver -frandom-seed=1
|
|
|
|
STAGE3_CFLAGS += -flto=jobserver -frandom-seed=1
|
2017-06-19 13:20:20 +00:00
|
|
|
STAGEprofile_CFLAGS += -flto=jobserver -frandom-seed=1
|
|
|
|
STAGEtrain_CFLAGS += -flto=jobserver -frandom-seed=1
|
|
|
|
STAGEfeedback_CFLAGS += -flto=jobserver -frandom-seed=1
|
2014-09-01 16:41:28 +00:00
|
|
|
|
|
|
|
# assumes the host supports the linker plugin
|
|
|
|
LTO_AR = $$r/$(HOST_SUBDIR)/prev-gcc/gcc-ar$(exeext) -B$$r/$(HOST_SUBDIR)/prev-gcc/
|
|
|
|
LTO_RANLIB = $$r/$(HOST_SUBDIR)/prev-gcc/gcc-ranlib$(exeext) -B$$r/$(HOST_SUBDIR)/prev-gcc/
|
2021-09-18 01:08:17 +00:00
|
|
|
LTO_NM = $$r/$(HOST_SUBDIR)/prev-gcc/gcc-nm$(exeext) -B$$r/$(HOST_SUBDIR)/prev-gcc/
|
2014-09-01 16:41:28 +00:00
|
|
|
|
|
|
|
LTO_EXPORTS = AR="$(LTO_AR)"; export AR; \
|
2021-09-18 01:08:17 +00:00
|
|
|
RANLIB="$(LTO_RANLIB)"; export RANLIB; \
|
|
|
|
NM="$(LTO_NM)"; export NM;
|
|
|
|
LTO_FLAGS_TO_PASS = AR="$(LTO_AR)" RANLIB="$(LTO_RANLIB)" NM="$(LTO_NM)"
|
2018-05-08 08:50:33 +00:00
|
|
|
|
|
|
|
do-compare = $(SHELL) $(srcdir)/contrib/compare-lto $$f1 $$f2
|
2019-05-02 13:58:47 +00:00
|
|
|
extra-compare = gcc/lto1$(exeext)
|