aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/emacs.rb2
-rw-r--r--Library/Formula/glib.rb2
-rw-r--r--Library/Formula/igraph.rb2
-rw-r--r--Library/Formula/zeromq.rb1
4 files changed, 7 insertions, 0 deletions
diff --git a/Library/Formula/emacs.rb b/Library/Formula/emacs.rb
index 5bcfa1184..32f3a5a32 100644
--- a/Library/Formula/emacs.rb
+++ b/Library/Formula/emacs.rb
@@ -53,6 +53,8 @@ class Emacs <Formula
end
def install
+ fails_with_llvm "Duplicate symbol errors while linking."
+
configure_args = [
"--prefix=#{prefix}",
"--without-dbus",
diff --git a/Library/Formula/glib.rb b/Library/Formula/glib.rb
index 4c5071ad4..7434c61b1 100644
--- a/Library/Formula/glib.rb
+++ b/Library/Formula/glib.rb
@@ -16,6 +16,8 @@ class Glib <Formula
depends_on 'gettext'
def install
+ fails_with_llvm "Undefined symbol errors while linking"
+
# Snow Leopard libiconv doesn't have a 64bit version of the libiconv_open
# function, which breaks things for us, so we build our own
# http://www.mail-archive.com/gtk-list@gnome.org/msg28747.html
diff --git a/Library/Formula/igraph.rb b/Library/Formula/igraph.rb
index c175d293d..b71ca9e85 100644
--- a/Library/Formula/igraph.rb
+++ b/Library/Formula/igraph.rb
@@ -9,6 +9,8 @@ class Igraph <Formula
depends_on 'gmp'
def install
+ fails_with_llvm "Segfault while compiling."
+
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
diff --git a/Library/Formula/zeromq.rb b/Library/Formula/zeromq.rb
index 43d53ee6c..f0238e459 100644
--- a/Library/Formula/zeromq.rb
+++ b/Library/Formula/zeromq.rb
@@ -6,6 +6,7 @@ class Zeromq <Formula
md5 'c9cb3ee4499df1781f8ddc03c20d656b'
def install
+ fails_with_llvm "Compiling with LLVM gives a segfault while linking."
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end