summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* gdb wants to dlopen "libthread_db.so.1", so be sure to assignEric Andersen2003-10-311-1/+1
| | | | the correct soname
* properly deal with soft-float when profiling as wellEric Andersen2003-10-254-0/+12
|
* Add -msoft-float to SAFECFLAGS when necessary.Manuel Novoa III2003-10-251-0/+3
|
* Sigh. It seems some stupid programs expect this...Eric Andersen2003-10-241-0/+1
|
* Disable optimizations with debuggingEric Andersen2003-10-241-2/+2
|
* better tuning for xscale that copes with generally available toolchainsEric Andersen2003-10-241-2/+2
|
* Peter Kjellerstedt writes:Eric Andersen2003-10-231-68/+65
| | | | | | | | | | | | | | | The attached patch performs a clean up of extra/gcc-uClibc/gcc-uClibc.c: * Use NULL for pointers and '\0' for characters; not the opposite... * Fixed an (assumed) segv if --uclibc-cc was used. * Skip the argument to -x so it isn't considered to be a source file. * Simplified the loop in xstrcat(). * A little white space clean up. //Peter
* Peter S. Mazinger pointed out that I missed a spot. I shouldEric Andersen2003-10-221-1/+3
| | | | stop applying patches by hand...
* Per suggestion and patch from Ken Staton, emulates poll usingEric Andersen2003-10-222-1/+196
| | | | select for older 2.0 kernels where poll is missing.
* Atsushi Nemoto writes:Eric Andersen2003-10-221-0/+2
| | | | | uClibc's libm has isinf/isinff, isnan/isnanf but not finite/finitef. Here is a patch.
* It seems we need to also define SI_LOAD_SHIFT since that wasEric Andersen2003-10-221-0/+1
| | | | also exported by the Linux kernel.h header that we do not include.
* Those crazy binutils folks changed their abi. Add this so olderEric Andersen2003-10-211-0/+5
| | | | apps can cope gracefully.
* Doh! In include/bits/uClibc_config.h when we define things, we appropriatelyEric Andersen2003-10-211-1/+1
| | | | | | | | | | | | | | | | | | | prepend "__". Unfortunately, when we #undef things, we do not prepend the "__". This results in collateral damage to unsuspecting applications as we undefine random unrelated macros. Oops. For example, when compiling xfree86, libGLcore.a defines MALLOC for its own usage. But include/bits/uClibc_config.h then does an #undef MALLOC #define __MALLOC_930716__ 1 which inadvertantly trashes the define from libGLcore.... Ouch. The autogenerated include/bits/uClibc_config.h should instead have contained: #undef __MALLOC__ #define __MALLOC_930716__ 1 This patch makes that happen.
* Fix a stupid bug that caused uClibc to never provide the correctEric Andersen2003-10-202-1/+2
| | | | | | fpu_control.h header file, since the correct arch specific one was always later overwritten by the generic one. oops. -Erik
* Patch from Peter S. Mazinger:Eric Andersen2003-10-201-1/+1
| | | | patch to allow building uClibc with busybox's chmod
* Merge some newer/updated bits from the glibc elf.hEric Andersen2003-10-201-106/+226
|
* We were failing to properly set h_errno on success, which couldEric Andersen2003-10-191-0/+3
| | | | | | | cause gethostbyaddr_r to keep looping allocating more and more memory each time till alloca finally caused a segfault. Ugh. This fixes that as well... -Erik
* more install changesEric Andersen2003-10-181-19/+19
|
* Do not install the uClibc wrapper toolchain by default. MakeEric Andersen2003-10-181-1/+1
| | | | people ask for it explicitly.
* the runtime should not install a /bin dirEric Andersen2003-10-181-1/+0
|
* Add a new RUNTIME_PREFIXEric Andersen2003-10-182-16/+19
|
* Peter Kjellerstedt writes:Eric Andersen2003-10-1825-83/+69
| | | | | | | | | | ln.patch: * Define $(LN) as ln in Rules.mak. * Change all occurrences of ln into $(LN). * Change all constructs like (cd path && ln -sf foo/file file) into $(LN) -sf foo/file path/file. The latter construct is already used in a number of places so it should not be an additional compatibility problem.
* Peter Kjellerstedt writes:Eric Andersen2003-10-1896-194/+188
| | | | | | | rm.patch: * Define $(RM) as rm -f in Rules.mak and test/Rules.mak (this is the same definition as gmake uses by default). * Change all occurrences of rm and rm -f into $(RM).
* Peter Kjellerstedt writes:Eric Andersen2003-10-1814-95/+97
| | | | | | | | | install.patch: * Define $(INSTALL) as install in Rules.mak. * Change all occurrences of install into $(INSTALL). * Change all occurrences of mkdir -p into $(INSTALL) -d. install -d is already used in a number of places so this should not be an additional compatibility problem.
* Implement putgrent to make Peter S. Mazing happyEric Andersen2003-10-182-1/+57
|
* Doh!!!Eric Andersen2003-10-171-1/+1
|
* Point people to the kernel.org mirrors for downloading the devEric Andersen2003-10-173-30/+31
| | | | systems to take some load off my server
* Do not set errno when they asked for size 0Eric Andersen2003-10-161-1/+1
|
* Code formatting cleanup.Miles Bader2003-10-161-5/+6
|
* Don't set errno if for zero SIZE returns.Miles Bader2003-10-161-11/+14
| | | | Code formatting cleanup.
* More detail on the use of MALLOC_DEBUGEric Andersen2003-10-161-4/+12
|
* Updated cris configuration; added support for %m.Tobias Anderberg2003-10-151-1/+1
|
* Brett Nash writes:Eric Andersen2003-10-151-1/+12
| | | | | | | | | | | | | | | Hello, Attached is a patch of some changes I made to the gcc wrapper to get it to compile XFree CVS. Basically it supports the use of '-' on the command line to read stdin for gcc, as well as setting the file type back to none before adding the last too .o files if the file type was set on the command line. It is applied against uClibc-0.9.20 Regards, nash
* Patch from Tony J. White:Eric Andersen2003-10-152-1/+313
| | | | | | I've created a patch for adding dn_expand() to uClibc 0.9.21. dn_expand() is used by at least ipsec-tools and also openldap I think.
* Doh! I was returning with an incorrect pointer type when dlopeningEric Andersen2003-10-152-14/+14
| | | | | | already loaded libs, which unsurprisingly would cause dlsym() to not work at all... -Erik
* Microblaze port from the uClinux-dist,David McCullough2003-10-1425-0/+1312
| | | | contributed by John Williams <jwilliams@itee.uq.edu.au>
* Enable full debug support for ld-uClibc and libdlEric Andersen2003-10-142-0/+18
|
* sigh. the warn funcs seem to be broken. Use local versionsEric Andersen2003-10-131-17/+71
| | | | till I can straighten that out.
* Patch from Peter Kjellerstedt:Eric Andersen2003-10-131-39/+37
| | | | | | | | | | | | The attached patch performs a clean up of extra/gcc-uClibc/Makefile: * Better dependencies to only rebuild what is necessary. * Use $< and $@ where appropriate. * Suppress warning messages from which about commands that cannot be found. //Peter
* Fix an ldd bug, more ldconfig cleanupEric Andersen2003-10-132-264/+287
|
* Always build and install ldconfigEric Andersen2003-10-126-102/+90
|
* Don't make two copiesEric Andersen2003-10-122-34/+40
|
* Sigh. It seems that csh wants glob_pattern_p(), we need toEric Andersen2003-10-121-5/+3
| | | | export it,
* I forgot to remove thisEric Andersen2003-10-111-98/+0
|
* These are wanted by net-toolsEric Andersen2003-10-112-0/+223
|
* We do not provide gmtime(), so disable the prototype toEric Andersen2003-10-101-0/+2
| | | | prevent confusing autoconf
* Remove some stuff that is now doneEric Andersen2003-10-102-4/+3
|
* Implement getgrgid_r and getgrnam_r. Rework group handling code to be fullyEric Andersen2003-10-1025-671/+738
| | | | reentrant, since there was still a shared static value. indent stuff,
* Patch from Rob McMullen:Eric Andersen2003-10-091-0/+74
| | | | | | | | Here's a patch... Since they aren't SUSv3 functions, I don't know if they'll ever get officially added, but it helps with BSD porting and allows quite a few Gentoo ebuilds to compile without changing anything. Rob
* move the test for loading the wrong C library into theEric Andersen2003-10-092-32/+52
| | | | _dl_check_if_named_library_is_loaded function