Ccache setup
The goal is to speed up recompilation using ccache. Ccache is a tool that speeds up recompilation of C/C++ code. It does this by caching the results of previous compilations. When you recompile code, ccache checks if it has already compiled the same code with the same compiler flags. If so, it uses the cached result instead of recompiling.
This commit is contained in:
parent
3dc2058400
commit
cfcd6e22bb
3 changed files with 20 additions and 1 deletions
|
|
@ -211,6 +211,7 @@ If you `ENABLE_CMAKE_EXAMPLE`, it will also build the examples.
|
|||
If may want to make build scripts more verbose (especially when building the
|
||||
doc) by enabling `CMAKE_VERBOSE_MAKEFILE`.
|
||||
|
||||
If `ccache` installed in your environment, library recompilation times can be significantly reduced. To clear all cached objects, execute `ccache -C`.
|
||||
|
||||
## Licenses
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue