1

我正在尝试在 iPhone 模拟器上安装 pjsip,但我遇到了问题。我遵循了http://trac.pjsip.org/repos/wiki/Getting-Started/iPhone中的教程,并执行了以下步骤:

pjproject-2.0.1 $ export DEVPATH=/Developer/Platforms/iPhoneSimulator.platform/Developer

pjproject-2.0.1 $ export CC=/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.0

pjproject-2.0.1 $ ./configure-iphone configure-iphone error: directory /Developer/Platforms

/iPhoneSimulator.platform/Developer 不存在。请安装 iPhone 开发包

我在这里想念什么。有人可以给我一些关于如何继续解决此错误的线索吗?

4

4 回答 4

3

如果您使用的是最新的 SDK,则路径不正确,因为最新的 Xcode 和 iOS SDK 在 Xcode 应用程序文件夹中有 Developer 文件夹。( /Applications/Xcode.app/Contents/)

将您的导出更改为以下内容

export DEVPATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer
export CC=/Applications/Xcode.app/Contents/Developer/usr/bin
于 2012-07-19T11:37:53.900 回答
1

如果您按照上面的链接并尝试在 iPhone 模拟器上安装 pjsip,请跳过构建 PJSIP指令部分($ cd /path/to/your/pjsip/dir$ ./configure-iphone$ make dep && make clean && make ) 直接转到模拟器构建指令希望它可以帮助你。如果您遇到任何问题,请尝试让我知道。

于 2012-07-19T11:35:41.097 回答
0

试试这个,我只是用我的 xcode 测试它。我也在设备上进行测试。有用。

于 2012-07-31T13:28:46.447 回答
0

请检查以下链接。您将从那里获得源代码,并且可以为设备和模拟器构建。

https://github.com/radif/SIPHON-SIP-Client-that-actually-compiles

于 2013-01-04T11:27:37.897 回答