summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-01-11More build system cleanups...Eric Andersen
2002-01-11Oops. We lost -FPIC in the shuffle...Eric Andersen
-Erik
2002-01-11Remove the now obsolete d-link tree. Update things to copeEric Andersen
with the new naming -Erik
2002-01-11Remove old named file. Fix headers on updated one.Eric Andersen
2002-01-11Rework naming for shared lib loader to avoid potentialEric Andersen
nameing conflicts with std header files. -Erik
2002-01-11Don't use target strip on native binaryEric Andersen
2002-01-11Build glibc test apps static when told to.Eric Andersen
Make tiny live up to its name.
2002-01-11glibc test apps failed to be static when told to beEric Andersen
2002-01-11Failed to call sort before calling uniq in several spots,Eric Andersen
thereby causing ld to choke during the gcc build. -Erik
2002-01-11Cleanup makfile, use ld to avoid chicken-and-egg problems whenEric Andersen
building gcc/g++. -Erik
2002-01-11Fix indentingEric Andersen
2002-01-11Scrub the way libraries are linked. Use ld, not gcc, to avoidEric Andersen
chicken-and-egg problems when building gcc toolchains. -Erik
2002-01-10Eliminate C++ style commentsEric Andersen
2002-01-10Allow people to override the TARGET_ARCH settingEric Andersen
2002-01-09Ignore native lddEric Andersen
2002-01-09Build a native uClibc lddEric Andersen
2002-01-09Recommend making symlinks, not copying the config file.Eric Andersen
-Erik
2002-01-09Doh! I broke getmntent when I added getmntent_r! This fixes it.Eric Andersen
-Erik
2002-01-09Implement mempcpyEric Andersen
2002-01-09Fixup broken termios stuff. No, really this time.Eric Andersen
-Erik
2002-01-09Allow people to exclude regex code, since it is huge (27k)Eric Andersen
2002-01-09Rework termios wrapping code to try and do the right thing.Eric Andersen
-Erik
2002-01-09Fixup comments regarding large file support (it works these days)Eric Andersen
-Erik
2002-01-09Don't show shell fragmentsEric Andersen
2002-01-09Patch from Michael E Brown <mebrown@michaels-house.net> toEric Andersen
support setting DEVEL_PREFIX and BUILD_DIR at runtime instead of having to recompile the wrapper. Minor changes by me.
2002-01-09Patch from Stefan Soucek <ssoucek@coactive.com> to removeEric Andersen
alloca (when non-reentrant) since alloca can blow the stack pretty easily on mmu-less.
2002-01-09Fixup v850 architecture autodetection, from Miles BaderEric Andersen
<miles@lsi.nec.co.jp>
2002-01-09Be more carefull about erroring out of shell fragments. Try toEric Andersen
enable -falign-functions if avilable.
2002-01-09Fix duplicate of timezoneEric Andersen
2002-01-09Remove "-Wl,--no-undefined"Eric Andersen
2002-01-08Scrub malloc handlingEric Andersen
2002-01-07Mahe 'make clean' remove generated bits/syscall.h, asEric Andersen
noted by "Kim B. Heino" <Kim.Heino@bluegiga.com> -Erik
2002-01-06Fix stpcpy function declarationEric Andersen
2002-01-06Use public interface, not a glibc style private oneEric Andersen
-Erik
2002-01-06Support tmpfile64 (just a weak for tmpfile)Eric Andersen
-Erik
2002-01-06Fix stupid typing problemsEric Andersen
2002-01-06Fix formatting. Stub out pthread_join and pthread_exit for now.Eric Andersen
-Erik
2002-01-06Support statvfs and statfs. Added getmntent_r (and made it useEric Andersen
strtok_r instead of strtok), taught getmntent to use getmntent_r. -Erik
2002-01-04Add missing inttypes.hEric Andersen
2002-01-03Make getopt act the same regardless whether the app was staticly linkedEric Andersen
or dynamicly linked. Obeys the principle of least surprise. -Erik
2002-01-03Oops. I'd accidentally enabled a #define for __NR_get_kernel_symsEric Andersen
so turn that back off -Erik.
2002-01-03Enable several more syscalls.Eric Andersen
2002-01-02Fixes from M. R. Brown <mrbrown@0xd6.org> to fixup some littleEric Andersen
compile nits with the SH architecture, and support SH4,
2002-01-02Cope with all variants of 'gcc -dumpmachine' outputEric Andersen
2002-01-02Patch to add rcmd support, from Stefan Soucek, which I'd longEric Andersen
ago forgotten. Oops. Needed some minor scrubbing for bitrot, -Erik
2002-01-02Fix a few things I'd missed when using old (2.0.x) kernels.Eric Andersen
-Erik
2002-01-02Oops. Disable threading.Eric Andersen
-Erik
2002-01-02Sync SH header files with glibc 2.2.4, so it can actually have a chanceEric Andersen
(at least in theory) of working. -Erik
2002-01-02Once again, rework the signal handling to be even more correct. We noEric Andersen
longer segfault when running test/signal/sigchld.c, which exposed a bit of a rats nest. The problem ended up being a erroneous syscall defination, but in the process of finding that out, I scrubbed things up nicely and adapted things to use the rt_ signals if they are available. This now passes all the signal tests. -Erik
2002-01-02Take the shorcut version, which is good enough forEric Andersen
nearly all normal usage. -Erik