You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The name 'binaryen' is mostly an implementation detail of emscripten,
and the user-facing feature is actually wasm output.
Also introduces a settings-alias mechanism that we can use to canonicalize
flag names for backward compatibility.
assertshared.Settings.TOTAL_MEMORY% (16*1024*1024) ==0, 'For asm.js, TOTAL_MEMORY must be a multiple of 16MB, was '+str(shared.Settings.TOTAL_MEMORY)
1118
1128
assertshared.Settings.TOTAL_MEMORY>=shared.Settings.TOTAL_STACK, 'TOTAL_MEMORY must be larger than TOTAL_STACK, was '+str(shared.Settings.TOTAL_MEMORY) +' (TOTAL_STACK='+str(shared.Settings.TOTAL_STACK) +')'
1119
-
assertshared.Settings.BINARYEN_MEM_MAX==-1orshared.Settings.BINARYEN_MEM_MAX%65536==0, 'BINARYEN_MEM_MAX must be a multiple of 64KB, was '+str(shared.Settings.BINARYEN_MEM_MAX)
1129
+
assertshared.Settings.WASM_MEM_MAX==-1orshared.Settings.WASM_MEM_MAX%65536==0, 'WASM_MEM_MAX must be a multiple of 64KB, was '+str(shared.Settings.WASM_MEM_MAX)
0 commit comments