diff options
| author | Douglas Creager | 2011-01-22 16:45:20 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2011-01-22 16:37:50 -0800 |
| commit | 76f99dad4b457774743d5d06f21e15a4a6949c9e (patch) | |
| tree | 5772ebced5783037955d23907018bfcc9694846d /Library | |
| parent | 6b10646b15637b4e142674e6aee073d9a6bfc8ef (diff) | |
| download | homebrew-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.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/valgrind.rb | 2 |
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}"] |
