Reputation: 1366
How to build and integrate pjsip 2.5.5 for both sinulator and device in my project?
I got error:
ld: symbol(s) not found for architecture arm64 Undefined symbols for architecture armv7:
Upvotes: 1
Views: 245
Reputation: 256
For implementing pjsip for all devices and simulators, it should be compiled for every architecture and all that libraries should be combined using -lipo command. Please find this link. It may help you.
Compile for all architecture seperately
Combine library for all architecture
Upvotes: 1