ccache.conf 637 B

1234567891011121314
  1. # Avoid spurious cache misses caused by recipe sysroot creation: Creating a
  2. # recipe sysroot hardlinks all dependent files into place. Hardlinking updates
  3. # the file's ctime which in turn interferes with ccache's include_file_ctime
  4. # check.
  5. sloppiness = include_file_ctime
  6. # We need to stop ccache considering the current directory or the
  7. # debug-prefix-map target directory to be significant when calculating
  8. # its hash. Without this the cache would be invalidated every time
  9. # ${PV} or ${PR} change.
  10. hash_dir = false
  11. # If ccache runs under pseudo it will try to create files in /run/user/0/ccache-tmp
  12. temporary_dir = $CCACHE_DIR/tmp