homebrew-core/Formula/google-perftools.rb
Douglas Creager c76915a177 valgrind and google-perftools fail with LLVM
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-01-22 16:37:50 -08:00

17 lines
528 B
Ruby

require 'formula'
class GooglePerftools <Formula
url 'http://google-perftools.googlecode.com/files/google-perftools-1.6.tar.gz'
homepage 'http://code.google.com/p/google-perftools/'
md5 '7acfee8d3e2ba968d20684e9f7033015'
def install
fails_with_llvm "Segfault during linking", :build => 2326
ENV.append_to_cflags '-D_XOPEN_SOURCE'
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end