dyld, the Dynamic Link Editor, is the binary loader for Darwin (Mac OS X). Questions about dyld typically involve shared libraries being unavailable at link-time, or unavailable at runtime.
Questions tagged [dyld]
465 questions
0
votes
0 answers
Installing XCode command line tools fails
I'm trying to install the command line tools on Yosemite but I'm getting the following error:
$ xcode-select --install
dyld: Symbol not found: __cg_png_create_info_struct
Referenced from:…

2daaa
- 2,788
- 7
- 33
- 44
0
votes
1 answer
OSX terminal app, fails to load dylib file
I have created a dylib file. Successfully added it to one Terminal(Console based app through Xcode). When I run the app through Xcode they dylib is loaded and all the methods inside it works.
The issue is when I run the Consols App (Unix…

Anoop Vaidya
- 46,283
- 15
- 111
- 140
0
votes
1 answer
DYLD error when starting up mongodb
I installed mongo with:
brew install mongodb
I created the data directory:
/data/dir
i included mongod the path (which mongod --> /opt/local/bin/mongod):
export PATH=$PATH:/opt/local/bin/mongod
I tried to run mongod:
mongod
And got this…

Kristian
- 21,204
- 19
- 101
- 176
0
votes
1 answer
How to load libraries for gnuplot?
I installed gnuplot on macos via:
$ make install,
whenever I run
$ gnuplot,
I get the following error message:
dyld: Library not loaded: libpng15.15.dylib
Referenced from: /usr/local/bin/gnuplot
Reason: image not found
Trace/BPT trap: 5
I…

ca_san
- 183
- 2
- 11
0
votes
1 answer
dyld Missing glX* from libX11
While attempting to run [executable], a program I wrote under Linux and am attempting to test under XQuartz on OSX, I get:
dyld: lazy symbol binding failed: Symbol not found: _glXChooseVisual
Referenced from: [executable]
Expected in:…

geometrian
- 14,775
- 10
- 56
- 132
0
votes
0 answers
ImageMagick on MacOS 10.10 Yosemite - dyld errors
I get the following error when trying to set the path to the imagemagick binary in Drupal (7.31):
dyld: Library not loaded: /usr/local/lib/liblcms2.2.dylib
Referenced from: /usr/local/bin/convert
Reason: no suitable image found. Did…

cbrody
- 1
- 1
0
votes
0 answers
Why do I get this EXC_BREAKPOINT (code=EXC_i386_BPT, subcode=0x0) error and how to solve it?
I'm using OpenGL with Xcode on my macbook Pro OS X 10.10 (Beta) and as soon as I tried to compile my project I ran into a problem.
#include // OpenGL + GLUT
#include
#include
#include
#include…

Yvann Argentin
- 83
- 1
- 1
- 5
0
votes
1 answer
RNCryptor Dyld Error Message: Library not loaded
So, I've tired everything to get this to work after I've archived the application, but it keeps failing to open with the error message:
Dyld Error Message:
Library not loaded: /Library/Frameworks/RNCryptor.framework/Versions/A/RNCryptor
…

Proto
- 19
- 3
0
votes
1 answer
Calling git command from PHP script returns "dyld: lazy symbol binding failed"
I'm on Mac OSx, using MAMP. When I run git commands directly in the terminal, they work as expected with no errors. But I'm writing a script in php, that is meant to run some git commands, and I am getting the following error:
exec('cd…

shauno
- 121
- 2
- 10
0
votes
1 answer
Running Python Script from Terminal Error
I'm trying to run my Python script form the Terminal (I write the scripts in Sublime Text2 and I use a Mac osx). This is by no means my first time running one as such but I keep on getting this error that I have never seen before, nor do I…

user2475523
- 43
- 2
- 4
0
votes
2 answers
Dynamically loading a couple of missing functions
I have a binary, advertised as working on Mac OS X 10.6, but that tries to link wcsdup(), a function that was only added in 10.7. This is an extract from the bug report generated when launching on 10.6.8:
Process: paradiseperfectboatrescue…

Pascal Cuoq
- 79,187
- 7
- 161
- 281
0
votes
1 answer
How to create an absolute path reference in a dylib?
[Disclaimer: I'm working with someone else's code. I've never created a .dylib, so I turn to S.O.]
I'm working on a distro that creates a .dylib. It looks okay, but when I link against it, the resulting executable crashes with:
dyld: Library not…

fearless_fool
- 33,645
- 23
- 135
- 217
0
votes
1 answer
iOS error "dyld no valid entry point". How to resolve it?
When I run my application on simulator, I was struck with the following error.
"dyld no valid entry point iOS".
How to resolve this error?

Jagannath Suhit
- 3
- 3
0
votes
0 answers
Error when compiling with custom Framework
I try to compile my app with an external Framework. When I execute it, I get the following message:
dyld: Library not loaded: @rpath/iLifeAssetManagement.framework/Versions/A/iLifeAssetManagement
Referenced from:…

Laurent Crivello
- 3,809
- 6
- 45
- 89
0
votes
1 answer
Mac OS X - Linking executable to different dynamic library, load both old and new
I've a command line tool, I built with Xcode, that links to some Apple frameworks.
As a "personal experiment" (just trying to understand a little of how dynamic libraries works) I tried to point the executable to a different version of the same…

Paolo
- 15,233
- 27
- 70
- 91