oh-my-fish/plugins/ccache/ccache.load

10 lines
233 B
Fish
Raw Normal View History

2014-06-21 04:12:11 +00:00
# Use ccache for building Android
# See: https://source.android.com/source/initializing.html#setting-up-ccache
set -gx USE_CCACHE 1
if test -n "$CCACHE_ROOT"
_prepend_path $CCACHE_ROOT
2014-06-21 04:12:11 +00:00
else
_prepend_path /usr/lib/ccache/bin
2014-06-21 04:12:11 +00:00
end