Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-08-19 | Add a .note section to make gdb happy | Eric Andersen | |
2002-08-19 | Call the pthread setup junk early if possible. | Eric Andersen | |
2002-08-08 | Shuffle things around a bit. Looks a little cleaner. | Eric Andersen | |
-Erik | |||
2002-06-20 | Cleanup the function pointer comparisions | Eric Andersen | |
-Erik | |||
2002-06-18 | Some commentary | Eric Andersen | |
-Erik | |||
2002-06-17 | Ah kant spel mi name | Eric Andersen | |
2002-05-06 | New locale support (in development). Supports LC_CTYPE, LC_NUMERIC, | Manuel Novoa III | |
LC_TIME, LC_MONETARY, and LC_MESSAGES for the SUSv3 items. Also, nl_langinfo() when real locale support is enabled. New implementation of ctype.h. New implementation of wctype.h. New implementation of most of the string functions (smaller). New implementation of the wcs/wmem functions. These are untested, but they're also just preprocessor-modified versions ot the corresponding str/mem functions. Tweaked qsort and new bsearch. Stuff still pending: stdlib.h and wchar.h mb<->wc functions. I actually have working versions of the stdlib ones, but the reentrant versions from wchar.h require some reworking. Basic replacement and translit support for wc->mb conversions. (groundwork laid). Simple-minded collate support such as was provided by the previous locale implementation. (mostly done -- 8-bit codesets only) Shared mmaping of the locale data and strerror message text. | |||
2002-04-17 | Patch from Martin Proulx to not do ELFish things when not ELF. | Eric Andersen | |
2002-04-17 | Patch from Martin Proulx to remove weak_aliases for non ELF compilers in | Eric Andersen | |
__uClibc_main for the _stdio_init and _stdio_term functions. Since weak_aliases are defined as hard aliases for non ELF compilers, these 2 symbols ended up to be multiply defined, as those two are defined in stdio.c. | |||
2002-04-01 | Remove function declartions from include/features.h, create | Eric Andersen | |
a separate header file for those, and fixup references. -Erik | |||
2002-04-01 | Patches from Yoshinori Sato <qzb04471@nifty.ne.jp> to fix h8300 | Eric Andersen | |
support for pthreads and update for the latest and greatest. | |||
2002-03-31 | Rework __gen_tempname() to better match glibc, and add mkstemp64(), | Eric Andersen | |
which is needed for busybox ash when using largefile support. -Erik | |||
2002-03-15 | Fix non-elf support (in theory). Revert misguided change suggested | Eric Andersen | |
by arcturusnetworks, since Miles Bader reports it is unnecessary. -Erik | |||
2002-03-14 | Don't call null ctors/dtors. | Eric Andersen | |
-Erik | |||
2002-03-14 | This should be the last piece needed to make constructors work (using | Eric Andersen | |
a native gcc toolchain). The gcc wrapper still needs some touchups, but we seem to be _there_. Also some touchups to try and shrink uclinux binary sized by stubbing out unneeded stuff. -Erik | |||
2002-03-12 | Swap in the new stdio code. | Manuel Novoa III | |
2002-02-26 | Proper support for setting h_errno | Eric Andersen | |
2002-02-25 | Try this version instead... | Eric Andersen | |
2002-02-21 | Miles Bader noticed that I'd messed up by always pulling | Eric Andersen | |
errno in, regardless of whether it is being used... -Erik | |||
2002-02-20 | This is a bit less messy | Eric Andersen | |
2002-02-20 | Merge in the pthread library. This is the linuxthreads library taken from | Eric Andersen | |
glibc 2.1.3 and ported to work with uClibc by Stefan Soucek and Erik Andersen (me). Stefan has hacked things up such that linuxthreads runs on MMU-less systems (tested only on arm-nommu). Erik cleaned things up and made it work properly as a shared library. -Erik | |||
2002-02-18 | Rename __stdio_close_all to __stdio_flush_buffers. Eliminate an | Eric Andersen | |
unnecessary variable | |||
2002-02-18 | Make shared libs properly list the correct ld.so in the interp | Eric Andersen | |
field by being sneaky. | |||
2002-02-18 | Support strong_alias and begin merging usage of weak_function | Eric Andersen | |
2002-02-02 | Add in support for the Hitach H8/300H architecture, | Eric Andersen | |
contributed by Yoshinori Sato <qzb04471@nifty.ne.jp> | |||
2001-12-19 | Update my email address. I am no longer andersen@lineo.com | Eric Andersen | |
2001-10-11 | Patch from Miles Bader <miles@lsi.nec.co.jp> to support the v850. | Eric Andersen | |
He sent this patch to me a month ago, but I forgot to apply it... | |||
2001-08-09 | Make sure the weak aliases are defined before the functions/vars | David McCullough | |
they use as stubs, otherwise, some compilers (ie., m68k-elf) tie them to the local symbols and the weak aliases do not work. | |||
2001-07-01 | These zero-length files apparently weren't deleted from cvs. | Manuel Novoa III | |
2001-06-12 | Cleanup the toploevel makefile handing of shared libs. Add weak_alias | Eric Andersen | |
define, and set things up so nasty old coff toolchains can now compile things and should actually work again. -Erik | |||
2001-05-28 | Make selection of uClibc floating point support in printf, etc. seperate | Manuel Novoa III | |
from libm float function support. Also, move all Config files out of the main directory. | |||
2001-05-12 | Ok, this should finish off my massive ro-organization. The source | Eric Andersen | |
tree is less messy now (which helps), all libraries are placed into uClibc/lib when compiling, all libraries now use a consistant mechanism for being built, all libraries use a consistant naming scheme where the lib name includes the uClibc version number, which makes ldconfig happy and willing to work with us. -Erik | |||
2001-04-18 | Update temp file handling and use a single function to do all | Eric Andersen | |
the heavy lifting (most of the heavy lifting stolen from glibc, but reduced a bit). | |||
2001-04-06 | Fix include/errno.h to not use kernel header, and instead use bits/errno.h. | Eric Andersen | |
This required we use _LIBC instead of __LIBC__ to be consistent with glibc. This had some sideffects in sys/syscalls.h. While fixing things, I made everything use __set_errno() for (eventual) thread support. -Erik | |||
2001-02-27 | stdio mostly rewritten... passes lots of tests now. | Manuel Novoa III | |
printf now supports long double, plus some bug fixes. | |||
2001-02-27 | For some reason the fancy attribute tags were not working on m68k so | David McCullough | |
I followed environ example which uses asm and it seemed to fix the problem nicely. It should be ok on i386. Could some check it please :-) | |||
2001-02-19 | Make sure errno is 0 before we call main (may have been set while initializing). | Manuel Novoa III | |
2001-02-19 | Create __uClibc_main to handle what can be done in C instead of each arch's | Manuel Novoa III | |
respective crt0.S. crt0.S should now only be responsible for setting things up to call __uClibc_main(argc, argv, envp), which will do any other necessary setup (setting global __environ, stdio init, etc), call main, and exit. This should ease both maintainance and porting. | |||
2001-01-30 | Added some notes. Removed some dead code. | Manuel Novoa III | |
2001-01-30 | Fix a couple of bugs in printf. Add floating pt output for doubles. Yeah! | Manuel Novoa III | |
Modified stdio/Makefile to build printf.c according to Config values for HAS_FLOATS and HAS_LONG_LONG. | |||
2001-01-25 | Clean up atexit.c; make sure sysconf and atexit agree; link in ref'd libgcc.a | Manuel Novoa III | |
objects with shared uClibc; allow disabling long long support. | |||
2001-01-11 | A large update from Manuel Novoa III <mnovoa3@bellsouth.net>. | Eric Andersen | |
2001-01-02 | Patch from James Graves <jgraves@deltamobile.com> to get | Eric Andersen | |
m68k started. Should be just sysdeps/linux/m68k left to hack at this point... | |||
2000-12-20 | A number of updates from Manuel Novoa III. Things look good... | Eric Andersen | |
2000-11-04 | Fix doc blunder. | Eric Andersen | |
2000-11-04 | Make spelling of uClibc be consistant. | Eric Andersen | |
2000-10-20 | Strip all object files of all non global symbols and .note and | Eric Andersen | |
.comment, saving a lot of space in the resultant binaries... -Erik | |||
2000-10-12 | Makefile update | Eric Andersen | |
2000-10-11 | Finish reorganizing things. At least I think I've finished. | Eric Andersen | |