diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-01-19 11:26:56 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-01-19 11:26:56 -0800 |
commit | 875ee5d9dbe4d0b7fd86c9d60a42256a75385817 (patch) | |
tree | 484352645f6a3ddf8ca4e21c964049906bb16ac0 | |
parent | d7f770295c5fc23934f44a0084a3a3857560e76b (diff) |
emcc comment
-rwxr-xr-x | emcc | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -467,6 +467,8 @@ try: shared.Settings.CORRECT_SIGNS_LINES = [shared.path_from_root('src', 'dlmalloc.c') + ':' + str(i+4) for i in [4816, 4191, 4246, 4199, 4205, 4235, 4227]] # If we are in mode 1, we are correcting everything anyhow. If we are in mode 3, we will be corrected # so all is well anyhow too. + # XXX We also need to add libc symbols that use malloc, for example strdup. It's very rare to use just them and not + # a normal malloc symbol (like free, after calling strdup), so we haven't hit this yet, but it is possible. dlmalloc_symbols = open(shared.path_from_root('system', 'lib', 'dlmalloc.symbols')).read().split('\n') # libcxx |