aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ccache.rb
AgeCommit message (Collapse)Author
2014-03-24ccache: use install_symlinkJack Nagel
2014-03-07use opt shortcutsAdam Vandenberg
2013-09-21ccache: use spec depsJack Nagel
2013-06-18ccache: Updated caveat with better instructionsChristian Höltje
I also added a note about `ccache` never being used by `brew` since that can be confusing. Closes #20594. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-17ccache: added symlinks for more compiler versionsReed Riley
Closes #20562. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-16ccache: add HEADJiang Jiang
Closes #17879. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-02-15ccache 3.1.9Jiang Jiang
Closes #17857. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-09-20ccache 3.1.8Jack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-09-03Batch convert MD5 formula to SHA1.Mike McQuaid
Closes #14653.
2012-06-03ccache 3.1.7Jack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-08-26ccache 3.1.6Jack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-07-31ccache 3.1.5Ruben Fonseca
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-04-18Update Formula: ccacheMichael Lapinsky
Added symlinks for gcc-4.2, c++-4.2 and g++-4.2 (to match those added by MacPorts' ccache portfile) Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-12Use ruby style for inheritance.Adam Vandenberg
2011-01-20Update ccache to version 3.1.4Gray Manley
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-22update ccache to v3.1Zifei Tong
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-06-11Install ccache symlinksDouglas Creager
The ccache formula now installs ccache symlinks for a number of compilers into the #{libexec} directory. By adding this directory to your PATH, ccache will automatically be used for most compilations. The list of compilers matches that in the current MacPorts ccache portfile. Signed-off-by: Adam Vandenberg <flangy@gmail.com> * Added caveats * libexec isn't linked in to HOMEBREW_PREFIX, so it is private enough without a subfolder
2010-02-20ccache - Install man pages in the correct pathMartin Kuehl
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2009-12-12Reformat ccacheAdam Vandenberg
2009-10-15s/require 'brewkit'/require 'formula'/gMax Howell
brewkit.rb changes ENV destructively, so lets not do that everytime a formula is required. Now it's possible for other tools to require a formula description without worrying about side-effects.
2009-10-02ccache formulaRobert Iannucci
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.