Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-12-12 | Add in a stub libnsl library to make stupid configure scripts | Eric Andersen | |
(i.e. openssh) do the right thing when used with uClibc's gcc wrapper (which does not currently prevent system libraries from leaking into the link). -Erik | |||
2002-12-04 | Change some variable names so we are more consistant with what | Eric Andersen | |
the linux kernel uses. -Erik | |||
2002-12-02 | Don't leak outside of the target area when installing things. | Eric Andersen | |
-Erik | |||
2002-11-23 | Use 'install' rather than 'mkdir -p' for target directories. | Eric Andersen | |
Add $(PREFIX) to avoid leaking things at install time. -Erik | |||
2002-11-22 | Ok... here's the summary: | Manuel Novoa III | |
Hopefully locale support will build when cross compiling now. Collation is still not supported, but that's what I'm currently working on. In the next couple of days, I'll probably put up a couple of files for download that will save people the trouble of generating all the glibc locales. Added *wprintf functions, although they currently don't support floating point. That will be fixed when I rewrite _dtostr... or possibly before. Added the wcsto{inttype} functions. Added iconv() and a mini iconv utility. The require locale support and only provide for conversions involving the various unicode encodings { UCS-4*, UCS-2*, UTF-32*, UTF-16*, UTF-8 }, the 8-bit codesets built with the locale data, and the internal WCHAR_T. | |||
2002-11-09 | Patch from Stefan Allius, rebuild extra/config/conf if it is missing | Eric Andersen | |
following a make clean | |||
2002-11-07 | Fixed makefiles to remove binaries generated for the configuration | "Steven J. Hill" | |
menu system when doing a 'make clean'. | |||
2002-11-03 | Use "include_config" not "include-config" | Eric Andersen | |
2002-10-31 | Ok, this commit is _huge_ and its gonna change the world. I've | Eric Andersen | |
been working on a new config system on and off for about 6 months now, but I've never been fully satisfied. Well, I'm finally am happy with the new config system, so here it is. This completely removes the old uClibc configuration system, and replaces it with an entirely new system based on LinuxKernelConf, from http://www.xs4all.nl/~zippel/lc/ As it turns out, Linus has just merged LinuxKernelConf into Linux 2.5.45, so it looks like I made the right choice. I have thus far updated only x86. I'll be updating the other architectures shortly. -Erik | |||
2002-10-28 | Define TOPDIR to be just `.' when invoking gen_bits_syscall_h.sh, since | Miles Bader | |
we've already chdir'ed to $(TOPDIR). | |||
2002-10-18 | Echo mmu-less warning where appropriate | Eric Andersen | |
2002-10-15 | (uClibc_config): Define __UCLIBC_UCLINUX_BROKEN_MUNMAP__ for MMU-less systems. | Miles Bader | |
2002-10-08 | Implemented 'romfs' target so that uClibc works with building uClinux. | "Steven J. Hill" | |
2002-10-01 | Sigh. OpenBSD used /usr/bin/{true|false} | Eric Andersen | |
2002-09-16 | * Updated for the CRIS port. | Tobias Anderberg | |
* Added variable LIBGCC which is included when linking libc.so. Arch specific linker options go into LIBGCC_CFLAGS defined in Config.<arch>. | |||
2002-09-05 | Change <bits/syscall.h> to <bits/sysnum.h>. | Miles Bader | |
2002-08-25 | Kill the HAS_LONG_LONG option. It really did not make a lot of | Eric Andersen | |
sense to exclude it, gcc always supports long long, and we never fully excluded long long anyways (off64_t for example). -Erik | |||
2002-08-22 | Hide .hidden stuff unless explicitly enabled | Eric Andersen | |
-Erik | |||
2002-08-16 | Remove h8300 special case | Eric Andersen | |
2002-08-16 | (headers): Remove special case for v850, now that the general case | Miles Bader | |
works correctly for non-MMU systems without a `nommu' suffix. Fixup indentation a bit. | |||
2002-08-15 | Do not prevent people from making mmu-less builds on mmu-full systems. | Eric Andersen | |
-Erik | |||
2002-08-08 | Remove unified syscall support (it should just be a per-arch | Eric Andersen | |
decision, with syscalls.h adjusted to match). Add symlinks to make tools like mklibs.py be happy. -Erik | |||
2002-07-31 | Sigh. A bit more cleanup. | Eric Andersen | |
2002-07-31 | You fool foolish. Goodbye level 2. | Eric Andersen | |
2002-07-31 | Always build utils by default | Eric Andersen | |
-Erik | |||
2002-07-26 | Ok, I get it. sjhill kept adding the 'find' command since | Eric Andersen | |
include/sgidefs.h wasn't getting scrubbed. Fix it so this symlink gets properly scrubbed, even for mipsel. -Erik | |||
2002-07-26 | Kill ill advised find command that was not doing anything | Eric Andersen | |
productive, but did annoying things instead. -Erik | |||
2002-07-25 | Addition to 'distclean' for little endian MIPS. | "Steven J. Hill" | |
2002-07-24 | This rule is only necessary for little endian MIPS. | "Steven J. Hill" | |
2002-07-02 | Disable ldconfig.target for now | Eric Andersen | |
-Erik | |||
2002-07-02 | Change the default structure of the installed toolchain | Eric Andersen | |
-Erik | |||
2002-06-23 | Fixup target util handling | Eric Andersen | |
-Erik | |||
2002-05-30 | Fix dependancy. again. | Eric Andersen | |
2002-05-30 | Fix dependancy for util target | Eric Andersen | |
-Erik | |||
2002-05-29 | Now that was silly | Eric Andersen | |
2002-05-28 | Fixup and unifiy version numbering. Automate versioning updates. | Eric Andersen | |
Propagate fixes across makefiles. -Erik | |||
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-05-02 | Ensure that make clean really cleans up after itself | Eric Andersen | |
2002-04-24 | Don't use $(PWD), use $(shell pwd) instead | Eric Andersen | |
2002-04-11 | Added a dummy romfs target so this stuff slots nicely into the | David McCullough | |
uClinux distro. | |||
2002-04-03 | Remove gratuitous symlink trashing | Eric Andersen | |
2002-04-02 | Steven J. Hill's latest mips dynamic loader updates | Eric Andersen | |
2002-03-25 | Patch from Steven J. Hill to fix pthreads on mips | Eric Andersen | |
2002-03-22 | Patch from Miles Bader to be less militant when doing a make clean. | Eric Andersen | |
2002-03-21 | Add some phony targets | Eric Andersen | |
2002-03-21 | Always build the utils. Always clean libc/misc, since there is | Eric Andersen | |
some auto generated stuff in there -Erik | |||
2002-03-11 | Allow some failures to simplify building gcc | Eric Andersen | |
2002-03-11 | Don't install CVS files into the devel dir | Eric Andersen | |
2002-03-01 | Move syscall.h generation to the top level Makefile | Eric Andersen | |
-Erik | |||
2002-03-01 | Doh! A search and replace bug... | Eric Andersen | |