This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Problem linking to wrong class


Ian Lance Taylor wrote:
> Brian Peschel <brianp@occinc.com> writes:
> 
>>> One way around the issue is called Âearly bindingÂ.  You could build
>>> libtwo.so such that it binds to its own symbols, rather than allowing the
>>> loader to resolve the unbound symbols with the ones provided by your
>>> executable.
>>>   
>> Is there a way to force the compiler/linker to do this?
> 
> Use the -Bsymbolic linker option.

Be very careful with this: in my experience it can lead to a whole
world of problems with data symbols and copy relocs.

Andrew.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]