aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDouglas Creager2011-01-22 16:45:20 -0500
committerAdam Vandenberg2011-01-22 16:37:50 -0800
commit76f99dad4b457774743d5d06f21e15a4a6949c9e (patch)
tree5772ebced5783037955d23907018bfcc9694846d /Library
parent6b10646b15637b4e142674e6aee073d9a6bfc8ef (diff)
downloadhomebrew-76f99dad4b457774743d5d06f21e15a4a6949c9e.tar.bz2
valgrind and google-perftools fail with LLVM
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/google-perftools.rb2
-rw-r--r--Library/Formula/valgrind.rb2
2 files changed, 4 insertions, 0 deletions
diff --git a/Library/Formula/google-perftools.rb b/Library/Formula/google-perftools.rb
index 14223370f..892676bb0 100644
--- a/Library/Formula/google-perftools.rb
+++ b/Library/Formula/google-perftools.rb
@@ -6,6 +6,8 @@ class GooglePerftools <Formula
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}"
diff --git a/Library/Formula/valgrind.rb b/Library/Formula/valgrind.rb
index 5a058dee7..89a32d747 100644
--- a/Library/Formula/valgrind.rb
+++ b/Library/Formula/valgrind.rb
@@ -11,6 +11,8 @@ class Valgrind <Formula
skip_clean 'lib'
def install
+ fails_with_llvm "Undefined symbols when linking", :build => 2326
+
system "./autogen.sh" if File.exists? "autogen.sh"
args = ["--prefix=#{prefix}", "--mandir=#{man}"]