I update Xcode from 4.4.1 to 4.5. Now all my projects using PJSIP are
crashed. Anyone help me compiling PJSIP for Xcode 4.5?
Thanks,
I update Xcode from 4.4.1 to 4.5. Now all my projects using PJSIP are
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
in version 4.5 the support for armv6 was removed and by default the support for armv7s is enabled. you have to compile the library first with armv7 support and then with armv7s support and then you have to merge this into a one fat library using lipo.
Steps:
then you can collect your libraries into a folder and add the armv7 part to the library names
then do you have to clean and rebuild again with armv7s support
copy all of the libraries into the same folder with the previous ones and add the armv7s part to the library names. Then you can use lip to combine the libraries into a single library like this:
you can write a script to automate this or you have to do this manually for every library.