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 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

so manually specify the path yourself.  move the binary from "xxx" to
"xxx.bin", and put a wrapper script at "xxx" which does:
#!/bin/sh
/path/to/other/interp --library-path otherlibdirs "$0.bin" "$@"

you can see an example here:
http://sourceware.org/glibc/wiki/Testing/Builds
-mike


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