We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 392b3d6 commit 9a43d56Copy full SHA for 9a43d56
1 file changed
tools/openssl.py
@@ -80,6 +80,8 @@ def ssl_platform_flags(env):
80
api = int(env["android_api_level"])
81
args.append("-D__ANDROID_API__=%s" % api)
82
elif env["platform"] == "macos":
83
+ if env["macos_deployment_target"] != "default":
84
+ args.append("-mmacosx-version-min=%s" % env["macos_deployment_target"])
85
# OSXCross toolchain setup.
86
if sys.platform != "darwin" and "OSXCROSS_ROOT" in os.environ:
87
for k in ["CC", "CXX", "AR", "AS", "RANLIB"]:
0 commit comments