标签:compiler gcc 服务器 ubuntu 加速编译
在做游戏服务器时,由于耦合度较高,每次编译都需要编译整个工程,非常耗时,偶然的发现了ccache,安装使用了一下,果然神奇,原来需要5分钟编译的工程1分钟可以编译完成,很好用,下面mark一下ubuntu下安装使用方法。
sudo apt-get install ccache
whereis ccache
查看安装路径, /usr/bin/ccache
mkdir ~/.bin cd ~/.bin/ ln -s /usr/bin/ccache gcc ln -s /usr/bin/ccache g++
vim ~/.bashrc
添加 export PATH="/home/<user>/.bin:$PAHT
<span style="font-weight: normal;">which g++</span>
xcode ccache加速:https://stackedit.io/viewer#!provider=gist&gistId=bace97f64151a503b824&filename=speedup-xcode-via-ccache-zhzheng-1.md
标签:compiler gcc 服务器 ubuntu 加速编译
原文地址:http://blog.csdn.net/chen19870707/article/details/39523085