Add config option to disable ccache during build.

When building releases in a temporary folder using ccache doesn't help, as the path of the source files is also used for identification. Disabling ccache makes it not cache objects that are likely to be never needed again (i.e. the next build will use a different file).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22922 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2009-10-04 16:41:24 +00:00
parent 9d9fe03a35
commit f65170f1df

View file

@ -1,7 +1,7 @@
# ccache # ccache
unix:!mac { unix:!mac:!noccache {
CCACHE = $$system(which ccache) CCACHE = $$system(which ccache)
!isEmpty(CCACHE) { !isEmpty(CCACHE) {
message("using ccache") message("using ccache")