From 6b6c5b82d27038b2f7f7c9c65b6a443dd37ccb3e Mon Sep 17 00:00:00 2001 From: Nikolay Igotti Date: Wed, 27 Mar 2019 18:41:02 +0300 Subject: [PATCH] Avoid enforcing XCode version is shared code. --- .../kotlin/org/jetbrains/kotlin/konan/target/KonanProperties.kt | 2 -- 1 file changed, 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 9a7b4f0dedd..f172291f3b2 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 @@ -68,8 +68,6 @@ 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", "10.1") // TODO: it actually affects only resolution made in :dependencies, // that's why we assume that 'default' profile comes first (and check this above). }