Hi, I'm trying to link third party frameworks and Xcode standard library in an iOS module. So far I've only got frameworks linked successfully by modifying the module.xcconfig:
OTHER_LDFLAGS=$(inherited) -F"<path to the framework>" -framework <framework name>
However, I can't link the Xcode standard library libc++.dylib and libs.dylib (these were link from Xcode the same way as framework (Link Binary With Libraries)) . I've tried many ways but no success. Could somebody help?
Thanks.