Compile PJSIP 2.5 Library for all architectures
To compile PJSIP library for iPhone device, I am using this code make distclean && make clean ARCH='-arch arm64' ./configure-iphone --enable-opus-codec make dep make This code allows me to install my app for single architecture only. To compile pjsip for all the architectures (armv7, armv7s, arm64, i386, x86_64), Which command or tool I can use Steps to compile for all devices. compile for all devices separately merge with lipo eg. -create /libsrtp-arm64-apple-darwin_ios.a /libsrtp-i386-apple-darwin_ios.a -output output_file_name then use output_file_name.a as a universal library for all