From: Felix Fietkau Date: Wed, 11 Jul 2018 17:17:34 +0000 (+0200) Subject: ppp: compile with LTO enabled X-Git-Tag: state~1627 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=e7397eef69;p=openwrt%2Fstaging%2Fchunkeey.git ppp: compile with LTO enabled Reduces .ipk size on MIPS from 98.5k to 98k Signed-off-by: Felix Fietkau --- diff --git a/package/network/services/ppp/Makefile b/package/network/services/ppp/Makefile index beeaa53c22..60c07565f3 100644 --- a/package/network/services/ppp/Makefile +++ b/package/network/services/ppp/Makefile @@ -189,8 +189,8 @@ $(call Build/Configure/Default,, \ $(PKG_BUILD_DIR)/pppd/plugins/pppoatm/linux/ endef -TARGET_CFLAGS += -ffunction-sections -fdata-sections -TARGET_LDFLAGS += -Wl,--gc-sections +TARGET_CFLAGS += -ffunction-sections -fdata-sections -flto +TARGET_LDFLAGS += -Wl,--gc-sections -flto -fuse-linker-plugin MAKE_FLAGS += COPTS="$(TARGET_CFLAGS)" \ PRECOMPILED_FILTER=1 \