aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJukka Jylänki <jujjyl@gmail.com>2014-03-15 18:49:12 +0200
committerJukka Jylänki <jujjyl@gmail.com>2014-03-28 23:06:16 -0400
commit3a501858147d9d31573f24d1b352fbeb52d7c3f2 (patch)
treed2bf0bfceab21c829aa1bc188964e5e0666aaeec /tools
parent58f9620df20ab6a9bf35c7c91075ecd81597b411 (diff)
Migrate to using musl 0.9.13 libc atoi, atol and atoll for better asm.js performance.
Diffstat (limited to 'tools')
-rw-r--r--tools/system_libs.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/system_libs.py b/tools/system_libs.py
index d37872a4..b75aecd9 100644
--- a/tools/system_libs.py
+++ b/tools/system_libs.py
@@ -71,6 +71,8 @@ def calculate(temp_files, in_temp, stdout, stderr):
]],
['stdlib', [
'atof.c',
+ 'atoi.c',
+ 'atol.c',
'strtod.c',
]],
['string', [
@@ -221,6 +223,7 @@ def calculate(temp_files, in_temp, stdout, stderr):
'fputws.c',
]],
['stdlib', [
+ 'atoll.c',
'bsearch.c',
'ecvt.c',
'fcvt.c',