aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/chicken.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/chicken.rb b/Library/Formula/chicken.rb
index 2f557924f..1e647d616 100644
--- a/Library/Formula/chicken.rb
+++ b/Library/Formula/chicken.rb
@@ -6,9 +6,11 @@ class Chicken < Formula
homepage 'http://www.call-cc.org/'
head 'git://code.call-cc.org/chicken-core'
+ fails_with_llvm "See http://lists.gnu.org/archive/html/chicken-users/2010-12/msg00158.html"
+
def install
ENV.deparallelize
- args = ["PREFIX=#{prefix}", "PLATFORM=macosx"]
+ args = ["PREFIX=#{prefix}", "PLATFORM=macosx", "C_COMPILER=#{ENV.cc}"] # Chicken uses a non-standard var. for this
args << "ARCH=x86-64" if MacOS.prefer_64_bit?
system "make", *args
system "make", "install", *args