diff options
| author | Andre Heider | 2023-03-23 09:33:06 +0000 |
|---|---|---|
| committer | Christian Marangi | 2023-05-12 11:16:13 +0000 |
| commit | 10a295762b3e0bd9d20a7f19e2e0b1e83dc01e14 (patch) | |
| tree | 8d52ebed0e0ab0dd934f054017fcc3f92e5f09e9 | |
| parent | 31a58eed872c29cfa3e609b4f2d0ebf0372cf85d (diff) | |
| download | video-10a295762b3e0bd9d20a7f19e2e0b1e83dc01e14.tar.gz | |
libdouble-conversion: refactor to use PKG_BUILD_FLAGS:=lto
See commit 07730ff3 "treewide: add support for "lto" in PKG_BUILD_FLAGS"
on the main repository.
Signed-off-by: Andre Heider <a.heider@gmail.com>
| -rw-r--r-- | libs/libdouble-conversion/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/libdouble-conversion/Makefile b/libs/libdouble-conversion/Makefile index 06d2321..d2d6e8e 100644 --- a/libs/libdouble-conversion/Makefile +++ b/libs/libdouble-conversion/Makefile @@ -23,7 +23,7 @@ PKG_LICENSE:=BSD-3c PKG_LICENSE_FILES:=COPYING LICENSE CMAKE_INSTALL:=1 -PKG_BUILD_FLAGS:=gc-sections +PKG_BUILD_FLAGS:=gc-sections lto include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/host-build.mk @@ -49,7 +49,7 @@ CMAKE_OPTIONS += \ -DBUILD_SHARED_LIBS=ON \ -DBUILD_TESTING=OFF -TARGET_CXXFLAGS += -fno-rtti -flto +TARGET_CXXFLAGS += -fno-rtti define Package/libdouble-conversion/install $(INSTALL_DIR) $(1)/usr/lib |