linphone-iphone sdk 未构建
linphone-iphone sdk is not getting built
我正在尝试为 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 临时。所以,如果有人知道,请帮助我。
注意:我在linphone-[=26中通过命令“./prepare.py -c && ./prepare.py && make”构建它=] 根据 https://github.com/BelledonneCommunications/linphone-iphone.
中给出的说明,Mac OS 中终端的项目目录
你应该安装 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
我正在尝试为 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 临时。所以,如果有人知道,请帮助我。
注意:我在linphone-[=26中通过命令“./prepare.py -c && ./prepare.py && make”构建它=] 根据 https://github.com/BelledonneCommunications/linphone-iphone.
中给出的说明,Mac OS 中终端的项目目录你应该安装 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