diff --git a/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/PlatformInfo.kt b/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/PlatformInfo.kt index 0471867d1cc..cd0e91145b4 100644 --- a/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/PlatformInfo.kt +++ b/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/PlatformInfo.kt @@ -65,6 +65,7 @@ object PlatformInfo { if (currentMajorVersion != requiredMajorVersion) { throw IllegalStateException( "Incorrect Xcode version: ${currentXcodeVersion}. Required major Xcode version is ${requiredMajorVersion}." + + "\nYou can try '-PcheckXcodeVersion=false' to suppress this error, the result might be wrong." ) } }