commit 6711dabacf53e1438a2d0f3f60ba2a2b3878cb90
parent 278c5c1f1d6bf5006e36add64361dd9835381443
Author: Hannu Nyman <hannu.nyman@iki.fi>
Date: Mon, 13 Feb 2017 09:39:33 +0200
Merge pull request #3993 from nxhack/specify_crosscompile_vars
icu: specify cross compile variables
Diffstat:
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/libs/icu/Makefile b/libs/icu/Makefile
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=icu4c
PKG_VERSION:=58.2
-PKG_RELEASE:=2
+PKG_RELEASE:=3
PKG_SOURCE:=$(PKG_NAME)-58_2-src.tgz
PKG_SOURCE_URL:=http://download.icu-project.org/files/$(PKG_NAME)/$(PKG_VERSION)
@@ -41,9 +41,13 @@ define Package/icu
endef
CONFIGURE_CMD:= ./runConfigureICU
-CONFIGURE_VARS:=
CONFIGURE_ARGS:= \
Linux/gcc \
+ CC="$(TARGET_CC)" \
+ CXX="$(TARGET_CXX)" \
+ --target=$(GNU_TARGET_NAME) \
+ --host=$(GNU_TARGET_NAME) \
+ --build=$(GNU_HOST_NAME) \
--disable-debug \
--enable-release \
--enable-shared \
@@ -60,9 +64,10 @@ CONFIGURE_ARGS:= \
--prefix=/usr
HOST_CONFIGURE_CMD:= ./runConfigureICU
-HOST_CONFIGURE_VARS:=
HOST_CONFIGURE_ARGS:= \
Linux/gcc \
+ CC="$(HOSTCC)" \
+ CXX="$(HOSTCXX)" \
--disable-debug \
--enable-release \
--enable-shared \