【发布时间】:2016-06-22 13:39:47
【问题描述】:
我已经从 git 下载了 linphone 开源 VoIP 项目。 按照link 中给出的步骤进行操作,但我坚持了一个步骤
将主机字符串链接到模拟器 SDK
$ sudo ln -s /usr/bin/strings /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/strings
->我检查了下面的路径 “/usr/bin/strings”,发现 'strings' 没有找到,另外一条路径也不起作用 '/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/strings'
->当时命令运行失败,原因如下
ln: failed to create symbolic link '/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/strings': No such file or directory
-> 在构建时我收到了以下输出。
*******************************************************************************
This makefile is deprecated. Please see README.md for compilation instructions. Here are some equivalents:
Equivalent of make is: cd ../../ && ./prepare.py && make
Equivalent of make enable_gpl_third_parties=no is: cd ../../ && ./prepare.py -DENABLE_GPL_THIRD_PARTIES=NO && make
Equivalent of make enable_debug=yes is: cd ../../ && ./prepare.py -d && make
Equivalent of make enable_i386=yes is: cd ../../ && ./prepare.py all && make
Equivalent of make enable_zrpt=yes enable_opus=yes enable_ffmpeg is: cd ../../ && ./prepare.py -DENABLE_ZRTP=YES -DENABLE_OPUS=YES -DENABLE_FFMPEG=YES && make
*******************************************************************************
下面的链接我已经提到了
1)https://libraries.io/github/mfrager/linphone-iphone
2) https://github.com/BelledonneCommunications/linphone/blob/master/README.macos.md
3)https://ohthehugemanatee.org/blog/2015/10/01/how-i-got-el-capitain-working-with-my-developer-tools/
【问题讨论】:
标签: ios macos sip voip linphone