我按照这里的说明http://www.linphone.org/eng/download/git.html。
我打开终端并输入git clone git://git.linphone.org/linphone-iphone.git --recursive
(我包括--recursive
)
但之后我无法编译,因为缺少一些文件:
我按照这里的说明http://www.linphone.org/eng/download/git.html。
我打开终端并输入git clone git://git.linphone.org/linphone-iphone.git --recursive
(我包括--recursive
)
但之后我无法编译,因为缺少一些文件:
Did you follow the instructions in the README file to compile the sdk first? Linphone for iPhone depends on liblinphone sdk.
The README is quite detailed but is focused on Macports, if you want to use Homebrew have a look here:
http://www.successmonkey.co.nz/blog/building-linphone-for-ios
And for Macports a blog with some more details and some discussion:
http://shallwelearn.com/blog/build-linphone-for-iphone-and-ipad/
您可以尝试重复执行“ --recursive
”部分的命令git clone
(实际调用git submodule
):
cd /path/to/linphone # your main parent repo
git submodule update --init --recursive
并查看是否有任何错误消息,或者是否显示丢失的文件。