diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-11-13 08:05:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-13 08:05:53 +0100 |
commit | 3e214a88380dab46a77d48863b7a6f1bc37e2885 (patch) | |
tree | 084342936ea0bae240d923ce31afc3785ed595a1 /platform/osx | |
parent | 66f8be3dd39124604ee13f73adeff0fe4ce9aad9 (diff) | |
parent | 35b9263e5be13ba2729363be452639621b9fc380 (diff) |
Merge pull request #54937 from aaronfranke/mac-arch
Fix typo in architecture name for x86_64 macOS
Diffstat (limited to 'platform/osx')
-rw-r--r-- | platform/osx/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/osx/detect.py b/platform/osx/detect.py index 6bd79c7d4f..f5c7731395 100644 --- a/platform/osx/detect.py +++ b/platform/osx/detect.py @@ -82,7 +82,7 @@ def configure(env): env.Append(CCFLAGS=["-arch", "arm64", "-mmacosx-version-min=10.15"]) env.Append(LINKFLAGS=["-arch", "arm64", "-mmacosx-version-min=10.15"]) else: - print("Building for macOS 10.12+, platform x86-64.") + print("Building for macOS 10.12+, platform x86_64.") env.Append(CCFLAGS=["-arch", "x86_64", "-mmacosx-version-min=10.12"]) env.Append(LINKFLAGS=["-arch", "x86_64", "-mmacosx-version-min=10.12"]) |