A compiler cache speeds up compilation times by caching object files and reusing them on subsequent builds. This even works for complete rebuilds (i.e. deleting the full build-directory). The compiler cache Ccache is automatically used when it is found by CMake.
Install it with your package manager, e.g.:
sudo apt install ccacheJust load the module:
module load /global/apps/modulefiles/ccache/3.3.3brew install ccacheDownload the Windows x86_64 (binary release).
Just extract the archive and put the ccache.exe into the PATH.
You may want to change the cache directory (environment variable CCACHE_DIR) or increase the cache size (e.g. run ccache -M 10G once or set the environment variable CCACHE_MAXSIZE). See the Ccache docs for configuration instructions.
You can check cache hit statistics with ccache -s.
To disable caching:
cmake . -DOGS_DISABLE_COMPILER_CACHE=ONThis article was written by Lars Bilke. If you are missing something or you find an error please let us know.
Generated with Hugo 0.147.9
in CI job 639840
|
Last revision: September 27, 2025
Commit: [cmake] Remove linker warnings when building mpmetis. 852270d
| Edit this page on