diff options
author | Jukka Jylänki <jujjyl@gmail.com> | 2014-03-16 04:02:08 +0200 |
---|---|---|
committer | Jukka Jylänki <jujjyl@gmail.com> | 2014-03-28 23:06:17 -0400 |
commit | c4363b595cb2529345e3248b1f374595e83953ff (patch) | |
tree | 6bb97280c031f57a87c886bef10cd691fe60cbc7 /tools | |
parent | 4fc97c69d66a81e93849ebbff1f6eed8be7dd174 (diff) |
Migrate to using musl 0.9.13 strchr, strrchr, index and rindex for better asm.js performance.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/system_libs.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/system_libs.py b/tools/system_libs.py index 5a30547f..f61e2f79 100644 --- a/tools/system_libs.py +++ b/tools/system_libs.py @@ -236,19 +236,23 @@ def calculate(temp_files, in_temp, stdout, stderr): 'bcmp.c', 'bcopy.c', 'bzero.c', + 'index.c', 'memccpy.c', 'memmem.c', 'mempcpy.c', 'memchr.c', 'memrchr.c', + 'rindex.c', 'stpcpy.c', 'strcasestr.c', + 'strchr.c', 'strchrnul.c', 'strcspn.c', 'strlcat.c', 'strlcpy.c', 'strncat.c', 'strnlen.c', + 'strrchr.c', 'strsep.c', 'strspn.c', 'strstr.c', |