You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-23 15:16:17 +00:00
Fix outdated SCons macOS build message
The message incorrectly stated that the minimum supported version is 10.9, when it is in fact 10.12.
This commit is contained in:
@@ -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.9+, 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"])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user