diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2021-11-12 20:46:08 -0600 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2021-11-12 20:46:08 -0600 |
commit | 35b9263e5be13ba2729363be452639621b9fc380 (patch) | |
tree | 26f4bbdc768de72d871bb6262ea16dec468a6e82 /platform/osx/detect.py | |
parent | 19571c9c4bb8c388ac5d9a0255a8c18c4680b7df (diff) | |
download | redot-engine-35b9263e5be13ba2729363be452639621b9fc380.tar.gz |
Fix typo in architecture name for x86_64 macOS
Diffstat (limited to 'platform/osx/detect.py')
-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"]) |