Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Patch from Peter S. Mazinger to make the get-needed-libgcc-objects | Eric Andersen | 2003-06-05 | 2 | -3/+4 | |
| | | | | script work with newer binutils versions. | |||||
* | We do not provide getfsent and friends, so remove this header | Eric Andersen | 2003-06-05 | 1 | -82/+0 | |
| | | | | file, to prevent stupid configure scripts from getting confused. | |||||
* | Kill the runtime fallback to fork and make it be compile time | Eric Andersen | 2003-06-03 | 1 | -19/+9 | |
| | ||||||
* | Fix broken | Eric Andersen | 2003-06-03 | 1 | -44/+46 | |
| | ||||||
* | Patch from Peter S. Mazinger to fix some leftover problems | Eric Andersen | 2003-06-02 | 2 | -2/+2 | |
| | | | | from converting "PIC" to "__PIC__" | |||||
* | Clone still had a few little PIC problems.... | Eric Andersen | 2003-05-30 | 1 | -39/+84 | |
| | ||||||
* | In a number of places we erroneously used tests such as '#ifdef PIC' when we | Eric Andersen | 2003-05-30 | 14 | -21/+21 | |
| | | | | | | should instead have been testing for '#ifdef __PIC__'. This resulted in NON-PIC code getting mixed into the shared library. Oops!!! -Erik | |||||
* | Enable ADD_LIBGCC_FUNCTIONS by default on arm | Eric Andersen | 2003-05-30 | 1 | -0/+4 | |
| | ||||||
* | Eviscerate stropts.h so configure scripts won't try to use STREAMS | Eric Andersen | 2003-05-29 | 1 | -1/+8 | |
| | | | | | garbage. uClibc does not support STREAMS in any way whatsoever. -Erik | |||||
* | Allow gcc to move/update by detecting where needed files are should | Eric Andersen | 2003-05-28 | 1 | -6/+101 | |
| | | | | | they move/disappear from the expected location. -Erik | |||||
* | Accomodate building under cygwin | Eric Andersen | 2003-05-28 | 1 | -1/+16 | |
| | ||||||
* | grr. It's a void *, not a char *. | Eric Andersen | 2003-05-27 | 1 | -1/+1 | |
| | ||||||
* | Change 'N' to '__size' to avoid conflicts with common #define of N | Eric Andersen | 2003-05-27 | 1 | -5/+5 | |
| | ||||||
* | Sorry. Changed this while fixing the last bug and forgot to change it | Manuel Novoa III | 2003-05-23 | 1 | -1/+1 | |
| | | | | back. Unfortunately, none of my test cases caught it. | |||||
* | Cope with autoconf's broken AC_FUNC_MALLOC macro, which redefines malloc as | Eric Andersen | 2003-05-23 | 1 | -0/+12 | |
| | | | | | | | | | rpl_malloc if it does not detect glibc style returning-a-valid-pointer-for-malloc(0) behavior. This wrapper calls malloc() as usual, but if N is zero, we allocate and return a 1-byte block instead.... sigh... -Erik | |||||
* | Fix (hopefully) scanf behavior for nul bytes in the stream when processing | Manuel Novoa III | 2003-05-15 | 2 | -7/+23 | |
| | | | | | | | %c, %s, and %[ specifiers. Note that scanf is undergoing rewrite so I didn't bother optimizing this. I did run all my regression tests though. Set EOF correctly for fmemopen on readonly streams. I really need to check what glibc behavior is for the various open modes though. | |||||
* | Add in a default file for m68k. | David McCullough | 2003-05-14 | 1 | -0/+61 | |
| | ||||||
* | Sleep was returning the wrong value because: | David McCullough | 2003-05-14 | 1 | -2/+4 | |
| | | | | | | | | | * nanosleep returns the remaining time, not the time slept * nanosleep only fills out the remaining time if it returns -1 (ie., the sleep was interrupted) Fix from Paul Dale <pauli@snapgear.com> | |||||
* | (__libc_open): Fix wacky indentation. | Miles Bader | 2003-05-08 | 1 | -6/+6 | |
| | ||||||
* | setjmp was trashing r12 which is bad and can cause apps to crash if they are | David McCullough | 2003-05-01 | 1 | -3/+3 | |
| | | | | | using r12. r12 is supposed to be preserved across C function calls. r0-r7 are trashable :-) | |||||
* | Some small fixups for the h8 support and add the h8s platform support. | David McCullough | 2003-04-29 | 6 | -8/+102 | |
| | ||||||
* | Fixup __libc_open to use varargs and match the prototype. | David McCullough | 2003-04-29 | 1 | -2/+7 | |
| | | | | | On the H8 varargs are rather unusual and if you declare a function with varargs, it had better use them or it won't work. | |||||
* | uClibc 0.9.19 has a bug in globfree(). If the previous call to | Eric Andersen | 2003-04-29 | 1 | -2/+2 | |
| | | | | | | | | | | | glob(...,pglob) used the GLOB_DOOFFS flag to reserve the first pglob->gl_offs slots of pglob->gl_pathv, globfree(pglob) would attempt to free the objects pointed to by those slots. If those objects were not on the heap, the system would crash. The attached patch fixes this. Norm | |||||
* | Comment on glibc's MALLOC_CHECK_ support. | Eric Andersen | 2003-04-25 | 1 | -0/+8 | |
| | ||||||
* | Thierry De Corte notices that when UCLIBC_HAS_FLOAT is disabled, we must also | Eric Andersen | 2003-04-23 | 1 | -5/+4 | |
| | | | | disable drand48, drand48_r, erand48, and erand48_r since they use floats. | |||||
* | Fix SIGTRAP handling on arm. The defination of struct ucontext, | Eric Andersen | 2003-04-21 | 1 | -8/+7 | |
| | | | | | which was copied from glibc, is wrong. So fix it. -Erik | |||||
* | Patch from Marshall M. Midden: | Eric Andersen | 2003-04-19 | 1 | -33/+39 | |
| | | | | | | It turns out that uClibc's syslog.c does not close sockets when doing retries and when it exits due to errors. This patch fixes it. | |||||
* | Konrad Taro Eisele noticed the sparc struct stat was broken. | Eric Andersen | 2003-04-19 | 1 | -22/+18 | |
| | | | | Fix it. | |||||
* | Patch from Liam Girdwood to fix mips profiling when using | Eric Andersen | 2003-04-16 | 1 | -0/+5 | |
| | | | | newer gcc versions. | |||||
* | (free_to_heap): Unlock the heap before returning in the | Miles Bader | 2003-04-02 | 1 | -2/+5 | |
| | | | | __UCLIBC_UCLINUX_BROKEN_MUNMAP__ case. Fix from YYang1@Winbond.com.tw. | |||||
* | Avoid errors with buggy preprocessors | Eric Andersen | 2003-03-31 | 1 | -2/+2 | |
| | ||||||
* | Oops. Don't call strip twice | Eric Andersen | 2003-03-13 | 1 | -1/+0 | |
| | ||||||
* | resync with glibc 2.3 | Eric Andersen | 2003-03-13 | 1 | -129/+357 | |
| | ||||||
* | sjhill needs to buy donuts for everyone | Eric Andersen | 2003-03-11 | 1 | -1/+0 | |
| | ||||||
* | Make it so debugging pthreads works, even with DODEBUG turned off | Eric Andersen | 2003-03-11 | 2 | -2/+9 | |
| | | | | -Erik | |||||
* | Minor cleanup to better sync with glibc 2.3 | Eric Andersen | 2003-03-11 | 1 | -102/+123 | |
| | ||||||
* | Compliance with MIPS ABI and MIPS kernel changes. | "Steven J. Hill" | 2003-03-11 | 2 | -17/+2 | |
| | ||||||
* | Patch from Jordan Crouse to avoid potential rendering problems | Eric Andersen | 2003-03-10 | 1 | -1/+1 | |
| | ||||||
* | remove a leftover debug printf | Eric Andersen | 2003-03-07 | 1 | -2/+0 | |
| | ||||||
* | Patch from Stefan Allius | Eric Andersen | 2003-03-07 | 3 | -23/+24 | |
| | | | | | | | | | | | 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 | |||||
* | Patch from Stefan Allius: | Eric Andersen | 2003-03-07 | 1 | -1/+1 | |
| | | | | | | 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. | |||||
* | Patch from Stefan Allius: | Eric Andersen | 2003-03-07 | 3 | -4/+8 | |
| | | | | fix a couple of gcc 3.3 compiler warnings in gmon.c | |||||
* | Fixup ldd handling of multiple files | Eric Andersen | 2003-03-06 | 1 | -12/+36 | |
| | ||||||
* | more random changes | Eric Andersen | 2003-03-06 | 1 | -15/+12 | |
| | ||||||
* | /me needs to learn to proofread | Eric Andersen | 2003-03-06 | 1 | -4/+6 | |
| | ||||||
* | Make the text a bit more clear | Eric Andersen | 2003-03-06 | 1 | -3/+3 | |
| | ||||||
* | For now, leave mmap on mips using mmap1, since mmap2 seems | Eric Andersen | 2003-03-06 | 1 | -0/+5 | |
| | | | | | to have 'issues' (i.e. it doesn't work 100% properly). -Erik | |||||
* | Finish off gmon based profiling for powerpc | Eric Andersen | 2003-03-06 | 3 | -4/+120 | |
| | ||||||
* | Make profiling on arm work | Eric Andersen | 2003-03-06 | 2 | -2/+15 | |
| | ||||||
* | Patch from Stefan Allius to finish off the last required bits | Eric Andersen | 2003-03-06 | 3 | -29/+90 | |
| | | | | for gmon profiling support for the SuperH target. |