I have a dynamic libray libtest.dylib that is installed in /PATH/lib
, and an execution binary, myapp, that uses the dylib installed in /PATH/bin
.
I can run myapp
to find the dylib as follows (Is it OK to use DYLD_LIBRARY_PATH on Mac OS X? And, what's the dynamic library search algorithm with it?):
DYLD_LIBRARY_PATH="/PATH/lib" myapp
I think I can use install_name_tool
to update the library and executable so that the library can be found with rpath. I used the hints in this post - How can I specify the rpath in a dylib?.
In lib, I executed this command to add rpath.
install_name_tool -id "@rpath/libtest.dylib" libtest.dylib
install_name_tool -add_rpath "@executable_path/../lib/" libtest.dylib
In bin, I executed install_name_tool -add_rpath "@executable_path/../lib/" myapp
.
However, when I executed myapp
in bin
directory, I have the error messages.
dyld: Library not loaded: libtest.dylib
Referenced from: /PATH/bin/./myapp
Reason: image not found
Trace/BPT trap: 5
otool -l myapp
shows the rpath is correctly updated in myapp.
Load command 16
cmd LC_RPATH
cmdsize 40
path @executable_path/../lib/ (offset 12)
The same is true with libtest.dylib
Load command 13
cmd LC_RPATH
cmdsize 40
path @executable_path/../lib/ (offset 12)
What might be wrong?
ADDED
Of course, I can use cc -install_name
when compile and link time, but I wanted to know how to do the same thing my modifying the generatd dylib and execution binary.
From the lib:
cc -install_name "@loader_path/../lib/libtest.dylib" -dynamiclib -o libtest.dylib test.c
Or, the install_name can use @rpath:
cc -install_name "@rpath/libtest.dylib" -dynamiclib -o libtest.dylib test.c
From the bin:
cc -I../lib -c main.c
cc -o main main.o ../lib/libtest.dylib -Wl,-rpath -Wl,@loader_path/../lib
Or just one line:
cc -I../lib -L../lib -o main main.c -ltest -Wl,-rpath -Wl,@loader_path/../lib
See Question&Answers more detail:
os