I came across a reference to it recently on proggit and (as of now) it is not explained.
I suspect this might be it, but I don't know for sure.
|
|
|
If you set LD_PRELOAD to the path of a shared object, that file will be loaded before any other library (including the C runtime, libc.so). So to run ls with a your special malloc() implementation, do this:
|
|||||||||||||
|
|
You can override symbols in the stock libraries by creating a library with the same symbols and specifying the library in LD_PRELOAD. Some people use it to specify libraries in nonstandard locations, but LD_LIBRARY_PATH is better for that purpose. |
|||
|
With LD_PRELOAD you can give libraries precedence. For example you can write a library which implement malloc and free. And by loading these with LD_PRELOAD your malloc and free will be executed rather than the standard ones. |
|||
|
|
|
LD_PRELOAD lists shared libraries with functions that override the standard set, just as /etc/ld.so.preload does. These are implemented by the loader /lib/ld-linux.so. If you want to override just a few selected functions, you can do this by creating an overriding object file and setting LD_PRELOAD; the functions in this object file will override just those functions leaving others as they were. For more information on shared libraries visit http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html |
|||
|
|