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

2

5

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.

Legume answered 18/10, 2013 at 17:33 Comment(1)
the problem is that SourceTree uses an embedded git instead of system's. see my answerSwadeshi
L
5

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.

Legume answered 18/10, 2013 at 19:10 Comment(1)
on mac, xcode install git at /usr/bin, homebrew or gui install git at /usr/local/bin, and installer from git-scm.com/download install git at /usr/local/git/bin. Change PATH is just change which git you are running.Engird
F
0

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

Fiedling answered 18/5, 2016 at 7:10 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.