Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get rid of "gcc - /usr/bin/ld: warning lib not found"

I have the following warning during link:

/usr/bin/ld: warning: libxxx.so.6, needed by /a/b/c/libyyy.so, not found (try using -rpath or -rpath-link) 

Setting environment variable LD_LIBRARY_PATH=path_to_libxxx.so.6 silence the warning (adding -Lpath_to_libxxx.so.6 doesn't help).

I have a separate compilation server, where the resulting binary is only compile. The binary is executed on other server and there the libxxx.so.6 is seen by the binary (checked with ldd executable).

Is there're other way to get rid of the warning at compilation time (I have it several times and it's very annoying)?

like image 572
dimba Avatar asked Nov 22 '12 07:11

dimba


1 Answers

You need to add the dynamic library equivalent of -L:

-Wl,-rpath-link,/path/to/lib 

This will cause the linker to look for shared libraries in non-standard places, but only for the purpose of verifying the link is correct.

If you want the program to find the library at that location at run-time, then there's a similar option to do that:

-Wl,-rpath,/path/to/lib 

But, if your program runs fine without this then you don't need it.

like image 139
ams Avatar answered Sep 29 '22 11:09

ams