Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-05-30 | Qunying Pan writes: Make strncmp weak hidden to fix link failures in ↵ | Mike Frysinger | |
building gdb and binutils statically | |||
2006-05-30 | import some optimized functions from blackfin cvs | Mike Frysinger | |
2006-05-26 | Amir Shalem writes: | Mike Frysinger | |
there is a missing include for <bits/uClibc_uintmaxtostr.h> in libc/string/_syserrmsg.h, where _syserrmsg.h uses __UIM_BUFLEN_INT | |||
2006-05-15 | fix signed warnings | Mike Frysinger | |
2006-03-24 | Correct build failure introduced by SUSV3_LEGACY option | Peter S. Mazinger | |
2006-03-23 | Add new option for SuSv3 legacy functions and use it for ↵ | Peter S. Mazinger | |
bcopy/bzero/bcmp/index/rindex | |||
2006-03-23 | Mark some functions as BSD only | Peter S. Mazinger | |
2006-03-23 | select needs sys/select.h, str[n]casecmp/ffs needs strings.h, if BSD is not ↵ | Peter S. Mazinger | |
defined, gettimeofday has other prototype and tm_gmtoff/tm_zone do not exist | |||
2006-03-22 | Correct build if UCLIBC_HAS_CTYPE_TABLES is not defined | Peter S. Mazinger | |
2006-03-22 | Mark some functions as GNU, provide missing hidden memmem, remove ↵ | Peter S. Mazinger | |
_ISOC99/XOPEN_SOURCE | |||
2006-03-10 | Remove all non-constant libc_hidden_data_def(), it is too unreliable, sorry, ↵ | Peter S. Mazinger | |
most of global data relocations are back | |||
2006-02-22 | wcscoll_l.o does not exist | Peter S. Mazinger | |
2006-02-22 | exclude 2 more files from multi | Peter S. Mazinger | |
2006-02-15 | strcoll for non-locale | Peter S. Mazinger | |
2006-02-13 | libc-{a,so,multi}-y replaced by libc-y covering common objects both in ↵ | Peter S. Mazinger | |
libc.a/libc.so, the diffs go into libc-static-y/libc-shared-y exclusively, add IMA to libc, don't use any MSRC anymore | |||
2006-02-04 | fix building | Mike Frysinger | |
2006-02-04 | import files from glibc for an ia64/static port | Mike Frysinger | |
2006-02-03 | unify duplicated code cause i get tired of updating this stuff | Mike Frysinger | |
2006-02-01 | remove hidden versions of bzero, unused in libc.so | Peter S. Mazinger | |
2006-01-31 | Khem Raj says: | Mike Frysinger | |
add support for using BX instruction for THUMB aware architectures | |||
2006-01-30 | Too many sparc versions ;-(, another hidden bcopy removed | Peter S. Mazinger | |
2006-01-30 | Remove arch specific hidden bcopy | Peter S. Mazinger | |
2006-01-30 | Change the only bcopy user to memmove and remove internal version of bcopy | Peter S. Mazinger | |
2006-01-26 | Get rid of missing prototype warnings | Peter S. Mazinger | |
2006-01-23 | Correct memcpy use | Peter S. Mazinger | |
2006-01-22 | Enable _GNU_SOURCE build wide, trying to get consistent interfaces, else IMA ↵ | Peter S. Mazinger | |
is a useless attempt | |||
2006-01-18 | check for signal existence rather than using arch defines | Mike Frysinger | |
2006-01-17 | update strcoll stuff | Mike Frysinger | |
2006-01-16 | Last relocs jump and global data, (even locales) that I could remove are ↵ | Peter S. Mazinger | |
gone from libc. The remaining are left as exercise for others ;-) | |||
2006-01-15 | make gcc4 happy w/ hidden_def/proto, correct some typos | Peter S. Mazinger | |
2006-01-14 | get rid of strcmp jump reloc | Peter S. Mazinger | |
2006-01-14 | DODEBUG=y and XLOCALE as well | Peter S. Mazinger | |
2006-01-14 | make DODEBUG=y happy, update sysdeps/common/* copyright | Peter S. Mazinger | |
2006-01-14 | s/libc_hidden_proto/libc_hidden_def/ | Peter S. Mazinger | |
2006-01-14 | hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵ | Peter S. Mazinger | |
missing headers, other jump relocs removed | |||
2006-01-11 | add aliases for strcoll when needed | Mike Frysinger | |
2006-01-09 | copy strcoll aliases from arm | Mike Frysinger | |
2006-01-09 | add missing __strcoll alias | Mike Frysinger | |
2006-01-08 | hide internal _string_syssigmsgs symbol | Mike Frysinger | |
2006-01-08 | hide internal _string_syserrmsgs | Mike Frysinger | |
2006-01-07 | Congratulations! You get the stupid award for not including <signal.h> to | "Steven J. Hill" | |
pull in the signal #define's. How did this compile for you again? | |||
2006-01-03 | Lost wcschr() | Peter S. Mazinger | |
2006-01-03 | Get rid of tolower/toupper jump reloc, correct tow* for XLOCALE | Peter S. Mazinger | |
2006-01-03 | Provide __tolower and use it | Peter S. Mazinger | |
2006-01-03 | Revert a change until I find the textrel cause | Peter S. Mazinger | |
2006-01-03 | Complete split of all the string functions. Hope haven't broken too much. ↵ | Peter S. Mazinger | |
wcscoll/strcoll needs some love ... | |||
2006-01-03 | Use strong_alias everywhere instead of .global/.set. Correct some cases ↵ | Peter S. Mazinger | |
where the non-hidden version was used. | |||
2005-12-16 | Remove all trailing ; after *_alias and change 2 to use weak_alias instead ↵ | Peter S. Mazinger | |
of __attribute__ ... | |||
2005-12-16 | Convert all the rest, remove isxupper/isxlower, if someone objects, I'll add ↵ | Peter S. Mazinger | |
it back | |||
2005-12-14 | Fixup byte order handling. Not all architectures define __BIG_ENDIAN__ so i.e. | Eric Andersen | |
on big endian mips the code is compiled as little-endian and the wrong half of the 64-bit point value is examined to check for NaN, etc. This bug also broke fpclassify(), isfinite(), isnormal(), isinf(), finite(), and signbit(). |