Skip to content

Commit fee54e6

Browse files
committed
Merge pull request godotengine#114327 from LanzaSchneider/fix-non-deterministic-framework-macos
[MacOS] Fix non-deterministic framework linking order on macOS for incremental builds
2 parents 10d7622 + eb755c3 commit fee54e6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

platform/macos/detect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,5 +323,5 @@ def configure(env: "SConsEnvironment"):
323323
sys.exit(255)
324324

325325
if len(extra_frameworks) > 0:
326-
frameworks = [item for key in extra_frameworks for item in ["-framework", key]]
326+
frameworks = [item for key in sorted(extra_frameworks) for item in ["-framework", key]]
327327
env.Append(LINKFLAGS=frameworks)

0 commit comments

Comments
 (0)