linphone iphonesdk尚未构建



我正在尝试为linphone iphone构建SDK。但是,无法做到这一点。这给了我一个错误:

"You need at least CMake version 3.3.20150815 but you are currently using
  3.2.3.  There is no Cmake release available for it yet, so you must either
  compile it manually or revert to XCode6 temporary."

我使用的是Xcode 7.1。

甚至我都不知道如何手动编译它或临时恢复到XCode6。所以,如果有人知道,请帮帮我。

注意:我正在通过命令构建它"prepare.py-c&amp/prepare.py&制造";根据上给出的说明,从Mac OS中的终端在linphone iphone项目目录中https://github.com/BelledonneCommunications/linphone-iphone.

您应该安装cmake版本>=3.2.3像这样安装它们:

brew install cmake

这将把cmake安装到/usr/local/bin您可以检查这样的版本:

/usr/local/bin/cmake --version

然后你需要重新排序你的PATH变量:

export PATH=/usr/local/bin:$PATH

之后,您可以继续:

./prepare.py -c
./prepare.py
make

通过更新linphone子模块解决:

git pull && git submodule update --init --recursive && ./prepare.py -c && make

最新更新