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
5
votes
1 answer
My target is dynamically linked against libraries from brew. How to bundle for distribution?
I built an audio plugin. I target .app and .component.
I dynamically link against a brew-installed library, libfluidsynth.
I copied libfluidsynth into the .app / .component.
I used install_name_tool to re-link the binary to point to the bundled…

Birchlabs
- 7,437
- 5
- 35
- 54
5
votes
1 answer
dyld: Library not loaded: /Volumes/hd2/pb2/build/sb_0-18231254-1457628263.05/unixODBC-2.3.2-osx10.8-x86-64bit/lib/libodbc.2.dylib
Does anyone know a solution for the defined problem? I am trying to install ODBC connector on Mac OS X 10.9.5, however I get the message that a particular file could not be found:
$ myodbc-installer -a -d -n "MySQL ODBC 5.2 Driver" -t…

Atilla
- 51
- 4
5
votes
1 answer
dyld: Library not loaded: /usr/lib/libnetsnmp.25.dylib
I used to use an AppleScript from years, but since a few days, I cannot run it anymore
I have the error message
"dyld: Library not loaded: /usr/lib/libnetsnmp.25.dylib
Referenced from: /usr/bin/php
Reason: image not found"
"dyld: Library not…

Kevin
- 1,076
- 4
- 22
- 49
5
votes
1 answer
Swift App Opens on Simulator But Not on Device
I've been working on my iOS app for a while, and it builds and runs fine on the simulator, but when I try to run it on my device, a few things happen:
The app launch screen appears
The app crashes and my Xcode output is as follows:
dyld: Library…

Alexander G
- 115
- 9
5
votes
1 answer
Dyld: Library not Loaded Error Mac OS
Hoookay,
So I know I'm about to get a dozen "load the lib dummy" answers to this, but here goes...
junk.framework is exporting some objects of another project (junk.app) so I can use it on a remote.app node on a cluster. I can compile…

Stephen Furlani
- 6,794
- 4
- 31
- 60
5
votes
3 answers
Custom framework not loaded dyld: Library not loaded: @rpath/Custom.framework/
I have an app with several custom dynamic frameworks which means I am using iOS 8 as the SDK on Xcode 6.2. My Mac is on Yosemite. The frameworks have Swift sources and resources.
The app is distributed enterprise so I just create an IPA and…

naz
- 1,478
- 2
- 21
- 32
5
votes
1 answer
What does "_dyld_start" mean in my profiling results?
I am profiling some C++ code with callgrind. This is my first time doing so. I am finding that the highest level function (the one which I assume is calling all the shots to start the program running) is called _dyld_start. I am wondering what…

NeutronStar
- 2,057
- 7
- 31
- 49
5
votes
1 answer
dyld_fatal_error with Typhoon+Swift+iOS7.x+Plist-bootstrapping
I have very annoying problem with Typhoon Framework version 2.3.0 in Swift project.
I included Typhoon in Podfile as mentiond in tutorial, installed Pods, created bridging header and added #import in this header.
Then I created…

Pawel Urban
- 1,316
- 1
- 12
- 28
5
votes
2 answers
Mac update_dyld_shared_cache error in the terminal
I had an error message in my terminal a few days ago:
dyld: shared cached file was built against a different libSystem.dylib, ignoring cache.
to update dyld shared cache run: 'sudo update_dyld_shared_cache' then reboot.
I looked it up on the…

achntrl
- 51
- 1
- 1
- 5
5
votes
1 answer
Dynamic library injection fails in iOS enterprise app
I develop enterprise apps and one of the key feature that we depend on is dynamic library injection. Until iOS 7 everything was fine. But in iOS 8 when I try to inject a dynamic library and resign using an enterprise certificate then the app…

Tamil
- 1,173
- 1
- 13
- 35
5
votes
1 answer
dyld symbol not found DictionaryGenerator (IOS Xcode6 Beta4)
I having below log error after compile with latest Xcode6 Beta4 version. However there is not problem with Xcode6 Beta3. I have not idea on what the error message is about. I'm new to xcode. Please assist.
dyld: Symbol not found:…

kaneyip
- 1,237
- 1
- 17
- 21
5
votes
3 answers
OSX App crashing on load when ParseOSX framework with Dyld Error
I have an OSX app and I have added the ParseOSX sdk. I have followed all the instructions on the quick start page (https://www.parse.com/apps/quickstart#parse_data/desktop/osx/existing)
The app is running fine in Xcode (Version 5.1.1 (5B1008)) but…

Ants
- 1,338
- 16
- 27
5
votes
0 answers
How to fix a dynamic link editor error in py2app?
I am having trouble with py2app. I keep getting the following error code after running python setupSimpleGUI.py py2app in terminal:
TypeError: dyld_find() got an unexpected keyword argument 'loader'
I have tried various main.py programs (many of…

Jeff Mandell
- 863
- 7
- 16
5
votes
3 answers
dyld: Library not loaded: /System/Library/Frameworks/Social.framework/Social
I have the following execution problem when the application is runing on simulator:
dyld: Library not loaded: /System/Library/Frameworks/Social.framework/Social
Referenced from: /Users/Development1/Library/Application…

Gabriel Goethe
- 81
- 1
- 2
5
votes
1 answer
Compiling in Qt Creator on OS X: "dyld: Library not loaded"
I've searched around and can't find an answer to this. I'm trying to compile some examples in Qt Creator (Qt 5.0.1) on Mac OS X Lion, and it keeps giving me errors. Here's the full error:
dyld: Library not loaded:…

Zotoaster
- 393
- 2
- 4
- 15