summaryrefslogtreecommitdiffstats
path: root/libc/string/arm/strcmp.S
Commit message (Collapse)AuthorAgeFilesLines
* Paul Brook writes:Bernhard Reutner-Fischer2008-03-261-0/+19
| | | | | | | | | | | | | | | The attached patch adds support for compiling arm uClibc as pure Thumb code. This is needed because some recent ARM codes do not implement traditional ARM mode. Specifically: * Cortex-M1 - An extremely minimal FPGA based core that only implements Thumb-1 (aka ARMv6-M). * Cortex-M3 - A Thumb-2 only ARMv7-M core. Most of uClibc already builds in Thumb mode, all that is left are a handful of assembly bits. Tested on arm-uclinuxeabi.
* Khem Raj says:Mike Frysinger2006-01-311-1/+5
| | | | add support for using BX instruction for THUMB aware architectures
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-141-8/+7
| | | | missing headers, other jump relocs removed
* Use strong_alias everywhere instead of .global/.set. Correct some cases ↵Peter S. Mazinger2006-01-031-4/+4
| | | | where the non-hidden version was used.
* locale.h can't be includedPeter S. Mazinger2005-12-081-2/+2
|
* Use hidden_strong_alias for alias(__x,__y), do not use recursive aliasesPeter S. Mazinger2005-12-081-2/+2
|
* Guard __strcoll/strcoll for C locales and use the same logic as elsewherePeter S. Mazinger2005-12-061-2/+6
|
* Paul Brook writes:Mike Frysinger2005-11-291-0/+1
| | | | | | | | | | I'm getting the following build failure on arm-linux: LD libuClibc-0.9.28.so libc/libc_so.a(glob.os): In function `collated_compare':glob.c:(.text+0x1f8): undefined reference to `__strcoll' The patch below fixes it.
* Add hidden versions, add missing .sizePeter S. Mazinger2005-11-111-3/+7
|
* syntax/whitespace touchupsMike Frysinger2005-09-161-7/+5
|
* Add an initial set of arm optimized string functions. TheseEric Andersen2003-11-201-0/+49
do seem to make noticable speed improvement... -Erik