aboutsummaryrefslogtreecommitdiff
path: root/system/lib/libc/musl
AgeCommit message (Collapse)Author
2014-05-23Migrate snprintf to musl. Move the most common sprintf-related code to libc ↵Jukka Jylänki
instead of libcextra to avoid pulling libcextra in on common runs.
2014-05-23Migrate to using musl libc sprintf family to gain compiled asm.js ↵Jukka Jylänki
performance. Keep a copy of handwritten vfprintf and fprintf around to be compatible with the Emscripten filesystem IO library. Also migrate frexp which sprintf depends on to musl libc.
2014-05-23Migrate to using musl libc sscanf to improve performance. Keep the existing ↵Jukka Jylänki
JS vfscanf for Emscripten FS compatibility, and add the musl-specific version to be used when called from sscanf and vsscanf.
2014-05-21Fix test breakages in s_* suites after musl_charfuncs merge.Jukka Jylänki
2014-05-21Migrate is*, to* and stro* to use musl libc.Jukka Jylänki
2014-04-07Add JavaScript implementation of musl architecture-specific instructions.Jukka Jylänki
2014-03-28Migrate to using musl 0.9.13 strtok and strtok_r for better asm.js performance.Jukka Jylänki
2014-03-28Migrate to using musl 0.9.13 strpbrk for better asm.js performance.Jukka Jylänki
2014-03-28Migrate to using musl 0.9.13 strdup and strndup for better asm.js performace.Jukka Jylänki
2014-03-28Migrate to using musl 0.9.13 strchr, strrchr, index and rindex for better ↵Jukka Jylänki
asm.js performance.
2014-03-28Migrate to using musl 0.9.13 strstr for better asm.js performance.Jukka Jylänki
2014-03-28Migrate to using musl 0.9.13 strnlen for better asm.js performance.Jukka Jylänki
2014-03-28Migrate to using musl 0.9.13 memchr for better asm.js performance.Jukka Jylänki
2014-03-28Migrate to using musl 0.9.13 strncat for better asm.js performance.Jukka Jylänki
2014-03-28Migrate to using musl 0.9.13 stpcpy for better asm.js performance.Jukka Jylänki
2014-03-28Migrate to using musl 0.9.13 strspn and strcspn for better asm.js performance.Jukka Jylänki
2014-03-28Added musl 0.9.13 bcmp and bzero functions and migrated bcopy implementation ↵Jukka Jylänki
to use musl for better asm.js performance.
2014-03-28Migrate to using musl 0.9.13 libc qsort for better asm.js performance.Jukka Jylänki
2014-03-28Migrate to using musl 0.9.13 libc atoi, atol and atoll for better asm.js ↵Jukka Jylänki
performance.
2014-03-28Migrate to using musl 0.9.13 libc bsearch to take advantage of compiled ↵Jukka Jylänki
asm.js performance in the algorithm.
2014-02-06Revert strcmp.c to musl v0.9.13 so that the versions in this pull request ↵Jukka Jylänki
match the ones that waywardmonkeys has pushed in earlier.
2014-02-06Add strcoll as well so that library.js does not need to depend on musl libc ↵Jukka Jylänki
code.
2014-02-06Add optimized versions of musl libc string and memory comparison functions.Jukka Jylänki
2014-01-16add fnmatch; fixes #20021.9.3Alon Zakai
2014-01-15add musl fputws, fix vswprintf, add testing for fwprintf and swprintf as well1.8.14Alon Zakai
2014-01-15remove musl use of fwritex1.8.13Alon Zakai
2014-01-15Fill in undefined math symbols.Bruce Mitchener
2014-01-14fix wprintf-related bug that bit fastcomp1.8.11Alon Zakai
2014-01-14Expand aliases for strto*_l() to short functions.Bruce Mitchener
This removes warnings about incompatible pointer types in asm2 mode.
2014-01-14Replace getopt_long with musl version.Bruce Mitchener
2014-01-14Replace implementation of warn*/err*.Bruce Mitchener
This eliminates a large number of warnings about incompatible function pointer casts when compiling for asm.js.
2014-01-14Fix asm2 compilation where __toread was used.Bruce Mitchener
2014-01-14Note change in signgam implementation from upstream.Bruce Mitchener
2014-01-13add fputwc, which enables wprintf1.8.9Alon Zakai
2014-01-14Add lots of math functions.Bruce Mitchener
2014-01-14Make lgamma and friends work, add test.Bruce Mitchener
We can't use weak aliases on variables in emscripten, so get rid of __signgam and just use signgam.
2014-01-14Add gamma functions.Bruce Mitchener
2014-01-14Add strtod(), wcstod(), wcstol() and friends.Bruce Mitchener
This implementation of strtod() replaces the old as it implements support for parsing hex constants which is needed by various tests.
2014-01-13Missing string.h functionality.Bruce Mitchener
2013-11-02regex implementation from musl.Bruce Mitchener
2013-09-26Add iconv from musl.Bruce Mitchener
2013-09-26Add wprintf, swprintf, vswprintf, vfwprintf, etc.Bruce Mitchener
2013-09-26Add a lot of locale code.Bruce Mitchener
2013-09-24Mark __assert_fail as _Noreturn.Bruce Mitchener
This eliminates a performance regression caused in the box2d benchmark by switching to the musl headers. Without this being _Noreturn, clang / llvm generates much worse code involving phis and extra loads.
2013-09-13Don't define _POSIX_SHARED_MEMORY_OBJECTS.Bruce Mitchener
This isn't implemented, so don't define it.
2013-09-13Update to musl-0.9.13 headers.Bruce Mitchener
2013-09-13Correctly note musl provenance and differences.Bruce Mitchener
2013-08-07Add fcvt, ecvt, gcvt functions.Bruce Mitchener
2013-04-29[libcextra] Add wcwidth, wcswidth.Bruce Mitchener
2013-04-29[libcextra] wctrans and friends.Bruce Mitchener