summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-09-27Rev all the header files to sync things with glibc 2.2.4Eric Andersen
2001-09-25Fix fseek behavior.Manuel Novoa III
2001-09-21Fix the vfork test so it actually works this time.Eric Andersen
-Erik
2001-09-21Add in a simple vfork testEric Andersen
2001-09-15OopsEric Andersen
2001-09-15Recurse into 'file'Eric Andersen
2001-09-15Add lockfEric Andersen
2001-09-13Patch from John Tyner <jtyner@cs.ucr.edu> to avoid redefinedEric Andersen
symbols by piping results through uniq
2001-09-06Patch from Andrew Ip <aip@cwlinux.com> to add ftime,Eric Andersen
allowing openssl to be built.
2001-08-31Preevaluate some stuff so it only gets run once, speeding the compileEric Andersen
2001-08-30"Kim B. Heino" <Kim.Heino@bluegiga.com> reportsEric Andersen
In the libc/stdlib/bsd_getpt.c file you have line: memcpy (buf, _PATH_PTY, sizeof (_PATH_PTY) - 1); It really should be: memcpy (buf, _PATH_PTY, sizeof (_PATH_PTY) ); The last nul character must be copied too because the next line uses strlen() to get buf's length.
2001-08-29Wrap up some long long stuff in __UCLIBC_HAS_LONG_LONG__Eric Andersen
2001-08-29Minor updateEric Andersen
2001-08-28Fix goofy formattingEric Andersen
2001-08-28This will hopefully make global constructors and destructors workEric Andersen
2001-08-28Add "__write" as a weak alias for "write"Eric Andersen
2001-08-27elide some debug noiseEric Andersen
2001-08-27Make gdb/gcc/binutils happyEric Andersen
2001-08-24Use "stdin", "stdout", and "stderr", not "_stdin", "_stdout", andEric Andersen
"_stderr", since this is what gcc and libgcc expect... -Erik
2001-08-24Add the __fopen prototype, since I pulled it from stdio.hEric Andersen
2001-08-24Get rid of non standard macros for things that are functionsEric Andersen
2001-08-24atoi, atol, atoll, and atof are supposed to be functions, not macros.Eric Andersen
-Erik
2001-08-21Add missing shadow.hEric Andersen
2001-08-21Add byteswap.h, per glibcEric Andersen
2001-08-18Fix problem with possible redundant entries.Eric Andersen
2001-08-17Fix a silly bug with the header fileEric Andersen
2001-08-17Fix a stupid bug causing the ld-uClibc entry to be lost.Eric Andersen
2001-08-14Don't use --uclibc-use-build-dir for the tests unless BUILD_UCLIBC_LDSO=trueEric Andersen
2001-08-14powerpc doesn't have sbrk yet, so use "malloc", not "malloc-930716"Eric Andersen
2001-08-14Put a bandaid on getpgrp behaviorEric Andersen
2001-08-14Proper support for tests spannint multiple .o filesEric Andersen
-Erik
2001-08-14use some #defines internal to the ctype functions to eliminate themEric 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-14Fix the "install_target" target to install to $(PREFIX)$(TARGET_PREFIX)Eric Andersen
2001-08-13A few more (final?) cleanups for the installer behavior. I now thinkEric Andersen
things are working perfectly (perhaps I shouln't think so much)
2001-08-13Add in a make release targetEric Andersen
2001-08-13Fix SYSTEM_DEVEL_PREFIX to allow install of the <arch>-uclibc- spooferEric Andersen
toolchain to any arbitrary directory...
2001-08-13Add in TARGET_PREFIX, which was still used in a few spots (andEric Andersen
appropriately so). Leave this hidden and set to a sane default since nobody should really need to change it...
2001-08-11Use malloc on arm (since I've never bothered to write sbrk)Eric Andersen
2001-08-11I just wrote a stpncpy() since someone wanted itEric Andersen
2001-08-11I rewrote strcat without any function calls.Eric Andersen
2001-08-11Sync up ldd behaviorEric Andersen
2001-08-11Fix the library searching routine so it is way simpler, and soEric Andersen
it matches the routine in ldd.c
2001-08-11Add a cvsignore for this dirDavid Schleef
2001-08-11Change name of package to uclibc-toolchain. Various changesDavid Schleef
following the Makefile changes.
2001-08-11Need to create $(SYSTEM_DEVEL_PREFIX)/usr/binDavid Schleef
2001-08-11Begin removing some unnecessary inlining, and fix namingEric Andersen
of _dl_fprintf which should really be _dl_dprintf -Erik
2001-08-10Oops. Symlink args were backwards...Eric Andersen
2001-08-10Don't blow away existing files when trying to install a ldso symlink...Eric Andersen
2001-08-10Update 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-10Make _PATH_VARRUN actually point to /var/run.David McCullough