5 lines
150 B
Text
5 lines
150 B
Text
|
|
# shellcheck shell=bash
|
||
|
|
# Configure sccache (shared compilation cache)
|
||
|
|
if command -v sccache &>/dev/null; then
|
||
|
|
export SCCACHE_CACHE_SIZE="40G"
|
||
|
|
fi
|