summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-12-20Update the docs and websiteEric Andersen
2001-12-20Add the website into CVSEric Andersen
2001-12-20Ignore tmp dirEric Andersen
2001-12-20Fixup autogeneration of bits/syscalls.hEric Andersen
2001-12-20Use tar instead of cp -LR for make install, since older GNU cpEric Andersen
(i.e. RedHat 6.2) don't support -LR -Erik
2001-12-20Steven Carr noticed that uClibc's inet_aton() is stricter then inEric Andersen
glibc, since no trailing blanks was permitted, such that inet_aton("192.168.1.1 ",&value); would work with glibc, and fail with uClibc. This brings uClibc's inet_aton() behavior into sync with glibc's behavior. -Erik
2001-12-20Oops. I accidentally commited some experimental test codeEric Andersen
(which was broken) yesterday. Revert that bit. -Erik
2001-12-19Update my email address. I am no longer andersen@lineo.comEric Andersen
2001-12-19Use the asm version by default on x86. Tag _start as a function.Eric Andersen
2001-12-19Add basename and dirname. Write memrchr.Eric Andersen
-Erik
2001-12-19merged the two startup files so that uClinux people always get the correctDavid McCullough
arg processing whether they are using PIC or not, and vice-versa for the MMU folks.
2001-12-07patch from Jari Korva <jpkorva@iki.fi>:Eric Andersen
- fixes endianness bug in gethostbyaddr() (i386 worked fine, while m68k didn't: 192.168.160.162 was queried with 192.168.160.162.in-addr.arpa while it should have been 162.160.168.192.ip-addr.arpa) - contains missing pieces from my previous getnameinfo() patch: now it actually compiles!
2001-12-05Add in an ARCH_CFLAGS placeholder so scripts can mod it.David McCullough
2001-12-05Hack the 68000 last ditch abort to work for all 68000 targets.David McCullough
2001-11-30Update TODO list a bitEric Andersen
2001-11-30Add support for mmu-full m68k systems, such as oldworld macs.Eric Andersen
-Erik
2001-11-30Always use --uclibc-use-build-dirEric Andersen
2001-11-29Add include/sys/reg.h to make gdbserver happyEric Andersen
2001-11-26update my listDavid Schleef
2001-11-26Removed TARGET_CFLAGS definition, since it was moved to toplevel Rules.makDavid Schleef
2001-11-26Fix TARGET_CFLAGS to include -fPIC when needed. Libs were beingDavid Schleef
compiled without -fPIC.
2001-11-26libhowdy.so needs to be compiled with -fPICDavid Schleef
2001-11-26Fix: libuclibc-dev should depend on libuclibc0. Elaborated descriptions.David Schleef
2001-11-26Disable ldso directory if DODYNAMIC isn't true, in addition to HAVE_SHAREDDavid Schleef
2001-11-26Rewrite vfork() as C, should now work. Changed longjmp.S and setjmp.SDavid Schleef
to use GCC's internal ppc-asm.h, and added macro to disable FP save/ restore in longjmp and setjmp. Fixed name of _setjmp() (was __setjmp). Fixed _setjmp to be PIC.
2001-11-26Fix buggy R_PPC_RELATIVE relocation. Symptom was that stringsDavid Schleef
internal to a library were not relocated correctly, specifically sys_errlist[].
2001-11-26Remove unused fileDavid Schleef
2001-11-26Fix calculation of PLT entry index. Caused segfaults on second callDavid Schleef
of a lib function.
2001-11-26Fix dependenciesDavid Schleef
2001-11-26My adjusted 'make install' was missing include/linux subdirs. TryEric Andersen
just using 'cp -a' and see if anyone complains and makes me use tar or something. Check libm for undefined non-libc symbols.
2001-11-26strsignal() is a GNU extensionDavid Schleef
2001-11-24Sync regex with glibc 2.2.4. I need to add an option to selectEric Andersen
a minamalist replacement. Coming soon... -Erik
2001-11-24Move the FAQ. Add a docs dir. Add in a report on thread support.Eric Andersen
-Erik
2001-11-24Use consistant pathsEric Andersen
2001-11-24Oops...Eric Andersen
2001-11-24Much faster version of 'make install' -- it was doing oneEric Andersen
fork per header file... Ugh. -Erik
2001-11-24Wrap uClinux specific stuff, so this will run onEric Andersen
macs and such that have an MMU -Erik
2001-11-24OopsEric Andersen
2001-11-24Work around broken m68k kernel headers... Grumble.Eric Andersen
2001-11-24Silly us. Don't try to free alloca'd memory.Eric Andersen
-Erik
2001-11-24Fix naming so things will actually workEric Andersen
-Erik
2001-11-24Fix path problem,Eric Andersen
2001-11-24OopsEric Andersen
2001-11-24Move powerpc specific optimizations (courtesy of apple) to powerpcEric Andersen
subdir. Put together a theoretical framework for adding arch specific optimizations. Havn't tried this yet but it looks correct... -Erik
2001-11-23MDAD: The "Config" file message, should say copy to "Config" not "Config.".Michael Durrant
MDAD: Can be confusing to newbies.
2001-11-23I just spent a bit of time writing up a FAQ...Eric Andersen
-Erik
2001-11-23Add this so madplay will properly configure itself using ossEric Andersen
as a default output device. -Erik
2001-11-23Finish ajusting math lib options. Close out a couple of todo items.Eric Andersen
2001-11-23Adjust configs for updated math libEric Andersen
2001-11-23Default to building C89 math stuff only. Cleanup some warnings.Eric Andersen
-Erik