From 4e8674d5df46841e68b72b83911b28ec71079bf1 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Thu, 22 Dec 2016 22:48:14 -0500 Subject: [PATCH] build: Disable gcc's use-linker-plugin option On GCC v6 the -fwhole-program option does not take effect when -fuse-linker-plugin is also in effect. The -fuse-linker-plugin option does not optimize as well as -fwhole-program, so explicitly disable the linker plugin via -fno-use-linker-plugin. Signed-off-by: Kevin O'Connor --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b17cb885..b006d967 100644 --- a/Makefile +++ b/Makefile @@ -35,9 +35,9 @@ cc-option=$(shell if test -z "`$(1) $(2) -S -o /dev/null -xc /dev/null 2>&1`" \ CFLAGS-y := -I$(OUT) -Isrc -I$(OUT)board-generic/ -O2 -MD -g \ -Wall -Wold-style-definition $(call cc-option,$(CC),-Wtype-limits,) \ -ffunction-sections -fdata-sections -CFLAGS-y += -flto -fwhole-program +CFLAGS-y += -flto -fwhole-program -fno-use-linker-plugin -LDFLAGS-y := -Wl,--gc-sections +LDFLAGS-y := -Wl,--gc-sections -fno-whole-program CPPFLAGS = -I$(OUT) -P -MD -MT $@