Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用pjsip在 iPhone 上进行语音聊天。我按照说明完成的步骤是:
按照给定的方式更改了 config_site.h。
成功运行
$ cd /path/to/your/pjsip/dir $ ./configure-iphone $ make dep && make clean && make
打开 ipjsua.xcodeproj 进行构建,但缺少一些库(以红色突出显示)。因此,该项目没有建立,我无法继续进行。
我应该如何构建项目?
删除缺少的库,在您的构建目录中找到这些库,然后将它们再次添加到您的项目中。
我可以解决问题,实际上问题不大。
我的项目没有配置为在模拟器上运行,所以这里有很多链接错误(这些红色库需要在模拟器上支持 pjsip)。
我将目标设置为 ipad 而不是模拟器并进行构建。
它刚刚奏效!