Git Error: dyld: lazy symbol binding failed: Symbol not found: _iconv_open

亡梦爱人 提交于 2019-11-27 07:02:07

问题


I was trying to fix up my .bashrc on a new mac with some aliases I had and I had made a .bash_profile to try to load up the .bashrc when the terminal was opened. However, it has been giving me this error every time I try to use a git command.

git status
dyld: lazy symbol binding failed: Symbol not found: _iconv_open
  Referenced from: /usr/bin/git
  Expected in: /opt/local/lib/libiconv.2.dylib

dyld: Symbol not found: _iconv_open
  Referenced from: /usr/bin/git
  Expected in: /opt/local/lib/libiconv.2.dylib

Trace/BPT trap: 5

I deleted the .bash_profile and even reverted back the .bashrc but still no good. Any ideas?

Side Note: I have looked at Git > dyld: lazy symbol binding failed: Symbol not found: _iconv_open but his solution doesn't seem to work for me as I have no bash_profile at all now.


回答1:


Coworker figured it out for my situation.

Create a file ~/.bash_profile and in it put

PATH=/usr/local/bin:$PATH:/opt/local/bin
export PATH

That seemed to fix it. Seems the issue was with the path.




回答2:


Note, I just answered a similar issue. Bottom line is there is a broken version of git installed on your computer in /usr/local/git/bin. Uninstall that one to be certain you won't get this problem. (I had fixed it on the command line but not in PyCharm -- annoying!)

More specific info in my answer here:

Git commands not working in Mac terminal: "dyld: Symbol not found: ___strlcpy_chk" error



来源:https://stackoverflow.com/questions/19455727/git-error-dyld-lazy-symbol-binding-failed-symbol-not-found-iconv-open

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!