86 lines
3.2 KiB
Ruby
86 lines
3.2 KiB
Ruby
class Ccache < Formula
|
|
desc "Object-file caching compiler wrapper"
|
|
homepage "https://ccache.dev/"
|
|
url "https://github.com/ccache/ccache/releases/download/v4.4.1/ccache-4.4.1.tar.xz"
|
|
sha256 "ebd6dfb5b15dfe39310e1f5834bafbe6ab526c71df8ad08a508e8a242bad8159"
|
|
license "GPL-3.0-or-later"
|
|
head "https://github.com/ccache/ccache.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_big_sur: "8b080397271209e799d28ff1d9224d9dae710c93a742b0fd25410694c34495a0"
|
|
sha256 cellar: :any, big_sur: "56c36dccabd0d36973c1ade740b4d75abe7fe8755f96c2a03add7667548bbfde"
|
|
sha256 cellar: :any, catalina: "4ffcd0418bf19aadfee527d033a5f1e079348184d71194a40c74e09682e9865c"
|
|
sha256 cellar: :any, mojave: "d7c3dc21b248c0d2a4f57cec9d8a9517a0b79720e2aad7303c992e6b5472bcc4"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "2744b2cd82df0e29310f5c32d713ed3b5bc7f82e6bd4f469cb743b0c6c5f2794"
|
|
end
|
|
|
|
depends_on "asciidoctor" => :build
|
|
depends_on "cmake" => :build
|
|
depends_on "pkg-config" => :build
|
|
|
|
depends_on "hiredis"
|
|
depends_on "zstd"
|
|
|
|
on_linux do
|
|
depends_on "gcc"
|
|
end
|
|
|
|
fails_with gcc: "5"
|
|
|
|
def install
|
|
system "cmake", "-S", ".", "-B", "build", *std_cmake_args, "-DENABLE_IPO=TRUE"
|
|
system "cmake", "--build", "build"
|
|
|
|
# Homebrew compiler shim actively prevents ccache usage (see caveats), which will break the test suite.
|
|
# We run the test suite for ccache because it provides a more in-depth functional test of the software
|
|
# (especially with IPO enabled), adds negligible time to the build process, and we don't actually test
|
|
# this formula properly in the test block since doing so would be too complicated.
|
|
# See https://github.com/Homebrew/homebrew-core/pull/83900#issuecomment-90624064
|
|
with_env(CC: DevelopmentTools.locate(DevelopmentTools.default_compiler)) do
|
|
system "ctest", "-j#{ENV.make_jobs}", "--test-dir", "build"
|
|
end
|
|
|
|
system "cmake", "--install", "build"
|
|
|
|
libexec.mkpath
|
|
|
|
%w[
|
|
clang
|
|
clang++
|
|
cc
|
|
gcc gcc2 gcc3 gcc-3.3 gcc-4.0
|
|
gcc-4.2 gcc-4.3 gcc-4.4 gcc-4.5 gcc-4.6 gcc-4.7 gcc-4.8 gcc-4.9
|
|
gcc-5 gcc-6 gcc-7 gcc-8 gcc-9 gcc-10 gcc-11
|
|
c++ c++3 c++-3.3 c++-4.0
|
|
c++-4.2 c++-4.3 c++-4.4 c++-4.5 c++-4.6 c++-4.7 c++-4.8 c++-4.9
|
|
c++-5 c++-6 c++-7 c++-8 c++-9 c++-10 c++-11
|
|
g++ g++2 g++3 g++-3.3 g++-4.0
|
|
g++-4.2 g++-4.3 g++-4.4 g++-4.5 g++-4.6 g++-4.7 g++-4.8 g++-4.9
|
|
g++-5 g++-6 g++-7 g++-8 g++-9 g++-10 g++-11
|
|
].each do |prog|
|
|
libexec.install_symlink bin/"ccache" => prog
|
|
end
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
To install symlinks for compilers that will automatically use
|
|
ccache, prepend this directory to your PATH:
|
|
#{opt_libexec}
|
|
|
|
If this is an upgrade and you have previously added the symlinks to
|
|
your PATH, you may need to modify it to the path specified above so
|
|
it points to the current version.
|
|
|
|
NOTE: ccache can prevent some software from compiling.
|
|
ALSO NOTE: The brew command, by design, will never use ccache.
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
ENV.prepend_path "PATH", opt_libexec
|
|
assert_equal "#{opt_libexec}/gcc", shell_output("which gcc").chomp
|
|
system "#{bin}/ccache", "-s"
|
|
end
|
|
end
|