summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* begin preparing for releaseEric Andersen2003-03-031-1/+1
|
* Remove bogus link_warning. It is meaningless and stupid. While theManuel Novoa III2003-03-031-2/+0
| | | | | | 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.
* more uClinux shared libs fixupsDavid McCullough2003-03-031-4/+6
|
* fix coldfire/68000 support properly this time, ifdef logic was back toDavid McCullough2003-03-031-4/+4
| | | | front.
* Fix the double sub #48, should have been an add :-)David McCullough2003-03-031-1/+1
|
* cut-n-paste strikes againEric Andersen2003-03-021-1/+1
|
* Add missing alias __modify_ldtEric Andersen2003-03-021-0/+1
|
* Teach ldd to act just the glibc provided one (relying on theEric Andersen2003-03-013-37/+106
| | | | | | | 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
* Patch from Jeffrey Damick:Eric Andersen2003-03-011-0/+2
| | | | | | | | 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().
* Use a funky version in a probably vein attempt at preventing gdbEric Andersen2003-03-011-2/+5
| | | | from dlopen()'ing glibc's libthread_db library...
* doh. I forgot mips can't talk to globals that early on in theEric Andersen2003-03-011-13/+13
| | | | process. Fix that up too.
* doh. I forgot mips can't talk to globals that early on in theEric Andersen2003-03-012-2/+2
| | | | | process. Fix that up too. -Erik
* Fix the shared library loader so we can properly debug things like pthreads.Eric Andersen2003-03-015-41/+37
| | | | | | Mips gdb support for pthreads and similar complex stuff is broken, but then it couldn't have worked before either... -Erik
* Fix a potential compile errorEric Andersen2003-02-282-0/+4
|
* Fixup mips pthreadsEric Andersen2003-02-281-1/+30
|
* restore the coldfire changesDavid McCullough2003-02-281-1/+8
|
* Major update for pthreads, based in large part on improvementsEric Andersen2003-02-2788-917/+3644
| | | | | from glibc 2.3. This should make threads much more efficient. -Erik
* Fix a silly bugEric Andersen2003-02-271-2/+2
|
* Patch from David Airlie to fix handling of ctor/dtor stuff when used inEric Andersen2003-02-271-18/+23
| | | | combination with and w/o both the nostdinc and nostdlib options.
* Prefer mmap2 for mips when available. Fix the mmap test.Eric Andersen2003-02-262-7/+11
| | | | -Erik
* Fixup a really stupid and terribly obvious bug that was causingEric Andersen2003-02-261-1/+1
| | | | | the shared lib loader on mips to puke... -Erik
* Add a bunch of additional early debugg messages into the sharedEric Andersen2003-02-261-9/+29
| | | | | | lib loader to make it more obvious what is wrong when things puke early on in the process. -Erik
* Add a toolchain section. Mention Steven J. Hill's mips RPMs.Eric Andersen2003-02-252-88/+122
|
* Fixup some small issues that show up when large file support is disabledEric Andersen2003-02-242-0/+6
|
* Fix FP handling alignment problems on ARM platforms without an FPU,David McCullough2003-02-232-0/+4
| | | | patch from Vadim Lebedev <vadim@7chips.com>.
* Some stuff I forgot to check in about a month ago...Eric Andersen2003-02-232-27/+39
| | | | -Erik
* Reserve stack space for args we pass to __uClibc_main.Miles Bader2003-02-211-2/+3
|
* Add back in PTRACE_SINGLESTEP.Miles Bader2003-02-201-3/+7
| | | | Use decimal instead of hex to agree with common/sys/ptrace.h.
* Fixup ioctl so we can special case powerpc sillinessEric Andersen2003-02-185-22/+95
|
* Mention latest updateEric Andersen2003-02-171-3/+23
|
* Fixup buiEric Andersen2003-02-172-17/+37
|
* Patch from Stefan AlliusEric Andersen2003-02-171-1/+1
| | | | | And at last I fixed a warning in test's Makefile. (ldso was first added to the ALL_SUBDIRS variable in line 25):
* Patch from Stefan Allius:Eric Andersen2003-02-171-1/+2
| | | | | In libc/string/wstring I replaced a '#warning ..' statement by the link_warning macro.
* Patch from Stefan Allius:Eric Andersen2003-02-171-1/+1
| | | | | I patched the link_warning macro in features.h to fix warnings like: locale.c:358: warning: `__evoke_link_warning_localeconv' defined but not used
* updates to the uClinux-dist romfs and uClinux shared library targets.David McCullough2003-02-172-3/+48
|
* Use a define for the path to /etc/TZDavid McCullough2003-02-172-1/+3
|
* Using -g when doing the initfini compilation breaks the SH4 case prettyDavid McCullough2003-02-171-0/+5
| | | | | badly. I have removed -g for all platforms as I suspect no one wants it for the initfini creation process.
* If floating point was enabled, setjmp would write to memory well past theDavid McCullough2003-02-171-2/+3
| | | | end of the buffer.
* Fixup powerpc syscalls to eliminate warnings with gcc-3.2, and fixEric Andersen2003-02-164-26/+25
| | | | some other minor warnings.
* Add missing ';'s so powerpc will compileEric Andersen2003-02-151-2/+2
|
* Don't just tune, use -march which implies -mcpu as wellEric Andersen2003-02-151-3/+3
|
* Fix a _ton_ of system call user type/kernel type translationEric Andersen2003-02-153-109/+301
| | | | | problems, causing user space to get scrambled hosed up results. -Erik
* Update CVS to Debian 0.9.18-1 packageDavid Schleef2003-02-1210-107/+205
|
* Oops. Point to .18 not .17Eric Andersen2003-02-121-5/+5
|
* Move dev system commentEric Andersen2003-02-121-16/+16
|
* Update to note dev systemEric Andersen2003-02-121-10/+9
|
* Minor update regarding binutils0_9_18Eric Andersen2003-02-121-3/+3
|
* Some minor doc updatesEric Andersen2003-02-122-55/+22
|
* Remove now obsolete note about direntEric Andersen2003-02-121-4/+0
|
* update website for releaseEric Andersen2003-02-122-30/+59
|