view .shell.d/99.sccache.sh @ 483:9fd2345d35e0

hg: clean up extensions list Lots of these are obsolete, or I just don't use anymore.
author Augie Fackler <raf@durin42.com>
date Tue, 07 Jan 2020 16:53:15 -0500
parents b2a3bee0d975
children 0593cba244a8
line wrap: on
line source

if which sccache > /dev/null ; then
    export SCCACHE_CACHE_SIZE="1G"
    export CC='sccache cc'
    export CXX='sccache c++'
    export RUSTC_WRAPPER="$(which sccache)"
fi