Browse Source

Merge pull request #43091 from bruvzg/ios_ver_check_no_except

[3.2] Do not raise exception if iOS SDK is not installed.
Rémi Verschelde 4 years ago
parent
commit
078c632592
1 changed files with 1 additions and 1 deletions
  1. 1 1
      methods.py

+ 1 - 1
methods.py

@@ -717,7 +717,7 @@ def get_darwin_sdk_version(platform):
         return float(decode_utf8(subprocess.check_output(["xcrun", "--sdk", sdk_name, "--show-sdk-version"]).strip()))
     except (subprocess.CalledProcessError, OSError):
         print("Failed to find SDK version while running xcrun --sdk {} --show-sdk-version.".format(sdk_name))
-        raise
+        return 0.0
 
 
 def detect_darwin_sdk_path(platform, env):