Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-03-16 | merge the syscalls and punt the glibc import in the process (blah, what a ↵ | Mike Frysinger | |
waste of time that was :D) | |||
2005-03-16 | updates to match i386 | Mike Frysinger | |
2005-03-16 | clean up whitespace style and hack around a build failure or two | Mike Frysinger | |
2005-03-16 | fix 13mo+ old typo | Mike Frysinger | |
2005-03-16 | whitespace trim | Mike Frysinger | |
2005-03-16 | clean up style to be match i386 | Mike Frysinger | |
2005-03-15 | Add _dl_boot() prototype. | Joakim Tjernlund | |
2005-03-15 | A little whitespace clean up. | Peter Kjellerstedt | |
2005-03-15 | Made it compile again (and it even seems to work). | Peter Kjellerstedt | |
2005-03-15 | Fix MIPS initial GOT relocation. | Joakim Tjernlund | |
2005-03-14 | Same typo here. | Joakim Tjernlund | |
2005-03-14 | Oops, fix typo. | Joakim Tjernlund | |
2005-03-14 | Make mips at least compile | Eric Andersen | |
2005-03-14 | Fix up x86 so it compiles again. | Eric Andersen | |
2005-03-14 | Simplify PT_INTERP handling. | Joakim Tjernlund | |
Add prototype for _dl_boot() | |||
2005-03-14 | Generalize optimized relative reloc procesing. | Joakim Tjernlund | |
Add elf_machine_dynamic() and elf_machine_load_address() for all archs. elf_machine_dynamic() replaces the #ifdef mess to get at the GOT. elf_machine_load_address() is needed to execute ldso directly, this is not complete yet. I probably broke one or two archs(only tested PPC) so please try and report problems. For a report to be useful you need to enable __SUPPORT_LD_DEBUG_EARLY__ and __SUPPORT_LD_DEBUG__ | |||
2005-03-14 | Force suid apps to do unlazy binding of the PLT relocs. | Joakim Tjernlund | |
See http://bugs.gentoo.org/show_bug.cgi?id=71609 for more details. Reported by Peter Mazinger. | |||
2005-03-10 | Use DT_RELCONT_IDX to optimize the relocation of R_PPC_RELATIVE | Joakim Tjernlund | |
relocs. All RELA arches can probably copy this. REL archs will have to delete the "+ rpnt->r_addend" from the loop. | |||
2005-02-12 | no more cvs | Mike Frysinger | |
2005-01-24 | make sure libdl static and shared targets are built properly | Mike Frysinger | |
2005-01-19 | clean up dependencies so libraries are only rebuilt when needed and so that ↵ | Mike Frysinger | |
parallel build works correctly | |||
2005-01-19 | Avoid compiler warnings. | Peter Kjellerstedt | |
2005-01-18 | rework dependencies so the archive is re-created only when the object files ↵ | Mike Frysinger | |
have been updated | |||
2005-01-18 | rework dependencies to support parallel build and avoid re-creating header ↵ | Mike Frysinger | |
files all the time | |||
2005-01-12 | Use the inlined __dl_parse_dynamic_info() in DL_BOOT() for CRIS too. | Peter Kjellerstedt | |
2005-01-10 | Fixup function prototypes to match definitions in include/dlfcn.h | Eric Andersen | |
2005-01-05 | fix eriks e-mail address | Mike Frysinger | |
2004-12-22 | Cleanup for when LDSO_CACHE_SUPPORT is disabled | Eric Andersen | |
2004-12-22 | Patch from Peter S. Mazinger: | Eric Andersen | |
Add UCLIBC_BUILD_NOEXECSTACK support. | |||
2004-12-22 | Patch from Peter S. Mazinger: | Eric Andersen | |
Seperate out security features into a separate menu | |||
2004-12-22 | Cleaned up patch from Peter S. Mazinger adding support for | Eric Andersen | |
-fstack-protector and -fno-stack-protector-all security options | |||
2004-12-22 | Patch from Peter S. Mazinger to consistantly use "ASFLAGS" | Eric Andersen | |
as the flags for all calls to 'as' | |||
2004-12-20 | - added LD_TRACE_LOADED_OBJECTS to be stripped from the env on suid exec | Ned Ludd | |
2004-12-20 | - dont use dos format | Ned Ludd | |
2004-12-11 | That last patch had some garbage in it... PIC != PIE | Eric Andersen | |
2004-12-11 | Partial commit of a patch from Alexandre Oliva: | Eric Andersen | |
Here's an updated version of the patch I posted about a month ago. It leaves -nostdinc alone, and uses -print-file-name=include instead of -print-search-dirs to figure out where GCC's internal headers are. Please let me know whether there are any portions of this patch you'd like me to break into smaller pieces, to rework, or to give up trying to get into uClibc :-) Thanks, | |||
2004-11-17 | Add BIND NOW support to MIPS. | Joakim Tjernlund | |
Mips did not honour the LD_BIND_NOW env. variable or the DT_BIND_NOW flag in the dynamic section. | |||
2004-11-10 | Add RTLD_LOCAL support for dlopened libs. Reported by | Joakim Tjernlund | |
Andrew de Quincey, who has been most helpful getting this sorted out, thanks. Thanks also to Peter Mazinger who did alot of testing. Removed all traces of dl_parse_copy_information() since it is no longer used. | |||
2004-11-02 | - Remove dynamic_size from struct elf_resolve. | Joakim Tjernlund | |
- Replace all open coded dynamic handling with a function. Reduces size. - Fold special MIPS dynamic code into the dynamic_info item. - Add RELRO support. - Support linking with "-z now". - prepare for DT_RELACOUNT/DT_RELCOUNT optimization. - Add -z now to ld.so linking, this is what ld.so does anyway so let the linker know that. | |||
2004-10-27 | Jocke's patch was almost right. Just needed move the DT_MIPS_RLD_MAP test | Manuel Novoa III | |
up a bit. Native and remote debugging of shared libs and threaded apps now works on mips. | |||
2004-10-14 | unmap ld.so.cache when dlopen() returns. | Joakim Tjernlund | |
2004-10-14 | Don't SEGV if library not found. | Joakim Tjernlund | |
2004-10-12 | Mark Rakes writes: | Joakim Tjernlund | |
without LDSO_CACHE_SUPPORT turned on, LDSO_CONF and LDSO_CACHE are not defined anywhere, but still used by ldconfig.c This patch allows ldconfig to build again, although there may be a cleaner way to fix this???? Applied with minor modification. | |||
2004-10-11 | Undo previous change. Leave SUID programs alone until I know what to do | Joakim Tjernlund | |
with them. | |||
2004-10-11 | Don't use ld.so.cache for SUID programs. | Joakim Tjernlund | |
2004-10-07 | Remove _dl_parse_copy_information() for CRIS per Peter Kjellerstedts request. | Joakim Tjernlund | |
2004-10-07 | Remove usage of _dl_parse_copy_information() from generic code. | Joakim Tjernlund | |
Remove definition of _dl_parse_copy_information() for powerpc. Remaining archs can do the same. Make debugging output of "relocation processing: xxx" a bit more sane. | |||
2004-10-06 | Don't complain if ld.so.cache is missing. | Joakim Tjernlund | |
2004-10-06 | Peter S. Mazinger writes: | Joakim Tjernlund | |
Hello! Here is the modified unsecvars patch that applies to cvs. | |||
2004-10-06 | Puts common defines into dl-defs.h (in ldso/include) from dl-elf.h and | Joakim Tjernlund | |
dl-cache.h and make use of it. Also disables the lib-path-redundancy check for the case the cache is not used. Makes use of _PRELOAD_FILE_SUPPORT. From Peter Mazinger. |