From f5741c475b78c4c6b5afc29f4071dad9cfbf0196 Mon Sep 17 00:00:00 2001 From: Nikolay Igotti Date: Thu, 14 Jun 2018 16:57:21 +0300 Subject: [PATCH] Update XCode version. (#1691) --- .../org/jetbrains/kotlin/konan/target/KonanProperties.kt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/shared/src/main/kotlin/org/jetbrains/kotlin/konan/target/KonanProperties.kt b/shared/src/main/kotlin/org/jetbrains/kotlin/konan/target/KonanProperties.kt index 2de7fa8ba56..3cb5cd6261a 100644 --- a/shared/src/main/kotlin/org/jetbrains/kotlin/konan/target/KonanProperties.kt +++ b/shared/src/main/kotlin/org/jetbrains/kotlin/konan/target/KonanProperties.kt @@ -31,7 +31,9 @@ interface TargetableExternalStorage { fun downloadDependencies() } -abstract class KonanPropertiesLoader(override val target: KonanTarget, val properties: Properties, val baseDir: String? = null) : Configurables { +abstract class KonanPropertiesLoader(override val target: KonanTarget, + val properties: Properties, + val baseDir: String? = null) : Configurables { open val dependencies get() = hostTargetList("dependencies") override fun downloadDependencies() { @@ -67,7 +69,7 @@ fun Properties.keepOnlyDefaultProfiles() { // Force build to use only 'default' profile: this.setProperty(DEPENDENCY_PROFILES_KEY, "default") // Force build to use fixed Xcode version: - this.setProperty("useFixedXcodeVersion", "9.4") + this.setProperty("useFixedXcodeVersion", "9.4.1") // TODO: it actually affects only resolution made in :dependencies, // that's why we assume that 'default' profile comes first (and check this above). }