From 6d507651a4e69b2d6191ef0a3e886a6439aa2f38 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 31 Jan 2018 18:14:11 +0100 Subject: [PATCH] Do not compile icu tools when cross-compiling icu4c. We do not need tools when cross-compiling icu4c. And when cross-compiling to iOS, tools are not compiling at all. --- kiwixbuild/dependencies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiwixbuild/dependencies.py b/kiwixbuild/dependencies.py index b395414..03bdd18 100644 --- a/kiwixbuild/dependencies.py +++ b/kiwixbuild/dependencies.py @@ -275,7 +275,7 @@ class Icu_cross_compile(Icu): @property def configure_option(self): icu_native_dep = self.buildEnv.targetsDict['icu4c_native'] - return super().configure_option + " --with-cross-build=" + icu_native_dep.builder.build_path + return super().configure_option + " --with-cross-build={} --disable-tools".format(icu_native_dep.builder.build_path) class Libzim(Dependency):