Top "Install-name-tool" questions

dyld: Library not loaded ... Reason: Image not found

When trying to run an executable I've been sent in Mac OS X, I get the following error dyld: Library …

macos dylib dyld otool install-name-tool
How can I change the filename of a shared library after building a program that depends on it?

I have a program that depends on a shared library it expects to find deep inside a directory structure. I'd …

linux linker shared-libraries install-name-tool
Why is install_name_tool and otool necessary for Mach-O libraries in Mac Os X?

I am developing a Cocoa Application using the latest version of Xcode 4, I want to link dynamic libraries to my …

macos mach-o otool install-name-tool
Using install_name_tool what's going wrong?

I'm trying to change the install path of a dylib after it has been built. I use otool -L to …

macos install-name-tool
dylib @executable_path path issue in a plug-in bundle

I am developing a plug-in bundle, say MyPlugIn.bundle for an application, say BigApp.app. This bundle requires a dylib, …

xcode plugins dylib install-name-tool
How do I modify the install name of a .dylib at build time

I am building the google-gflags commandline flags library for C++ on Mac OS X (10.7.1). The build process is as such: $ ./…

macos shared-libraries autoconf install-name-tool
install_name_tool reporting malformed object

Everytime I try to use install_name_tool on my machine it reports the following install_name_tool: object: Abacate …

xcode osx-snow-leopard install-name-tool
changing the path of a dylib using install_name_tool

install_name_tool -change /usr/local/lib/testlib.dylib "$TARGET_BUILD_DIR"/../../testlib.dylib "$PRODUCT_NAME" I was told the …

xcode4 dylib install-name-tool