Confirmed users
905
edits
No edit summary |
|||
Line 37: | Line 37: | ||
== Install ccache == | == Install ccache == | ||
* ccache will help | * ccache will help speed up the compilation process when recompilating newer versions of the code | ||
* Run in terminal | * Run in terminal | ||
sudo apt-get install ccache | sudo apt-get install ccache | ||
* Add ccache to the PATH variable | * Add ccache to the PATH variable | ||
sudo export PATH=/usr/lib/ccache:$PATH | sudo export PATH=/usr/lib/ccache:$PATH | ||
* Extend the ccache to improve build time: | |||
ccache --max-size 8G | |||
== Install gold linker == | |||
* Using the gold linker improves the linking time reducing the compile time significantly | |||
sudo apt-get install binutils-gold | |||
== Install Mercurial == | == Install Mercurial == |