From d93fd61d6274aecd98ff9b1b89461f569c345cd1 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Thu, 20 Jun 2019 11:50:06 -0700 Subject: [PATCH 1/2] kea: Don't install to STAGING_DIR_HOST STAGING_DIR_HOST is for packages under tools/ , not host packages. Reorganized Makefile for consistency between packages. Added PKG/HOST_BUILD_PARALLEL for faster compilation. Signed-off-by: Rosen Penev --- net/kea/Makefile | 52 +++++++++++++++++++++++++----------------------- 1 file changed, 27 insertions(+), 25 deletions(-) diff --git a/net/kea/Makefile b/net/kea/Makefile index ec7e92fb8..8ce9823c5 100644 --- a/net/kea/Makefile +++ b/net/kea/Makefile @@ -10,26 +10,27 @@ include $(TOPDIR)/rules.mk PKG_NAME:=kea PKG_VERSION:=1.5.0 -PKG_RELEASE:=3 -PKG_MAINTAINER:=BangLang Huang, Rosy Song -PKG_BUILD_DEPENDS:=boost log4cplus kea/host -HOST_BUILD_DEPENDS:=boost boost/host log4cplus/host +PKG_RELEASE:=4 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=https://ftp.isc.org/isc/kea/$(PKG_VERSION)/ - +PKG_SOURCE_URL:=https://ftp.isc.org/isc/kea/$(PKG_VERSION) PKG_HASH:=edce4fab68ca7af607cf7f5bc86596e04fe0ef4b8e88906e339cdefcf21daaec -PKG_INSTALL:=1 -PKG_BUILD_PARALLEL:=1 +PKG_MAINTAINER:=BangLang Huang, Rosy Song PKG_LICENSE:=MPL-2.0 +PKG_LICENSE_FILES:=COPYING + +HOST_BUILD_DEPENDS:=boost/host log4cplus/host openssl +PKG_BUILD_DEPENDS:=kea/host +HOST_BUILD_PARALLEL:=1 +PKG_BUILD_PARALLEL:=1 + +PKG_INSTALL:=1 PKG_FIXUP:=autoreconf include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/host-build.mk -HOST_BUILD_PREFIX:=$(STAGING_DIR_HOST) - define Package/kea/Default SECTION:=net CATEGORY:=Network @@ -97,32 +98,33 @@ define Package/kea-perfdhcp DEPENDS:=+kea-libs endef +HOST_CONFIGURE_ARGS += \ + --with-boost-include="$(STAGING_DIR_HOSTPKG)" \ + --with-log4cplus="$(STAGING_DIR_HOSTPKG)" \ + --with-openssl="$(STAGING_DIR)/usr" \ + --enable-boost-headers-only \ + --enable-static-link + +HOST_LDFLAGS += \ + -Wl,--gc-sections,--as-needed + CONFIGURE_ARGS += \ + --with-boost-include="$(STAGING_DIR)/usr" \ --with-log4cplus="$(STAGING_DIR)/usr" \ --with-openssl="$(STAGING_DIR)/usr" \ + --without-pic \ $(if $(CONFIG_PACKAGE_kea-perfdhcp),--enable-perfdhcp,) CONFIGURE_VARS += \ cross_compiling="yes" -HOST_CONFIGURE_ARGS += \ - --enable-static-link \ - --enable-boost-headers-only \ - --with-log4cplus="$(STAGING_DIR_HOSTPKG)" \ - --with-boost-include="$(STAGING_DIR)/usr/include" \ - --with-openssl="$(STAGING_DIR)/usr" \ - --without-pic - -HOST_LDFLAGS += \ - -Wl,--gc-sections,--as-needed - TARGET_CXXFLAGS += \ - $(FPIC) \ - -fdata-sections \ - -ffunction-sections + $(FPIC) \ + -fdata-sections \ + -ffunction-sections TARGET_LDFLAGS += \ - -Wl,--gc-sections,--as-needed + -Wl,--gc-sections,--as-needed # Only compile the kea-msg-compiler which we need for # package compilation From d6a72daec9795f908e0578be6a7a38a6350b2901 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Fri, 28 Jun 2019 13:13:03 -0700 Subject: [PATCH 2/2] log4cplus: Build in parallel Added PKG/HOST_BUILD_PARALLEL for faster compilation. Signed-off-by: Rosen Penev --- libs/log4cplus/Makefile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/libs/log4cplus/Makefile b/libs/log4cplus/Makefile index 3fb57efaa..2a503a1e8 100644 --- a/libs/log4cplus/Makefile +++ b/libs/log4cplus/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=log4cplus PKG_VERSION:=2.0.4 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@SF/$(PKG_NAME) @@ -20,6 +20,8 @@ PKG_MAINTAINER:=BangLang Huang , Rosy Song