From bf67584091ba0561b5e5cbe27ab09b7844d3c17d Mon Sep 17 00:00:00 2001 From: Robert Iannucci Date: Thu, 24 Sep 2009 23:31:17 -0700 Subject: [PATCH] ccache formula ccache is a compiler cache. It acts as a caching pre-processor to C/C++ compilers, using the -E compiler switch and a hash to detect when a compilation can be satisfied from cache. This often results in a 5 to 10 times speedup in common compilations. --- Formula/ccache.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Formula/ccache.rb diff --git a/Formula/ccache.rb b/Formula/ccache.rb new file mode 100644 index 00000000000..25aa37faf33 --- /dev/null +++ b/Formula/ccache.rb @@ -0,0 +1,13 @@ +require 'brewkit' + +class Ccache