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.
This commit is contained in:
parent
5eedb3d96a
commit
6d507651a4
|
@ -275,7 +275,7 @@ class Icu_cross_compile(Icu):
|
||||||
@property
|
@property
|
||||||
def configure_option(self):
|
def configure_option(self):
|
||||||
icu_native_dep = self.buildEnv.targetsDict['icu4c_native']
|
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):
|
class Libzim(Dependency):
|
||||||
|
|
Loading…
Reference in New Issue