Life doesn't get easier or more forgiving; we get stronger and more resilient.
生活從未變得更加輕松或?qū)捜荩俏覀冊谝稽c一點變強、變堅韌。———— Steve Maraboli
在Fedora中給Vim安裝YouCompleteMe插件時報錯no cmake_cxx_compiler could be found,首先確認安裝完了cmake 使用 #yum install cmake 然后執(zhí)行如下命令設(shè)置環(huán)境變量CC和CXX #export CC=/usr/bin/g++ #export CXX=/usr/bin/g++ 之前由于不太了解,把CC和CXX設(shè)置成了gcc,解決依舊失敗,后來在stackoverflow才找到方法: You try to use C compiler gcc as C++ one, which is wrong. You need...