Como configuro o ccache?

28

Eu quero usar o ccache para acelerar a compilação. Eu me deparei com como habilitar o ccache

Isso foi o que eu fiz até agora:

$ sudo apt-get install -y ccache
$ dpkg -l ccache
ii  ccache  3.1.6-1   Compiler cache for fast recompilation of C/C++ code
$ whereis ccache
ccache: /usr/bin/ccache /usr/lib/ccache /usr/bin/X11/ccache /usr/share/man/man1/ccache.1.gz

Eu adicionei ccache ao caminho adicionando ao meu ~/.bashrc

$ export PATH="/usr/lib/ccache:$PATH"
$ source ~/.bashrc
$ echo $PATH 
/usr/lib/ccache:/usr/local/cuda-5.5/bin/:/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games

Os links simbólicos parecem bem:

$ ll /usr/lib/ccache/
total 76
drwxr-xr-x   2 root root  4096 mai   22 10:48 ./
drwxr-xr-x 253 root root 69632 mai   22 10:48 ../
lrwxrwxrwx   1 root root    16 mai   22 10:48 avr-g++ -> ../../bin/ccache*
lrwxrwxrwx   1 root root    16 mai   22 10:48 avr-gcc -> ../../bin/ccache*
lrwxrwxrwx   1 root root    16 mai   22 10:48 avr-gcc-4.5.3 -> ../../bin/ccache*
lrwxrwxrwx   1 root root    16 mai   22 10:48 c++ -> ../../bin/ccache*
lrwxrwxrwx   1 root root    16 mai   22 10:48 c89-gcc -> ../../bin/ccache*
lrwxrwxrwx   1 root root    16 mai   22 10:48 c99-gcc -> ../../bin/ccache*
lrwxrwxrwx   1 root root    16 mai   22 10:48 cc -> ../../bin/ccache*
lrwxrwxrwx   1 root root    16 mai   22 10:48 g++ -> ../../bin/ccache*
lrwxrwxrwx   1 root root    16 mai   22 10:48 g++-4.6 -> ../../bin/ccache*
lrwxrwxrwx   1 root root    16 mai   22 10:48 gcc -> ../../bin/ccache*
lrwxrwxrwx   1 root root    16 mai   22 10:48 gcc-4.6 -> ../../bin/ccache*
lrwxrwxrwx   1 root root    16 mai   22 10:48 x86_64-linux-gnu-g++ -> ../../bin/ccache*
lrwxrwxrwx   1 root root    16 mai   22 10:48 x86_64-linux-gnu-g++-4.6 -> ../../bin/ccache*
lrwxrwxrwx   1 root root    16 mai   22 10:48 x86_64-linux-gnu-gcc -> ../../bin/ccache*
lrwxrwxrwx   1 root root    16 mai   22 10:48 x86_64-linux-gnu-gcc-4.6 -> ../../bin/ccache*

O link parece bom:

$ which g++
/usr/lib/ccache/g++

$ make
g++ -o affine_euler affine_euler.cpp -O3 -DEIGEN_NO_DEBUG -I/usr/include/eigen3
g++ -o test_eigen test_eigen.cpp -O3 -DEIGEN_NO_DEBUG -I/usr/include/eigen3

Mas o cache está vazio:

$ ccache -s
cache directory                     /home/dell/.ccache
cache hit (direct)                     0
cache hit (preprocessed)               0
cache miss                             0
files in cache                         0
cache size                             0 Kbytes
max cache size                       1.0 Gbytes

Onde estou errado?

    
por Victor Lamoine 22.05.2014 / 11:58

3 respostas

32

Instalação:

# Install package
sudo apt install -y ccache

# Update symlinks
sudo /usr/sbin/update-ccache-symlinks

# Prepend ccache into the PATH
echo 'export PATH="/usr/lib/ccache:$PATH"' | tee -a ~/.bashrc

# Source bashrc to test the new PATH
source ~/.bashrc && echo $PATH

Seu caminho (pelo menos o começo) deve ser parecido com:

/usr/lib/ccache:/usr/local/cuda-5.5/bin/:/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games

E g++ / gcc deve agora apontar para:

which g++ gcc
/usr/lib/ccache/g++
/usr/lib/ccache/gcc

Configuração:

Se você não quiser limitar o número de arquivos e o tamanho do cache:

ccache -F 0
ccache -M 0

Mostrar estatísticas de cache:

ccache -s

Esvazie o cache e redefina as estatísticas:

ccache -C -z

Uso:

Sempre que você chamar gcc ou g++ ; ccache é chamado. Meu erro foi que eu não deletei arquivos já compilados. Basta apagar todos os seus arquivos CMake / output e configurar / compilar novamente.

Seu ccache não deve estar vazio então. Agora tente um make clean e make e você verá que é muito mais rápido do que recompilar tudo graças ao cache.

    
por Victor Lamoine 22.05.2014 / 16:31
3

Seu $PATH não parece correto; O diretório ccache deve estar lá. Basta executar:

export PATH="/usr/lib/ccache/:$PATH"

... e tente seus comandos g++ novamente. Este diretório está cheio de comandos proxy que chamam ccache . Isso deve funcionar com a maioria dos scripts.

Se você está apenas chamando g++ manualmente (não como acima de onde você está usando o make), você pode apenas prefixar o comando:

ccache g++ ...
    
por Oli 22.05.2014 / 13:32
0

Em relação à instalação: Descobri que no Ubuntu 18.04 o padrão enviado não captura invocações de cc e c++ . Para instalar totalmente o ccache, você precisa

sudo apt-get install ccache sudo /usr/sbin/update-ccache-symlinks export PATH="/usr/lib/ccache/:$PATH" e então (devido a symlinks atualizados) também chamadas para cc e c ++ são pegas!

    
por Jürgen Weigert 13.04.2018 / 14:49