The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
75 views

Is there any way to change the dynamic library search path in Xcode

Below is my scenario, In my Application i had to make use of libopus library , i downloaded and install, compile --> install procedure is normal as its for any other open source library, I linked ...
1
vote
1answer
67 views

Making framework private with install_name_tool being ignored

I have written a simple application using the GPhoto2 Framework, and this works so long as the framework is in the location where it was originally compiled. I would like to move this inside the app ...
2
votes
0answers
392 views

dyld: Library not loaded: libboost_system.dylib

Yet another dyld: Library not loaded dylib problem.. I've got a dylib (libboost_system.dylib) compiled from the Boost sources, then used install-name-tool to prepare it for inclusion in the ...
0
votes
1answer
162 views

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 above when put into a run script in xcode would change the lookup path ...
0
votes
0answers
108 views

Using install_name_tool for qt

I'm trying to use install_name_tool for deploying my C++ application that uses Qt for the gui. I did all this steps but the afterwards the executable is broken and it's crashing mkdir ...
1
vote
0answers
98 views

install_name_tool changes not propagating on distribution

I am wrapping a python GUI into an application using py2app. On porting to another machine I noticed that I was having a dependency issue with libpng12.0.dylib. This is stored provided by the ...
2
votes
2answers
530 views

install_name_tool on OS X Lion

I'm running OS 10.7.4 and cannot find install_name_tool. I have Xcode 4.3.3 installed through the App Store. Does anyone know where I can find/get install_name_tool?
0
votes
1answer
88 views

Editing and compiling install_name_tool

I want to add an LC_LOADDYLIB command to my mach o binary file present inside the ipa file. The install_name_tool is used to change any existing library linked to another library. I want to add a new ...
0
votes
1answer
147 views

Linking library(dylib) to a compiled ipa

I have a compiled ipa and a .dylib file. Using install_name_tool I am able to change the libraries present in the ipa file binary. Is there any command which is used to add a library to the ipa. To be ...
0
votes
3answers
79 views

Error in shell script

I'm using a shell script to help me resolve library paths so I can send out my app bundle. I don't know much about shell scripts and was hacking something together from other pieces so I really don't ...
2
votes
1answer
1k views

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 malformed object (unknown load command 4) I read that it could be an error when ...
1
vote
1answer
859 views

XCode 4, dylib & install_name_tool

I'm trying to get a dylib working in my OSX project. Ive been reading a few samples, this one specifically: XCode 4 adding dylib But I still cannot get it to work. Here are the steps I have ...
4
votes
1answer
671 views

install_name_tool error when running virtualenv on Mac OSX Lion (with Xcode)

When I try to run mkvirtualenv with python 2.6, I get the error: Could not call install_name_tool -- you must have Apple's development tools installed I've installed Xcode. (It's actually installed, ...
3
votes
1answer
1k views

Can you please help me understand how Mach-O libraries work 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 project (dylibs) and I read somewhere that adding the libraries in my project was not ...
1
vote
2answers
1k views

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: $ ./configure --prefix=output $ make $ make install I'd like to change the ...
0
votes
0answers
220 views

Bash script in XCode can't find executable

I'm following this tutorial to set up FMOD with XCode: http://bleepsandpops.com/post/4390907162/adding-the-fmod-api-to-an-xcode-project I have followed all of the steps (omitting the Event Network ...
0
votes
1answer
633 views

install_name_tool does nothing

I'm preparing my application for deployment on OSX. The only problem is relocating the shared libraries. I put them all inside a Frameworks-folder in the .app-folder itself. What I try for every ...
3
votes
1answer
316 views

Remove dependent shared library from a dylib?

I know that I can use the -change option of install_name_tool to change the name of a dependent shared library stored in a dylib, but is there a way to remove a dependent shared library, which I ...
11
votes
1answer
6k views

Using install_name_tool what's going wrong?

I'm trying to change the install path of a dylib after it has been build. I use "otool -L" to check what the current path is. And then I do: $ install_name_tool -change /my/current/path/libmine.dylib ...
8
votes
3answers
3k views

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 like to move that shared library out and into a better place. On OS X, this can be done with ...
8
votes
2answers
764 views

How to deploy application that depends on dynamic libraries?

I am developing an application that uses the GStreamer library. In order to ease deployment I would like to collect all the GStreamer libraries in a local bundle. For this I wrote a little script that ...
9
votes
1answer
5k views

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, say MyPlugIn.bundle/Contents/Resources/library.dylib. I have relocated paths for ...