Fix typo in architecture name for x86_64 macOS
This commit is contained in:
parent
19571c9c4b
commit
35b9263e5b
1 changed files with 1 additions and 1 deletions
|
@ -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"])
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue