diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-11-27 16:58:22 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-11-27 16:58:22 -0800 |
commit | 9d9c56a6e25a83c216d443cc5169d88c6877dbe5 (patch) | |
tree | 76161ffb9abbc631e067b078f78d87bbca5a9eaa /emscripten.py | |
parent | 9539d2578c350307ded80f17d4998fd9c53b888d (diff) |
send externs to library including
Diffstat (limited to 'emscripten.py')
-rwxr-xr-x | emscripten.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emscripten.py b/emscripten.py index 73b38e0c..fc9bf42d 100755 --- a/emscripten.py +++ b/emscripten.py @@ -800,7 +800,7 @@ def emscript_fast(infile, settings, outfile, libraries=[], compiler_engine=None, set(settings['DEFAULT_LIBRARY_FUNCS_TO_INCLUDE'] + map(shared.JS.to_nice_ident, metadata['declares'])).difference( map(lambda x: x[1:], metadata['implementedFunctions']) ) - ) + ) + map(lambda x: x[1:], metadata['externs']) # Settings changes assert settings['TARGET_LE32'] == 1 |