This is the mail archive of the libc-help@sourceware.org mailing list for the glibc 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: How is ld-linux.so.2 [re]located?


On Tue, Mar 22, 2011 at 7:37 PM, Mike Frysinger <vapier@gentoo.org> wrote:
> On Tue, Mar 22, 2011 at 9:51 AM, Tom Brown wrote:
>> I've done some googling, and found others with the same problem, but no
>> solution. Does anyone have any idea how I can persuade the 2.96 version of
>> the tools to generate an executable that loads
>> /opt/gcc-2.96/lib/ld-linux.so.2, instead of /lib/ld-linux.so.2?
>
> the interp path is hardcoded in the binary because the kernel needs
> it, and userspace cant specify a search path.
> http://sourceware.org/glibc/wiki/Tips_and_Tricks/Loader_Tips_and_Tricks
>

You can specify the dynamic linker you want to load your binary with
during the build phase by using the --dynamic-linker ld flag. You can
set LDFLAGS as:

-Wl,--dynamic-linker=/opt/lib/....

or similar during your gcc build.


-- 
Siddhesh Poyarekar
http://siddhesh.in


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