df78cd3dca
ccache wasn't being used on fedora as the symlinks are in lib64. Change-Id: I810558799dd2382b36b5112e435b74fd5caa8ccf
8 lines
226 B
Bash
8 lines
226 B
Bash
# Put ccache in path for known compilers
|
|
for CCACHEDIR in "/usr/lib/ccache" "/usr/lib64/ccache" ; do
|
|
if ! [[ "$PATH" =~ "$CCACHEDIR" ]] ; then
|
|
export PATH=$CCACHEDIR:$PATH
|
|
fi
|
|
done
|
|
export CCACHE_DIR=/tmp/ccache
|