2015-03-16 16:34:23 +01:00
|
|
|
# This option enables LTO for stage2 and stage3 in slim mode
|
2010-06-21 21:39:32 +02:00
|
|
|
|
2015-03-16 16:34:23 +01:00
|
|
|
STAGE2_CFLAGS += -flto=jobserver -frandom-seed=1
|
|
|
|
STAGE3_CFLAGS += -flto=jobserver -frandom-seed=1
|
2011-04-20 11:27:06 +02:00
|
|
|
STAGEprofile_CFLAGS += -fno-lto
|
2015-03-16 16:34:23 +01: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/
|
|
|
|
|
|
|
|
LTO_EXPORTS = AR="$(LTO_AR)"; export AR; \
|
|
|
|
RANLIB="$(LTO_RANLIB)"; export RANLIB;
|
|
|
|
LTO_FLAGS_TO_PASS = AR="$(LTO_AR)" RANLIB="$(LTO_RANLIB)"
|