ccache-support.txt 901 B

123456789101112131415161718192021
  1. // -*- mode:doc; -*-
  2. // vim: set syntax=asciidoc:
  3. [[ccache]]
  4. Using +ccache+ in OpenADK
  5. ~~~~~~~~~~~~~~~~~~~~~~~~~
  6. http://ccache.samba.org[ccache] is a compiler cache. It stores the
  7. object files resulting from each compilation process, and is able to
  8. skip future compilation of the same source file (with same compiler
  9. and same arguments) by using the pre-existing object files. When doing
  10. almost identical builds from scratch a number of times, it can nicely
  11. speed up the build process.
  12. +ccache+ support is integrated in OpenADK. You just have to enable +Use ccache
  13. to speedup recompilation+ in +Globale settings+. This will automatically build
  14. +ccache+ and use it for every target compilation.
  15. The cache is located in +$HOME/.ccache+. It is stored outside of OpenADK
  16. directory so that it can be shared by separate OpenADK builds. If you want to
  17. get rid of the cache, simply remove this directory.