Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: compile

Issue 29384673: Issue 4991 - [emscripten] Update to Emscripten 1.37.3 (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore
Patch Set: Fixed indentation Created March 21, 2017, 10:17 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « README.md ('k') | compiled/bindings.ipp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compile
===================================================================
--- a/compile
+++ b/compile
@@ -21,20 +21,20 @@ COMPILER_OUTPUT = './lib/compiled.js'
GENERATION_PARAMS = {
'SHELL_FILE': "'%s'" % os.path.abspath(os.path.join(SOURCE_DIR, 'shell.js')),
'ASM_JS': 2, # "almost asm"
'TOTAL_MEMORY': 16*1024*1024,
'TOTAL_STACK': 1*1024*1024,
'ALLOW_MEMORY_GROWTH': 1,
'NO_EXIT_RUNTIME': 1,
'NO_DYNAMIC_EXECUTION': 1,
- 'NO_BROWSER': 1,
'NO_FILESYSTEM': 1,
'INVOKE_RUN': 0,
- 'NODE_STDOUT_FLUSH_WORKAROUND': 0,
+ 'TEXTDECODER': 0,
+ 'EXPORTED_RUNTIME_METHODS': ['cwrap', 'ccall', 'stringToAscii'],
}
DEFINES = []
ADDITIONAL_PARAMS = ['-O3', '-m32', '-std=gnu++14', '--memory-init-file', '0',
'--emit-symbol-map']
def getenv():
path = []
env = {}
« no previous file with comments | « README.md ('k') | compiled/bindings.ipp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld