Browse Source

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.

(cherry picked from commit fde50db399c3a5bc165ac6ea27143f07111fa29e)
Hugo Locurcio 3 năm trước cách đây
mục cha
commit
0b66d80b61
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      platform/osx/detect.py

+ 1 - 1
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.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"])