mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2024-12-04 07:43:42 +08:00
10 lines
231 B
Fish
10 lines
231 B
Fish
|
# 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"
|
||
|
_append_path $CCACHE_ROOT
|
||
|
else
|
||
|
_append_path /usr/lib/ccache/bin
|
||
|
end
|