Skip to content

Commit 93157bd

Browse files
committed
fix(Linker): 114820860 - Manually linking with Swift 5.0 AppKit library so apps compiled with Xcode 15 do not crash at launch on macOS 10.13 and earlier.
1 parent 023ceb7 commit 93157bd

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

ColorSetKit.xcodeproj/project.pbxproj

+8
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,10 @@
425425
buildSettings = {
426426
DEVELOPMENT_TEAM = J5PR93692Y;
427427
MACOSX_DEPLOYMENT_TARGET = 10.13;
428+
OTHER_LDFLAGS = (
429+
"$(inherited)",
430+
"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/macosx/libswiftAppKit.dylib",
431+
);
428432
};
429433
name = Debug;
430434
};
@@ -434,6 +438,10 @@
434438
buildSettings = {
435439
DEVELOPMENT_TEAM = J5PR93692Y;
436440
MACOSX_DEPLOYMENT_TARGET = 10.13;
441+
OTHER_LDFLAGS = (
442+
"$(inherited)",
443+
"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/macosx/libswiftAppKit.dylib",
444+
);
437445
};
438446
name = Release;
439447
};

0 commit comments

Comments
 (0)