Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-08-17 | Fix a stupid bug causing the ld-uClibc entry to be lost. | Eric Andersen | |
2001-08-14 | Don't use --uclibc-use-build-dir for the tests unless BUILD_UCLIBC_LDSO=true | Eric Andersen | |
2001-08-14 | powerpc doesn't have sbrk yet, so use "malloc", not "malloc-930716" | Eric Andersen | |
2001-08-14 | Put a bandaid on getpgrp behavior | Eric Andersen | |
2001-08-14 | Proper support for tests spannint multiple .o files | Eric Andersen | |
-Erik | |||
2001-08-14 | use some #defines internal to the ctype functions to eliminate them | Eric Andersen | |
calling other tiny ctype functions. Now all ctype funcs will end up with no extern references, which ends up shrinking both the uClibc shared lib and shrinking client code. -Erik | |||
2001-08-14 | Fix the "install_target" target to install to $(PREFIX)$(TARGET_PREFIX) | Eric Andersen | |
2001-08-13 | A few more (final?) cleanups for the installer behavior. I now think | Eric Andersen | |
things are working perfectly (perhaps I shouln't think so much) | |||
2001-08-13 | Add in a make release target | Eric Andersen | |
2001-08-13 | Fix SYSTEM_DEVEL_PREFIX to allow install of the <arch>-uclibc- spoofer | Eric Andersen | |
toolchain to any arbitrary directory... | |||
2001-08-13 | Add in TARGET_PREFIX, which was still used in a few spots (and | Eric Andersen | |
appropriately so). Leave this hidden and set to a sane default since nobody should really need to change it... | |||
2001-08-11 | Use malloc on arm (since I've never bothered to write sbrk) | Eric Andersen | |
2001-08-11 | I just wrote a stpncpy() since someone wanted it | Eric Andersen | |
2001-08-11 | I rewrote strcat without any function calls. | Eric Andersen | |
2001-08-11 | Sync up ldd behavior | Eric Andersen | |
2001-08-11 | Fix the library searching routine so it is way simpler, and so | Eric Andersen | |
it matches the routine in ldd.c | |||
2001-08-11 | Add a cvsignore for this dir | David Schleef | |
2001-08-11 | Change name of package to uclibc-toolchain. Various changes | David Schleef | |
following the Makefile changes. | |||
2001-08-11 | Need to create $(SYSTEM_DEVEL_PREFIX)/usr/bin | David Schleef | |
2001-08-11 | Begin removing some unnecessary inlining, and fix naming | Eric Andersen | |
of _dl_fprintf which should really be _dl_dprintf -Erik | |||
2001-08-10 | Oops. Symlink args were backwards... | Eric Andersen | |
2001-08-10 | Don't blow away existing files when trying to install a ldso symlink... | Eric Andersen | |
2001-08-10 | Update the build system, yet again. I hope this is the last time... | Eric Andersen | |
Here is the basic theory of operation: SHARED_LIB_LOADER_PATH/ <The location where the shared lib loader will be installed and where the compiler will cause apps to look for it.> DEVEL_PREFIX/ bin/ <contains gcc, ld, etc for setting PATH=$DEVEL_PREFIX/bin:$PATH> lib/ <contains all runtime and static libs> include/ <Where all the header files go> SYSTEM_DEVEL_PREFIX/ usr/bin/ <contains arch-uclibc-gcc, arch-uclibc-ld, etc that might be installed by a .deb or .rpm into /usr/bin, but can happily live under DEVEL_PREFIX> PREFIX This is prepended during 'make install's allowing you to shift things to be installed under some alternate location (such as when building a .deb) -Erik | |||
2001-08-10 | Make _PATH_VARRUN actually point to /var/run. | David McCullough | |
2001-08-09 | Fix behavior when installing the devel env, since somewhere | Eric Andersen | |
along the line this got messed up... | |||
2001-08-09 | Add cmsg_nxthdr function for the cases where the headers | David McCullough | |
do not so it inline. | |||
2001-08-09 | Add in changes from philipc@lineo: | David McCullough | |
Fix three bugs and bring into line with glibc: 1. The first character read using getc() was being ignored if it was EOF. Normally this is okay because the next getc() returns EOF as well, but for sscanf, this was causing us to skip the null terminator and start scanning whatever happened to be next in memory. 2. %s, %c, and %[ formats now return -1 if EOF is reached before any characters are read, instead of 0. This was causing an infinite loop in diald. 3. Default to base 10 for %i fields if not prefix modifier present. | |||
2001-08-09 | Add hstrerror, it just points to strerror like h_errno. | David McCullough | |
2001-08-09 | Added sigset_t casts so we behave like the other platforms. | David McCullough | |
2001-08-09 | Fix a couple of warnings | David McCullough | |
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-08-09 | Changed uclibc-gcc to uclibc-toolchain. Added fixups for changes | David Schleef | |
in the Makefiles. | |||
2001-08-08 | This syncs things up with my local tree. Mainly changes installer | Eric Andersen | |
issues, and syns things (as far as I am willing) with Dave Schleef's tree. We may need to go another round or so, but we do seem to be converging... | |||
2001-08-06 | Try search for the shared lib interpreter. Eliminate all double "//"s | Eric Andersen | |
from the output -Erik | |||
2001-08-06 | If /etc/ld.so.preload was size 0, the shared lib loader would | Eric Andersen | |
choke and die. Test for non-zero size as well, -Erik | |||
2001-08-06 | Fixup the pipe system call for the SH target. | David McCullough | |
The FD's are returned in registers. | |||
2001-07-28 | Oops... left in a debugging line. | Manuel Novoa III | |
2001-07-28 | Back out the changes to _uClibc_fread and loop in fread() if incomplete, to | Manuel Novoa III | |
avoid problems with fgets on tty streams. I actually did some testing this time. ;-) Note: there is a difference in behavior between glibc and uClibc here regarding fread() on a tty stream. glibc's fread() seems to return after reading all _available_ data even if not at end-of-file, while uClibc's fread() continues reading until all requested or eof or error. The latter behavior seems correct w.r.t. the standards. | |||
2001-07-26 | Yes... the previous "fix" was broken too... the result of careless cutting | Manuel Novoa III | |
and pasting while pressed for time. I haven't checked this one either. :-( | |||
2001-07-25 | Ok... the fix wasn't quite so straightforward. Hopefully this will do it. | Manuel Novoa III | |
2001-07-25 | Fix fread bug reported by Vodz. The fix is straightforward, but I haven't | Manuel Novoa III | |
tested it (lack of time). | |||
2001-07-25 | Fix small typo vodz reported. | Manuel Novoa III | |
2001-07-18 | Fix the /lib link | David Schleef | |
2001-07-17 | Better generation of control, fix up DESTDIR | David Schleef | |
2001-07-17 | Fix typo. | David Schleef | |
2001-07-17 | Changes to build cross-compiling libraries | David Schleef | |
2001-07-17 | Better rule for locating dynamic linker | David Schleef | |
2001-07-17 | search_for_named_library forgot to wipe the target string, so each time | Eric Andersen | |
around the loop it was getting bigger... | |||
2001-07-17 | Elimintate spurious trailing / | Eric Andersen | |
2001-07-17 | Turn off USE_CACHE by default (so ldconfig, by default, isn't | Eric Andersen | |
needed). Fix a stupid typo in dlib.c where I had several weak symbols set up backwards, breaking libdl (dlopen and friends), -Erik |