Re: Unable to link to library version of my choice

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, 28 Feb 2012, Marco Ricci wrote:

I built gtk locally on my computer and the build went fine, but when I wrote a small test program and tried to link it to the library that I built, it compiled fine, but behind the scenes, it actually linked to the file in /usr/lib.

I guess you checked that with ldd on your program, not strace on the build?

I've tried everything, -L option, compiling with the full path of the library file and even googling for the answer. I see that others have had the same problem but there are no satisfactory responses. I tried -nostdlib option with gcc but then it started complaining about other libraries.

There are 2 operations called linking. One is when you create the binary file. Another one is when you run it. -L tells where to look for libraries during the first one. -rpath (it is a linker option, so you want -Wl, in front) tells where to look during the second one.

--
Marc Glisse


[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux