include dummied-out dlopen and dlsym functions for static binaries
[musl] / src / ldso / dynlink.c
2012-02-03 Rich Felkerinclude dummied-out dlopen and dlsym functions for...
2012-01-23 Rich Felkerfix broken copy relocations from dynamic linker cleanup
2012-01-23 Rich Felkerdynamic linker support for PIE binaries (position-indep...
2012-01-23 Rich Felkercleanup dynamic linker, removing some code duplication
2012-01-20 Rich Felkerfix dynamic linker not to depend on DYNAMIC ptr in...
2012-01-17 Rich Felkerfix char signedness bug in dynlinker hash function
2011-09-18 Rich Felkerdisable dynamic linking/loading code in static libc...
2011-08-16 Rich Felkerldso: move the suid/secure check code closer to env...
2011-08-16 Rich Felkerhonor AT_SECURE aux vector flag
2011-08-16 Rich FelkerRTLD_NEXT support
2011-08-16 Rich FelkerLD_PRELOAD support
2011-07-25 Rich Felkerwhen resolving symbols with only weak defs, use first...
2011-07-24 Rich Felkerfix resolution of weak symbols (hopefully right now...
2011-07-24 Rich Felkerload vdso, if present, into the dso list
2011-07-24 Rich Felkersimplify dynamic linker startup
2011-07-02 Rich Felkerfix dlopen UB due to longjmp/volatile rules violation
2011-07-01 Rich Felkersimple rpath support (no token expansion yet) for dynam...
2011-06-29 Rich Felkertextrel support, cheap and ugly
2011-06-28 Rich Felkerreclaim the memory wasted by dynamic linking for use...
2011-06-28 Rich Felkeruse load address from elf header if possible
2011-06-28 Rich Felkermake dynamic linker relocate the main program image...
2011-06-27 Rich Felkerfix stale pointer issue in dynamic linker with dlopen
2011-06-27 Rich Felkerdon't leave the lock held on dlopen failure..
2011-06-27 Rich Felkeradd RTLD_DEFAULT support
2011-06-27 Rich Felkerin dlopen: don't use null pointer
2011-06-27 Rich Felkerfix resolving symbols in objects loaded in RTLD_LOCAL...
2011-06-26 Rich Felkerexperimental dlopen/dlsym and dynlink changes needed...
2011-06-26 Rich Felkererror handling in dynamic linking
2011-06-26 Rich Felkerfix some symbol resolution issues in dynamic linker
2011-06-25 Rich Felkerhandle library paths better (ignore empty path componen...
2011-06-25 Rich Felkerfix possible (questionable) strict aliasing violations...
2011-06-25 Rich Felkerproper path searching for dynamic linker
2011-06-25 Rich Felkerdiscard dso descriptors after performing relocations
2011-06-25 Rich Felkerkeep track of which dsos have been relocated
2011-06-24 Rich Felkerprepare support for LD_LIBRARY_PATH (checking suid...
2011-06-19 Rich Felkerdynamic linker 64bit fix: hash table entries are always...
2011-06-18 Rich Felkerexperimental dynamic linker!