Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | trim Experimentally off and uncommented hidden | Bernhard Reutner-Fischer | 2009-09-18 | 2 | -3/+0 |
| | | | | | | | | sed -i -e '/Experimentally off - /d' $(grep -rl "Experimentally off - " *) sed -i -e '/^\/\*[[:space:]]*libc_hidden_proto(/d' $(grep -rl "libc_hidden_proto" *) should be a nop Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | ||||
* | - improve readability, no objcode changes. | Bernhard Reutner-Fischer | 2008-10-31 | 1 | -13/+15 |
| | | | | Looks a bit like we wouldn't need to calculate the carry flag there? | ||||
* | - commentary typo fix | Bernhard Reutner-Fischer | 2008-09-15 | 3 | -3/+3 |
| | |||||
* | - trim any trailing whitespace | Bernhard Reutner-Fischer | 2008-07-23 | 3 | -4/+4 |
| | |||||
* | - fix inline keyword | Bernhard Reutner-Fischer | 2008-07-23 | 1 | -1/+1 |
| | |||||
* | Moving libc_hidden_proto's into #ifdef UCLIBC_INTERNAL block | Denis Vlasenko | 2008-05-19 | 3 | -4/+4 |
| | | | | | | | | | in string.h and strings.h. This caught unguarded string ops in libc/inet/ethers.c __ether_line_w() function. I will wait for fallout reports for a week or so, then continue converting more libc_hidden_proto's. | ||||
* | - fixup asm. No object-code changes | Bernhard Reutner-Fischer | 2008-04-24 | 1 | -1/+1 |
| | |||||
* | unify duplicated code cause i get tired of updating this stuff | Mike Frysinger | 2006-02-03 | 2 | -27/+3 |
| | |||||
* | Correct memcpy use | Peter S. Mazinger | 2006-01-23 | 1 | -1/+3 |
| | |||||
* | make DODEBUG=y happy, update sysdeps/common/* copyright | Peter S. Mazinger | 2006-01-14 | 3 | -3/+4 |
| | |||||
* | hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵ | Peter S. Mazinger | 2006-01-14 | 3 | -9/+9 |
| | | | | missing headers, other jump relocs removed | ||||
* | Use strong_alias everywhere instead of .global/.set. Correct some cases ↵ | Peter S. Mazinger | 2006-01-03 | 3 | -6/+3 |
| | | | | where the non-hidden version was used. | ||||
* | Remove TOPDIR | Peter S. Mazinger | 2005-11-21 | 1 | -3/+1 |
| | |||||
* | undef functions needed for usage within libc | Peter S. Mazinger | 2005-11-14 | 3 | -0/+4 |
| | |||||
* | Split up MSRC file, bzero left out | Peter S. Mazinger | 2005-11-11 | 5 | -230/+241 |
| | |||||
* | Remove #define _STDIO_UTILITY, can't find any use of it | Peter S. Mazinger | 2005-11-08 | 1 | -1/+0 |
| | |||||
* | Disable multi build on asm files. i386/powerpc could be used if the source ↵ | Peter S. Mazinger | 2005-11-07 | 1 | -3/+4 |
| | | | | is splitted up | ||||
* | Only because of multi sources I had to touch up these and add code duplication | Peter S. Mazinger | 2005-11-01 | 1 | -1/+4 |
| | |||||
* | Replace all Makefiles for new build infrastucture | Peter S. Mazinger | 2005-10-29 | 1 | -32/+8 |
| | |||||
* | Renamed arch specific Makefile.in to Makefile.arch, else if TARGET_ARCH does ↵ | Peter S. Mazinger | 2005-10-28 | 1 | -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. Mazinger | 2005-10-25 | 1 | -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. Mazinger | 2005-10-12 | 1 | -11/+8 |
| | | | | 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. | ||||
* | Fic gcc 4.0 compilation. Still no confimation that this works on | Joakim Tjernlund | 2005-06-21 | 1 | -30/+42 |
| | | | | gcc 4.0 but I don't want to wait anymore. | ||||
* | merge parallel build support | Mike Frysinger | 2005-01-25 | 1 | -5/+4 |
| | |||||
* | Supply '__bzero' with 'bzero' as just a weak alias (since it is not SuSv3) | Eric Andersen | 2004-03-18 | 1 | -1/+2 |
| | |||||
* | Joakim Tjernlund writes: | Eric Andersen | 2004-01-27 | 2 | -0/+244 |
Hi Erik I have had some fun trying to optimize memcpy, memset and memmove for PPC. There are only boot tested, but I don't expect any problems :) Read the comments in powerpc/string.c for more info. Patch is relative to libc/string Jocke |