diff options
author | Andre Heider <a.heider@gmail.com> | 2023-03-23 09:27:01 +0100 |
---|---|---|
committer | Andre Heider <a.heider@gmail.com> | 2023-04-08 08:38:54 +0200 |
commit | e7d9c865036d7bc2ac30604e8573f25ae601aed1 (patch) | |
tree | 5efb8a25df387e8e79356447c648ecc3306176b3 /utils/ap51-flash | |
parent | 35f4ef76e0c88b690ec55f26aed072c4c5989eff (diff) |
treewide: refactor to use PKG_BUILD_FLAGS:=lto
See commit 07730ff3 "treewide: add support for "lto" in PKG_BUILD_FLAGS"
on the main repository.
Note: Some packages only added `-flto` to CFLAGS and not LDFLAGS. This
fixes it and properly enables LTO.
Signed-off-by: Andre Heider <a.heider@gmail.com>
Diffstat (limited to 'utils/ap51-flash')
-rw-r--r-- | utils/ap51-flash/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/ap51-flash/Makefile b/utils/ap51-flash/Makefile index 26eb1f0f1..c7181205e 100644 --- a/utils/ap51-flash/Makefile +++ b/utils/ap51-flash/Makefile @@ -18,6 +18,8 @@ PKG_MAINTAINER:=Russell Senior <russell@personaltelco.net> PKG_LICENSE:=GPL-3.0-or-later CC0-1.0 PKG_LICENSE_FILES:=LICENSES/GPL-3.0-or-later.txt LICENSES/CC0-1.0.txt +PKG_BUILD_FLAGS:=lto + include $(INCLUDE_DIR)/package.mk define Package/ap51-flash @@ -32,7 +34,6 @@ MAKE_FLAGS += \ REVISION="$(PKG_VERSION)" \ ap51-flash -TARGET_CFLAGS += -flto TARGET_LDFLAGS += -Wl,--gc-sections,--as-needed define Package/ap51-flash/install |