summaryrefslogtreecommitdiffstats
path: root/libc/string/sparc
Commit message (Collapse)AuthorAgeFilesLines
* Remove the rest of "bounded pointers" scaffolding. gcc website says"Denis Vlasenko2008-12-132-4/+0
| | | | | | "Bounds Checking Projects... This project has been abandoned" for four years at least.
* Blue Swirl writes:Mike Frysinger2007-09-159-9/+9
| | | | | | | | | | | | | | | | | | | | I got the library to compile with the attached patches, though dynamic loader crashes early. In buildroot I changed the architecture name by hand from sparc to sparc64, otherwise the compiler produced 32-bit files with V9 (64-bit) instructions. This configuration is not supported by QEMU, so I aimed for pure 64-bit. I think Sparc64 option needs to be added to buildroot. The _Qp_ ops seem to be required by the ABI. This and setjmp patches are just hacks to get the compilation further. The _Qp_ ops can be found in glibc, would it be OK to use those? V9 assembler requires declarations for global register use. The mem* functions in sparc32 directory did not work. They are actually used only by the hybrid 32-bit + V9 CPU configuration.
* Remove stray code alignment (.align 16 and .align 4 directives)Denis Vlasenko2007-07-291-0/+2
| | | | | from i386 and x86_64.
* Correct build failure introduced by SUSV3_LEGACY optionPeter S. Mazinger2006-03-242-0/+4
|
* Add new option for SuSv3 legacy functions and use it for ↵Peter S. Mazinger2006-03-237-0/+29
| | | | bcopy/bzero/bcmp/index/rindex
* unify duplicated code cause i get tired of updating this stuffMike Frysinger2006-02-032-31/+3
|
* remove hidden versions of bzero, unused in libc.soPeter S. Mazinger2006-02-012-2/+0
|
* Too many sparc versions ;-(, another hidden bcopy removedPeter S. Mazinger2006-01-301-1/+0
|
* Remove arch specific hidden bcopyPeter S. Mazinger2006-01-302-2/+0
|
* update strcoll stuffMike Frysinger2006-01-171-2/+2
|
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-1420-103/+95
| | | | missing headers, other jump relocs removed
* add aliases for strcoll when neededMike Frysinger2006-01-111-0/+5
|
* Use strong_alias everywhere instead of .global/.set. Correct some cases ↵Peter S. Mazinger2006-01-0320-101/+52
| | | | where the non-hidden version was used.
* Remove TOPDIRPeter S. Mazinger2005-11-211-3/+1
|
* Add hidden versions, hope I made it correctly. Sparc optimized string ↵Peter S. Mazinger2005-11-1217-49/+122
| | | | functions are not usable with current build system, each function (as long as asm) should go into an own file, the file having the name of the function
* Last bits for IMA, now everything can be built w/ DOMULTI=y on gcc-3.4.4 ↵Peter S. Mazinger2005-11-031-1/+2
| | | | with my config (no locale, the rest enabled). Not tested if libc is complete and usable. All the files listed in *_NO_MULTI need love, best would be to replace all multisources w/ single sources.
* Replace all Makefiles for new build infrastucturePeter S. Mazinger2005-10-291-27/+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/+28
| | | | 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-10/+13
| | | | 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.
* import sparc-optimized string functions from glibcMike Frysinger2005-08-2643-0/+6782