我用的Mac,下的Clion也是正版,但是怎么配置C++编译环境呢?急急急!
来源:2-1 选择排序法 - Selection Sort
金刚小仓
2018-04-12
3回答
-
金刚小仓
提问者
2018-04-12
安装完毕Xcode后有报错这样!
/Applications/CLion.app/Contents/bin/cmake/bin/cmake --build /Users/james/Desktop/swoole/cmake-build-debug --target all -- -j 2
[ 3%] Linking C shared library ../lib/libswoole.dylib
[ 50%] Built target static
ld: library not found for -lrt
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [../lib/libswoole.1.9.5.dylib] Error 1
make[1]: *** [CMakeFiles/shared.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 51%] Linking C executable bin/test_server
ld: library not found for -lrt
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [bin/test_server] Error 1
make[1]: *** [CMakeFiles/test_server.dir/all] Error 2
make: *** [all] Error 2
112018-04-13 -
liuyubobobo
2018-04-12
使用mac系统,最简单的配置clion的方法是安装xcode,xcode自带了必要的命令行工具和Clang Compiler,且无需手动配置。安装xcode后,再安装clion,clion会自动找到xcode中的相应配置工具。
当然,从道理上,你也可以只安装clion所需要的C++环境,而不安装整个xcode。就需要自己在网上查一下相应的配置教程了。jetbrains官网上的mac系统配置需求,是安装xcode。可以参见:https://www.jetbrains.com/help/clion/install-and-set-up-product.html
加油!
10 -
金刚小仓
提问者
2018-04-13
就是写的Hello world,编译不出来
00
相似问题