-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixed: compilation failed due swift lib not found (libswiftXPC.dyli…
…b is not found in swift paths) (#783) Recent Facebook FBSDKCoreKit has dependency to `libswiftXPC.dylib`. But it is not present in SDK and cause build to fail with message: > libswiftXPC.dylib is not found in swift paths this is happening during copying swift-libraries into App/Frameworks folder. Same time this dependency is declared as weak: > @rpath/libswiftXPC.dylib (compatibility version 1.0.0, current version 36.100.7, weak) its seems to an option to skip missing swift libraries that are marked as weak. these changes provided in this PR
- Loading branch information
Showing
2 changed files
with
27 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters