aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2011-07-07 10:37:35 -0700
committerAdam Vandenberg2011-07-07 10:37:35 -0700
commit8aec273272d154450af79bce7378c0b46ed4ff8a (patch)
treed803eb95a28185513e07a8011a19fc407c640e24 /Library
parent9c011a6ac83b740c55b6648c30ba454f9d479ced (diff)
downloadhomebrew-8aec273272d154450af79bce7378c0b46ed4ff8a.tar.bz2
chicken: update for xcode 4
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