2

升级到 MAC OSX 10.8.2 后,我在使用 git 时遇到问题。Trace 显示缺少一个 lib 文件:

git push
dyld: Library not loaded: /usr/lib/libwrap.7.dylib
Referenced from: /usr/local/bin/ssh
Reason: image not found

这会导致 SSH 失败,然后是 GIT,因为 git 使用 SSH。谷歌周围看到了大量类似的问题,但似乎没有提供一个可行的解决方案。

有什么建议吗?

4

1 回答 1

0

To fix this, unlink then reinstall your app. e.g. if you use Homebrew:

brew unlink git
brew install git --build-from-source

(Edit: I also ran brew install libtool --universal before the above. That may have also done it.)

于 2013-03-21T17:08:30.813 回答