diff options
-rw-r--r-- | src/settings.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/settings.js b/src/settings.js index d3abb06e..c156a40c 100644 --- a/src/settings.js +++ b/src/settings.js @@ -238,7 +238,8 @@ var NAMED_GLOBALS = 0; // If 1, we use global variables for globals. Otherwise // they are referred to by a base plus an offset (called an indexed global), // saving global variables but adding runtime overhead. -var EXPORTED_FUNCTIONS = ['_main']; // Functions that are explicitly exported. These functions are kept alive +var EXPORTED_FUNCTIONS = ['_main', '_malloc']; + // Functions that are explicitly exported. These functions are kept alive // through LLVM dead code elimination, and also made accessible outside of // the generated code even after running closure compiler (on "Module"). // Note the necessary prefix of "_". |