Skip to content
Snippets Groups Projects
Commit f2a70f45 authored by Bruno Pinto's avatar Bruno Pinto
Browse files

Merge pull request #231 from iven/ccache

parents f3dcaa38 8773b12c
Branches
No related merge requests found
...@@ -3,6 +3,7 @@ ...@@ -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. * __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 * __brew__ [Homebrew](http://brew.sh/) integration
* __bundler__ use Ruby's [Bundler](http://bundler.io/) automatically for some commands * __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. * __django__ - helper for Django Unit tests. Cleans the cached modules as well.
* __ec2__ - exports env variables for Amazon's EC2 management * __ec2__ - exports env variables for Amazon's EC2 management
* __emoji-clock__ - The current time with half hour accuracy as an emoji symbol * __emoji-clock__ - The current time with half hour accuracy as an emoji symbol
......
# 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
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment