PJSIP iOS5编译错误
我正在尝试使用 configure-iphone
脚本从源代码编译 PjSIP。我能够运行它,然后运行 make dep
没有问题,但是当我尝试运行 make
时,我遇到以下问题:
Undefined symbols for architecture armv7:
"_app_config_init_video", referenced from:
_app_init in pjsua_app.o
_console_app_main in pjsua_app.o
ld: symbol(s) not found for architecture armv7
collect2: ld returned 1 exit status
make[2]: *** [../bin/pjsua-arm-apple-darwin9] Error 1
make[1]: *** [pjsua] Error 2
make: *** [all] Error 1
我尝试更改为仅 armv6,但它没用。有什么建议可以成功编译吗?
谢谢!!
I am trying to compile the PjSIP from the source code using the configure-iphone
script. I am able to run it, then run make dep
without problems, but when I try to run make
I have the following issues:
Undefined symbols for architecture armv7:
"_app_config_init_video", referenced from:
_app_init in pjsua_app.o
_console_app_main in pjsua_app.o
ld: symbol(s) not found for architecture armv7
collect2: ld returned 1 exit status
make[2]: *** [../bin/pjsua-arm-apple-darwin9] Error 1
make[1]: *** [pjsua] Error 2
make: *** [all] Error 1
I have tried changing to only armv6 but it didn't work. Any suggestions to compile it successfully??
Thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否按照此处所述更改了configure-iphone脚本:
http://lists.pjsip.org/pipermail/pjsip_lists .pjsip.org/2011-October/013481.html?
这对我有帮助
Did you change the configure-iphone script as described here:
http://lists.pjsip.org/pipermail/pjsip_lists.pjsip.org/2011-October/013481.html ?
That helped for me