Skip to content

Commit 40d9e4b

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 2abb25d commit 40d9e4b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

ValueTransformers.xcodeproj/project.pbxproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -468,6 +468,10 @@
468468
CODE_SIGN_STYLE = Manual;
469469
DEVELOPMENT_TEAM = "";
470470
MACOSX_DEPLOYMENT_TARGET = 10.10;
471+
OTHER_LDFLAGS = (
472+
"$(inherited)",
473+
"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/macosx/libswiftAppKit.dylib",
474+
);
471475
};
472476
name = Debug;
473477
};
@@ -478,6 +482,10 @@
478482
CODE_SIGN_STYLE = Manual;
479483
DEVELOPMENT_TEAM = "";
480484
MACOSX_DEPLOYMENT_TARGET = 10.10;
485+
OTHER_LDFLAGS = (
486+
"$(inherited)",
487+
"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/macosx/libswiftAppKit.dylib",
488+
);
481489
};
482490
name = Release;
483491
};

0 commit comments

Comments
 (0)