Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-04-02 | (free_to_heap): Unlock the heap before returning in the | Miles Bader | |
__UCLIBC_UCLINUX_BROKEN_MUNMAP__ case. Fix from YYang1@Winbond.com.tw. | |||
2003-03-31 | Avoid errors with buggy preprocessors | Eric Andersen | |
2003-03-13 | Oops. Don't call strip twice | Eric Andersen | |
2003-03-13 | resync with glibc 2.3 | Eric Andersen | |
2003-03-11 | sjhill needs to buy donuts for everyone | Eric Andersen | |
2003-03-11 | Make it so debugging pthreads works, even with DODEBUG turned off | Eric Andersen | |
-Erik | |||
2003-03-11 | Minor cleanup to better sync with glibc 2.3 | Eric Andersen | |
2003-03-11 | Compliance with MIPS ABI and MIPS kernel changes. | "Steven J. Hill" | |
2003-03-10 | Patch from Jordan Crouse to avoid potential rendering problems | Eric Andersen | |
2003-03-07 | remove a leftover debug printf | Eric Andersen | |
2003-03-07 | Patch from Stefan Allius | Eric Andersen | |
the ldd.c wasn't compilable for SuperH due to a missing ELFCLASSM define and the readelf executable was linked with a wrong dynamic linker path. To fix this I removed the --uclibc-use-build-dir. The patch also fixed all the compiler warnings (-Wall -W). Erik made a few additional changes to eliminate unused function arguments and fixup a static variable that was was doing the wrong thing | |||
2003-03-07 | Patch from Stefan Allius: | Eric Andersen | |
a make install_target stops if we have some sysmlinks in the destination target. This little patch force to install over a previous installed uClibc version,so we will allways get a consistent uClibc installation. | |||
2003-03-07 | Patch from Stefan Allius: | Eric Andersen | |
fix a couple of gcc 3.3 compiler warnings in gmon.c | |||
2003-03-06 | Fixup ldd handling of multiple files | Eric Andersen | |
2003-03-06 | more random changes | Eric Andersen | |
2003-03-06 | /me needs to learn to proofread | Eric Andersen | |
2003-03-06 | Make the text a bit more clear | Eric Andersen | |
2003-03-06 | For now, leave mmap on mips using mmap1, since mmap2 seems | Eric Andersen | |
to have 'issues' (i.e. it doesn't work 100% properly). -Erik | |||
2003-03-06 | Finish off gmon based profiling for powerpc | Eric Andersen | |
2003-03-06 | Make profiling on arm work | Eric Andersen | |
2003-03-06 | Patch from Stefan Allius to finish off the last required bits | Eric Andersen | |
for gmon profiling support for the SuperH target. | |||
2003-03-06 | Update website | Eric Andersen | |
2003-03-05 | Patch from Konrad Eisele to add include/asm-generic since, at least | Eric Andersen | |
on sparc, this is needed by some of the include/asm files | |||
2003-03-05 | Patch from Konrad Eisele to omit -Wl,--dynamic-linker from | Eric Andersen | |
the gcc wrapper when not building with shared library support. | |||
2003-03-05 | Patch from Stefan Allius: | Eric Andersen | |
Hi Erik, I patched the initfini.awk script, so we can build crt[in].S for the SuperH targets with gmon-support. The patch moves all labels into the wright sections, and add some assembler statements to jump over them. (only activ on SH targets) The patch also avoid any references of _GLOBAL_OFFSET_TABLE_ or *gmon_start* in the crtn.S file. This should work on every target. Bye Stefan | |||
2003-03-05 | The vfork system call on powerpc seems to be completely | Eric Andersen | |
broken. Use fork instead, per glibc behavior. | |||
2003-03-05 | Default to using fork() for vfork() when no arch specific | Eric Andersen | |
implementation of vfork is present. | |||
2003-03-04 | Seperate pthread debugging from uClibc debugging. They are used | Eric Andersen | |
for different things. | |||
2003-03-04 | Patch from Stefan Allius adding the function 'thread_self_stack' | Eric Andersen | |
from glibc 2.3 that is needed for pthreads to compile for SuperH. | |||
2003-03-04 | Patch from Stefan Allius to make ldd.c compile under Solaris | Eric Andersen | |
2003-03-04 | Teach ldd to be a bit more helpful by telling you specifically | Eric Andersen | |
what the problem library is that is linked vs glibc. -Erik | |||
2003-03-04 | Fix compile when profiling is disabled | Eric Andersen | |
2003-03-03 | Fix grammar | Eric Andersen | |
2003-03-03 | Initial effort at adding profiling support. | Eric Andersen | |
2003-03-03 | Updates for release | Eric Andersen | |
2003-03-03 | Update version | Eric Andersen | |
2003-03-03 | Fix location of cvs | Eric Andersen | |
2003-03-03 | begin preparing for release | Eric Andersen | |
2003-03-03 | Remove bogus link_warning. It is meaningless and stupid. While the | Manuel Novoa III | |
previous committed patch was well-meaning, the #warning it replaced was simply a reminder I accidently left in when implementing strcoll/wcscoll. Besides, strcmp is completely locale invariant. | |||
2003-03-03 | more uClinux shared libs fixups | David McCullough | |
2003-03-03 | fix coldfire/68000 support properly this time, ifdef logic was back to | David McCullough | |
front. | |||
2003-03-03 | Fix the double sub #48, should have been an add :-) | David McCullough | |
2003-03-02 | cut-n-paste strikes again | Eric Andersen | |
2003-03-02 | Add missing alias __modify_ldt | Eric Andersen | |
2003-03-01 | Teach ldd to act just the glibc provided one (relying on the | Eric Andersen | |
shared lib loader to do the work) when it is possible to do so, and only go poking about through the ELF headers when that fails so we can still use 'ldd' on cross compiled stuff. -Erik | |||
2003-03-01 | Patch from Jeffrey Damick: | Eric Andersen | |
With glibc if you do a res_init() that forces a reread of the nameservers file, but in uClibc the res_init will not force a reread if it has already read the file because then the nameservers value is greater than 0. So res_init must call close_nameservers() before calling open_nameservers(). | |||
2003-03-01 | Use a funky version in a probably vein attempt at preventing gdb | Eric Andersen | |
from dlopen()'ing glibc's libthread_db library... | |||
2003-03-01 | doh. I forgot mips can't talk to globals that early on in the | Eric Andersen | |
process. Fix that up too. | |||
2003-03-01 | doh. I forgot mips can't talk to globals that early on in the | Eric Andersen | |
process. Fix that up too. -Erik | |||
2003-03-01 | Fix the shared library loader so we can properly debug things like pthreads. | Eric Andersen | |
Mips gdb support for pthreads and similar complex stuff is broken, but then it couldn't have worked before either... -Erik |