mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-03 15:40:32 +00:00
Merge pull request #231 from iven/ccache
This commit is contained in:
commit
f2a70f451c
@ -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
|
||||||
|
9
plugins/ccache/ccache.load
Normal file
9
plugins/ccache/ccache.load
Normal file
@ -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…
Reference in New Issue
Block a user