diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-02-06 22:47:23 -0500 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-02-06 22:47:23 -0500 |
commit | c95b10cff38fabf23a763d1889d024f6dabd4955 (patch) | |
tree | dc014fab60c42ef06c08956773e66f6fa0f83de1 /emcc | |
parent | 11a84a636ce9722053cc3100d5c04e30e9f93df2 (diff) | |
parent | 831bb584a91f5409af5df3c44f1bc8dc354ff0d8 (diff) |
Merge pull request #2103 from juj/opt_cmp1.10.2
Add optimized versions of musl libc string and memory comparison functions.
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1476,6 +1476,13 @@ try: ['stdlib', [ 'atof.c', 'strtod.c', + ]], + ['string', [ + 'memcmp.c', + 'strcasecmp.c', + 'strcmp.c', + 'strncasecmp.c', + 'strncmp.c', ]] ] for directory, sources in musl_files: @@ -1538,6 +1545,7 @@ try: 'iswspace_l.c', 'iswupper_l.c', 'iswxdigit_l.c', + 'strcoll.c', 'strcasecmp_l.c', 'strfmon.c', 'strncasecmp_l.c', |