我正在尝试为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&& ./prepare.py&& make”在终端的linphone-iphone项目目录中构建它Mac操作系统按照https://github.com/BelledonneCommunications/linphone-iphone上的说明进行操作。
答案 0 :(得分:0)
您应该安装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
答案 1 :(得分:0)
通过更新linphone子模块解决:
<强> git pull && git submodule update --init --recursive && ./prepare.py -c && make
强>