From e27ede80ccd307d20fb033a971572504fd4acbd4 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Thu, 20 Feb 2020 11:28:11 +0100 Subject: [PATCH] Use correct arch_full name. --- kiwixbuild/platforms/ios.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kiwixbuild/platforms/ios.py b/kiwixbuild/platforms/ios.py index 75f1070..a70c623 100644 --- a/kiwixbuild/platforms/ios.py +++ b/kiwixbuild/platforms/ios.py @@ -75,13 +75,13 @@ class iOSPlatformInfo(PlatformInfo): class iOSArmv7(iOSPlatformInfo): name = 'iOS_armv7' arch = cpu = 'armv7' - arch_full = 'arm-apple-darwin' + arch_full = 'armv7-apple-darwin' sdk_name = 'iphoneos' class iOSArm64(iOSPlatformInfo): name = 'iOS_arm64' arch = cpu = 'arm64' - arch_full = 'aarch64-apple-darwin' + arch_full = 'arm-apple-darwin' sdk_name = 'iphoneos' class iOSi386(iOSPlatformInfo):