I have developed a Swift custom library which build to generate a Mylib.dylib. When I try to use the Mylib.dylib library, I got an error for Swift Standard library: Library not loaded: @rpath/libswiftCoreFoundation.dylib image not found. How could resolve this issue.
I have already copied all the Swift core libraries to my custom library project and set build option "Always Embed Standard Libraries" = yes and "Framework Search Paths" = $(SRCROOT)/Frameworks (where Swift Libs are).
Thanks,