blob: c70d12c1f0cf8633f2a18dc3aeaae4535674fd1a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
 | class GooglePerftools < Formula
  homepage "https://code.google.com/p/gperftools/"
  url "https://googledrive.com/host/0B6NtGsLhIcf7MWxMMF9JdTN3UVk/gperftools-2.4.tar.gz"
  sha1 "13b904d0d1f220e43e4495f3403ee280c6da26ea"
  bottle do
    cellar :any
    sha1 "182f0141d4d35e0d674ac65e92942beddef19579" => :yosemite
    sha1 "c07c8decd4323cfcc8bd96a6c94076a044ab9b6d" => :mavericks
    sha1 "5511c9311f6882df6fc70433818647fb77d59188" => :mountain_lion
  end
  fails_with :llvm do
    build 2326
    cause "Segfault during linking"
  end
  def install
    ENV.append_to_cflags "-D_XOPEN_SOURCE"
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make"
    system "make", "install"
  end
  test do
    (testpath/"test.c").write <<-EOS.undent
      #include <assert.h>
      #include <gperftools/tcmalloc.h>
      int main()
      {
        void *p1 = tc_malloc(10);
        assert(p1 != NULL);
        tc_free(p1);
        return 0;
      }
    EOS
    system ENV.cc, "test.c", "-ltcmalloc", "-o", "test"
    system "./test"
  end
end
 |