I try to build a PJSip project on iPhone simulator. My work environment is Xcode 5.1.1, the ios SDK is 7.1. As I followed this guide:http://trac.pjsip.org/repos/wiki/Getting-Started/iPhone, I downloaded the latest code and configured the build system for the iPhone simulator:
export DEVPATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer
ARCH="-arch i386" CFLAGS="-O2 -m32 -mios-simulator-version-min=5.0" LDFLAGS="-O2 -m32 -mios-simulator-version-min=5.0" ./configure-iphone
make dep && make clean && make
It's all done, no errors occurred in the compiling process. But when I opened the ipjsua.xcodeproj using Xcode in pjproject/pjsip-apps/src/pjsua/ios, after running, the error occurred and said like this:
ld: library not found for -lmilenage-arm-apple-darwin9
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I am very confused about this. Any advice from you will be appreciated.