diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-02-08 17:32:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-08 17:32:49 +0100 |
commit | 592e92d938ce4eeb053e208dc673598d9aaa727a (patch) | |
tree | 4b8297d542d4692e0dbb1139e52cd3db24d8c9d1 | |
parent | 72de2515019048dfdad5817ab069207061ba858c (diff) | |
parent | d3345ef1f84cd68a7d28912ba0063cd988b95cd5 (diff) |
Merge pull request #57809 from akien-mga/osx-11.00-warning
-rw-r--r-- | platform/osx/detect.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/osx/detect.py b/platform/osx/detect.py index e7fe37d4b5..0ff93bedb4 100644 --- a/platform/osx/detect.py +++ b/platform/osx/detect.py @@ -78,9 +78,9 @@ def configure(env): env["osxcross"] = True if env["arch"] == "arm64": - print("Building for macOS 11.00+, platform arm64.") - env.Append(CCFLAGS=["-arch", "arm64", "-mmacosx-version-min=11.00"]) - env.Append(LINKFLAGS=["-arch", "arm64", "-mmacosx-version-min=11.00"]) + print("Building for macOS 11.0+, platform arm64.") + env.Append(CCFLAGS=["-arch", "arm64", "-mmacosx-version-min=11.0"]) + env.Append(LINKFLAGS=["-arch", "arm64", "-mmacosx-version-min=11.0"]) else: print("Building for macOS 10.12+, platform x86_64.") env.Append(CCFLAGS=["-arch", "x86_64", "-mmacosx-version-min=10.12"]) |