1

我正在尝试使用 brew 安装鸡肉

Salils-MacBook-Pro:bin salilwadnerkar$ brew install chicken
==> Downloading http://code.call-cc.org/releases/4.7.0/chicken-4.7.0.tar.gz
Already downloaded: /Library/Caches/Homebrew/chicken-4.7.0.tar.gz
==> make PREFIX=/usr/local/Cellar/chicken/4.7.0 PLATFORM=macosx C_COMPILER=/usr/bin/clang ARCH=x86-64
==> make install PREFIX=/usr/local/Cellar/chicken/4.7.0 PLATFORM=macosx C_COMPILER=/usr/bin/clang ARCH=x86-64

但是,它卡在了这个阶段。我还尝试使用 csi,因为它似乎已经安装了。但我没有得到命令提示符。

4

1 回答 1

2

As outlined in:

This github issue, instead of clang, which is a default compiler on Mac OSX, we need to use gcc to build chicken.

brew install -vd chicken --use-gcc

(Ignore -vd, which I used for debugging this brew install)

于 2012-03-23T06:03:08.477 回答