OS X Framework Library not loaded: ‘Image not found’

[Xcode 11+] The only thing to do is to add the framework to the General->Frameworks, Libraries And Embedded Content section in the General tab of your app target. Make sure you select the ‘Embed & Sign’ option. [Xcode v6 -> Xcode v10] The only thing to do is to add the framework to the Embedded binaries section in the General tab of your … Read more

dyld: Library not loaded … Reason: Image not found

Find all the boost libraries (where exefile is the name of your executable): and for each libboost_xxx.dylib, do: and finally verify using otool again: Manpages: otool install_name_tool EDIT A while back I wrote a python script (copy_dylibs.py) to work out all this stuff automatically when building an app. It will package up all libraries from /usr/local or /opt/local into the app bundle and fix references to those … Read more