summaryrefslogtreecommitdiffstats
path: root/libc/string/generic
Commit message (Collapse)AuthorAgeFilesLines
* make gcc4 happy w/ hidden_def/proto, correct some typosPeter S. Mazinger2006-01-151-1/+1
|
* make DODEBUG=y happy, update sysdeps/common/* copyrightPeter S. Mazinger2006-01-1425-26/+34
|
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-1425-95/+122
| | | | missing headers, other jump relocs removed
* Use strong_alias everywhere instead of .global/.set. Correct some cases ↵Peter S. Mazinger2006-01-0325-89/+34
| | | | where the non-hidden version was used.
* Use hidden_strong_alias for alias(__x,__y), do not use recursive aliasesPeter S. Mazinger2005-12-081-2/+2
|
* Correct syntax now...Peter S. Mazinger2005-12-061-4/+1
|
* More hiding, including __mempcpyPeter S. Mazinger2005-12-031-1/+1
|
* No, '__mempcpy' is used by user-space applications, like coreutils for ↵"Steven J. Hill"2005-12-021-1/+1
| | | | example and glibc still has '__mempcpy' as a global symbol. How about this, do a complete buildroot file system after hacking uClibc to make sure things work? There's a novel idea.
* Hide mostly used functionsPeter S. Mazinger2005-12-016-12/+9
|
* Hiding againPeter S. Mazinger2005-11-291-1/+1
|
* Hide some of mem* and str*Peter S. Mazinger2005-11-273-0/+8
|
* Unhide __mempcpy, provide __libc_mempcpy for internal usePeter S. Mazinger2005-11-261-2/+3
|
* Remove TOPDIRPeter S. Mazinger2005-11-211-3/+1
|
* Correct Warning: function declaration isn't a prototypePeter S. Mazinger2005-11-158-26/+8
|
* Move to use attribute_hiddenPeter S. Mazinger2005-11-1425-69/+83
|
* Enable IMA on libc/string/genericPeter S. Mazinger2005-11-031-7/+3
|
* Replace all Makefiles for new build infrastucturePeter S. Mazinger2005-10-291-33/+8
|
* Renamed arch specific Makefile.in to Makefile.arch, else if TARGET_ARCH does ↵Peter S. Mazinger2005-10-281-1/+0
| | | | not exist, we reinclude the including Makefile. Moved arch/common fpu_control.h link creation into main Makefile.in. Updated the link creation script to remove all the other Makefiles
* All Makefile.in's. Only arm/i386/mips/powerpc/x86_64 are done, the other ↵Peter S. Mazinger2005-10-251-0/+34
| | | | archs lack proper crt1. The Makefiles in extra/scripts are intended to be linked into each dir, where it is necessary to build locally.
* Rewrote almost all Makefiles: do not use strip $(x),y; run strip on all ↵Peter S. Mazinger2005-10-121-12/+6
| | | | objects at once; use :=//$</$^; use CRT_SRC/CRT_OBJ/SCRT_OBJ/CSRC/COBJ/SSRC/SOBJ/MSRC/MOBJ where no more is needed, if only CSRC is present use OBJS directly instead of COBJ; CTOR_TARGETS are created directly in lib; remove unused/unneeded parts. Hope I haven't broken too much.
* weaks moved after the related function so gcc4 won't warnPeter S. Mazinger2005-09-221-4/+4
|
* merge parallel build supportMike Frysinger2005-01-251-6/+4
|
* Add a couple of mips-specific string funcs.Manuel Novoa III2004-09-0229-0/+3377
Port the generic optimized string funcs from glibc, with some tweaks to cut their size a little. The main change is making memmove call memcpy for forward copying to trim redundant code. Make use of both the generic and arch-specific speed-optimized string funcs configurable. Arch-specific take precedence over generic, and generic takes precedence over basic size-optimized uClibc funcs.