summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Make sure static heaps are aligned correctly.Miles Bader2003-09-171-9/+11
|
* Patch from Philip Nye fixing mmu-lessEric Andersen2003-09-171-1/+1
|
* Fix fcntl64 when UCLIBC_HAS_LFS is enabled, but __NR_fcntl64Eric Andersen2003-09-171-4/+4
| | | | is not defined.
* This should enabled building of uClibc locale support when using uClibc itself.Manuel Novoa III2003-09-163-8/+13
| | | | | | | | | | | | | | | | Sorry I didn't test this before the release. Please remember that the locale data generation tools are not very robust, so doing something like disabling 8-bit codeset support is likely to break things. As it stands, UTF-8 support is required, but I'm not sure I test for that. Also, you will notice a difference in the locale data generated by uClibc verses glibc. That's because the bg_BG locale specifies use of grouping in LC_NUMERIC, but supplies no grouping char. The uClibc locale code tests for and works around this (at the moment) by disabling grouping. But the result is slightly different data which ripples throughout the rest of the tables.
* Fix a problem reported by Atsushi Nemoto <anemo@mba.ocn.ne.jp>Manuel Novoa III2003-09-131-3/+7
| | | | for environments where long and long long are the same size.
* Patch by Atsushi Nemoto <anemo@mba.ocn.ne.jp> to do arch-requiredManuel Novoa III2003-09-111-66/+103
| | | | mapping of signal strings (alpha, mips, hppa, sparc).
* Fix several stupid bugs I let slip into the releaseEric Andersen2003-09-111-3/+3
|
* Peter Kjellerstedt writes:Eric Andersen2003-09-111-5/+4
| | | | | The attached patch allows $(CC) to contain spaces (something which we use).
* Simplify an expression. Use static const on strings to avoidEric Andersen2003-09-112-12/+10
| | | | a gcc 2.95 compiler problem on powerpc.
* Stefan Allius writes:Eric Andersen2003-09-111-36/+45
| | | | | | | | | Hello, my patch changed the format of the ldso debug output to the same format as on the i386 systems. By Stefan
* Stefan Allius writes:Eric Andersen2003-09-112-5/+5
| | | | | | | | | 1. Under Solaris the test command with the 'string' argument don't work well. So I added the '-n' argument, which might work on all platforms. 2. The sed under Solaris don't support the '-s' argument, which is a GNU extension. I changed it to '-e' which works fine for me.
* Yet more trivial doc updates0_9_21Eric Andersen2003-09-093-35/+44
|
* minor spelling fixesEric Andersen2003-09-091-4/+4
|
* Force Large File Support disabled on Cris, since somethingEric Andersen2003-09-091-0/+1
| | | | | appears to be wrong with their toolchain that is tickled by LFS.
* Make sure that __syscall_fcntl is extern when LFSEric Andersen2003-09-091-0/+2
| | | | is disabled
* sigh. The cris compiler doesn't do link_warning's....Eric Andersen2003-09-091-1/+5
|
* Fix cris shared lib loader so it compiles...Eric Andersen2003-09-091-2/+4
|
* Fix grammarEric Andersen2003-09-091-4/+4
|
* Update websiteEric Andersen2003-09-092-46/+103
|
* Attack of the spelling police....Eric Andersen2003-09-091-6/+6
|
* update changelogEric Andersen2003-09-091-0/+31
|
* Update changelog for releaseEric Andersen2003-09-091-672/+1329
|
* Enable automagic locale data downloadsEric Andersen2003-09-092-4/+18
|
* Arm needs this to compile with gcc 2.95Eric Andersen2003-09-092-0/+24
|
* Add in several config system updates for locale support.Eric Andersen2003-09-091-3/+42
|
* Fix wctype.c so that wchar can be enabled without ctype table-based functions.Manuel Novoa III2003-09-092-1/+59
|
* Force enable ADD_LIBGCC_FUNCTIONS on armEric Andersen2003-09-081-4/+2
|
* Oops! I broke pread on mips with my last update. ThisEric Andersen2003-09-081-4/+4
| | | | | fixes it again so it both compiles and works, -Erik
* Fix broken testEric Andersen2003-09-081-25/+24
|
* Fix a trivial compile problemEric Andersen2003-09-081-2/+2
|
* Signifcantly speed out integer to string conversion for printf.Manuel Novoa III2003-09-081-49/+38
| | | | | Printf still needs some performance work done though. Also some bufferless stdio cleanups.
* Obligatory forgotten file.Manuel Novoa III2003-09-081-0/+8
|
* Add back in table-less ctype funcs for those interested in minimizingManuel Novoa III2003-09-0812-278/+600
| | | | | | static build sizes and not needing wchar support. Add in a SUSv3 getopt as an option for those not needing gnu getopt. Again, mainly for the static linking crowd.
* Use __libc_fork for the uClinux fork stubEric Andersen2003-09-081-2/+2
|
* Fixup build problem on powerpcEric Andersen2003-09-081-4/+6
|
* Be certain the config system binaries are currentEric Andersen2003-09-081-5/+8
|
* mjn3 pointed out that my brain was not in gear....Eric Andersen2003-09-081-4/+5
|
* ansidecl.h and symcat.h copied from glibc.Miles Bader2003-09-082-0/+364
|
* More FAQ updatesEric Andersen2003-09-071-29/+48
|
* A few minor syscall cleanupsEric Andersen2003-09-071-47/+62
|
* Some updates from glibc. mjn3 reports this fixes profilingEric Andersen2003-09-075-14/+44
| | | | on i386, at least, so seems like a good thing.
* i386/mcount.S expects to call __mcount_internal with the 2 args passedManuel Novoa III2003-09-071-1/+1
| | | | | | | in registers. NOTE: i386/mcount.S really needs to be rewritten. It currently won't work for non-PIC builds.
* Remove profil.c, since it is constained within gmon.c.Manuel Novoa III2003-09-072-114/+1
|
* Fix some more problems found by the ltpEric Andersen2003-09-072-12/+18
|
* 'extern inline' doesn't work... Use 'static inline'Eric Andersen2003-09-061-5/+5
|
* add missing prototypeEric Andersen2003-09-061-0/+2
|
* Add an implementation of profil(), based on the version fromEric Andersen2003-09-062-1/+114
| | | | glibc, with several changes for use in uClibc.
* Fix numerous problems with both getcwd implementations.Eric Andersen2003-09-061-66/+63
| | | | -Erik
* Fix errno values. Fix MALLOC_GLIBC_COMPAT handling in malloc/malloc.c,Eric Andersen2003-09-064-37/+59
| | | | | which was reversed. Provide more consistancy between implementations. Handle it when people do stupid things like malloc(-1);
* Running ltp 20030905 showed that tcsendbreak was broken.Eric Andersen2003-09-061-11/+13
| | | | This fixes it.