From c4295b164486594ca037e185c5b30370e40c7428 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 19 Feb 2020 15:19:41 +0100 Subject: [PATCH] Do not set a specific compiler for ios --- kiwixbuild/platforms/ios.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/kiwixbuild/platforms/ios.py b/kiwixbuild/platforms/ios.py index df08374..7c94a27 100644 --- a/kiwixbuild/platforms/ios.py +++ b/kiwixbuild/platforms/ios.py @@ -71,11 +71,6 @@ class iOSPlatformInfo(PlatformInfo): def configure_option(self): return '--host={}'.format(self.arch_full) - def set_compiler(self, env): - for k,v in self.binaries.items(): - env[k] = v - - class iOSArmv7(iOSPlatformInfo): name = 'iOS_armv7' arch = cpu = 'armv7'