Skip to content

Commit 2995751

Browse files
committed
Merge pull request #114327 from LanzaSchneider/fix-non-deterministic-framework-macos
[MacOS] Fix non-deterministic framework linking order on macOS for incremental builds
2 parents fb4a304 + 871a0cb commit 2995751

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)