Skip to content

Commit 871a0cb

Browse files
fix: Fix non-deterministic framework linking order on macOS for incremental builds
1 parent 63227bb commit 871a0cb

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
@@ -291,5 +291,5 @@ def configure(env: "SConsEnvironment"):
291291
sys.exit(255)
292292

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

0 commit comments

Comments
 (0)