Questions tagged [dyld]

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.

465 questions
0
votes
1 answer

error running sphinx due to dyld: Library not loaded: @rpath/Python

I'm trying to use sphinx to build documentation of a package I'm developing. The commands I use used to work. It looks like a link to a library has disappeared on my machine. I'm using a Mac. > sphinx-autobuild . _build/html dyld: Library not…
Joel
  • 22,598
  • 6
  • 69
  • 93
0
votes
2 answers

dyld: Library not loaded: @rpath/libswiftCore.dylib after Xcode Update

I am having problems with an app I've been working on for a while. Everything was fine until went mad and updated Xcode to 9.4 (previously 9.3). I'm using a third party framework compiled on swift 4.0.3. I worked perfectly, but after the update it…
Danf
  • 1,409
  • 2
  • 21
  • 39
0
votes
0 answers

Qt Project Dyld Error Setting rpath

I have a Qt project and I need to include some libraries I have this in my .pro file: QT += webengine I can build and run it fine on my Mac but if I try to send the .app to someone else and they run it, there is this error: Dyld Error Message: …
0
votes
2 answers

dyld: Symbol not found: __ZdaPvm - Running KING on Mac OS X

I'm having an issue running KING on Mac OS X . It has to do with a dyld link error, I think. Does anybody have any suggestions on how to fix this error? Thanks in advance. > ./king -b ./ex/ex.bed Returns: dyld: Symbol not found: __ZdaPvm …
Carmen Sandoval
  • 2,266
  • 5
  • 30
  • 46
0
votes
2 answers

dyld: Library not loaded: @rpath/libgfortran.3.dylib

I am trying to learn Fortran programming language, as a test I wrote a simple program like this: !Fortran Program program first print *, "Hello World" end program first Then I threw this code file in to mac terminal and run gfortran first.f95 which…
user9467959
  • 11
  • 1
  • 4
0
votes
3 answers

dyld: Library not loaded: @rpath/Realm.framework/Realm

I'm having a problem running my Realm-based Swift app on actual hardware. I keep getting "dyld: Library not loaded: @rpath/Realm.framework/Realm" when the app starts then leads to a SIGABRT dyld`__abort_with_payload. The app runs fine on the…
u84six
  • 4,604
  • 6
  • 38
  • 65
0
votes
0 answers

XCode 8.3 OpenGL linker error: Library not loaded

The GLFW library runs fine in an older project (created in XCode 7.x). I used the same method to add library directory and includes files, but this time it prompts a run time error, the error message is: dyld: Library not loaded:…
user3805728
  • 87
  • 1
  • 10
0
votes
0 answers

How can I ensure that a particular .dylib is loaded first by dyld?

I want to load a small .dylib before any other others are loaded, so that I can measure the current time at that moment to understand how long the other dylibs are taking to load. How can I do this?
meisel
  • 2,151
  • 2
  • 21
  • 38
0
votes
1 answer

Memory Leaks using Valgrind in /usr/lib/dyld

I am running a simple application in C using gcc compiler, and testing it with valgrind. I installed valgrind from homebrew (version: valgrind-3.13.0) and I keep getting a memory leak error, even when running a simple program. I get ERROR SUMMARY: 7…
0
votes
1 answer

iPhone application build fails with "dyld: Library not loaded: /System/[...]" error? Why?

For my own reasons and not for the app store I am referencing the Apple private framework Apple80211 in an iPhone app. I got the framework from an earlier version of the iPhone SDK. I added the "existing framework", verified that that absolute path…
Andrew J. Brehm
  • 4,448
  • 8
  • 45
  • 70
0
votes
1 answer

How can I crash an iOS app when a function designed for symbolic breakpoints is triggered?

I want to make sure that certain functions designed to be caught by symbolic breakpoints, such as UIViewAlertForUnsatisfiableConstraints, are not triggered during UI testing. However, I don't want to have the phone hooked up to the debugger and…
meisel
  • 2,151
  • 2
  • 21
  • 38
0
votes
1 answer

dyld: Library not loaded: AdjustSdk.framework

I have get build error after adding Adjust SDK framework to my project. Error like below: dyld: Library not loaded: .framework/AdjustSdk Referenced from:…
oakt
  • 117
  • 10
0
votes
1 answer

dyld: lazy symbol binding failed: Symbol not found: __ZN5boost11this_thread5hiden11sleep_untilERK8timespec (have ...6hidden11sleep_untilERK8timespec)

Trying to use OMPL 1.1.0 library. I'm using this sample code (not really relevant to the problem, which happens at runtime): #include #include #include #include…
fferri
  • 18,285
  • 5
  • 46
  • 95
0
votes
0 answers

dlopen resolving of lazy symbols

I wanted to write tool that mimic dlopen functionality by allocating executable area using mmap to store my dynamic library executable code. Then, it has to locate symbols addresses by looking up at the symbols table. It seems to be working just…
Zohar81
  • 4,554
  • 5
  • 29
  • 82
0
votes
1 answer

Curl not working! dyld: Library not loaded: /usr/local/lib/libidn.11.dylib Reason: image not found

I've looked at what may be a useful answer at Library not loaded error (libidn.11.dylib) when trying to install Homebrew. However, I don't remember ever having purposely installed MacPorts. Also, do not want to remove anything before I better…
Solur
  • 11
  • 6