Add `ccache` plugin

pull/2/head
iven 10 years ago committed by Bruno Pinto
parent f3dcaa3806
commit 8773b12c2d

@ -3,6 +3,7 @@
* __autojump__ - makes navigating filesystem much faster. see [autojump article](https://github.com/joelthelion/autojump/wiki) and [video](https://www.youtube.com/watch?v=tnNyoMGnbKg). bindings only, autojump needs to be installed separately.
* __brew__ [Homebrew](http://brew.sh/) integration
* __bundler__ use Ruby's [Bundler](http://bundler.io/) automatically for some commands
* __ccache__ Enable [ccache](http://ccache.samba.org/) to speed up compilation
* __django__ - helper for Django Unit tests. Cleans the cached modules as well.
* __ec2__ - exports env variables for Amazon's EC2 management
* __emoji-clock__ - The current time with half hour accuracy as an emoji symbol

@ -0,0 +1,9 @@
# 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
Loading…
Cancel
Save