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
This is using version 1.38.8 and the compile command:
"em++ -Os --bind a.cpp b.cpp -o src/cpp/gen/out.js --post-js src/cpp/post.js --memory-init-file 0 -s WASM=0"
The text was updated successfully, but these errors were encountered:
The Uglify1 JS AST that our optimizer currently uses does seem to add extra parentheses in some cases. If you build with --closure 1 for closure compiler it should optimize away such things. Otherwise, to fix this we'd need to update our underlying JS AST, #6000.
define(function (require) {
"use strict";
return Module;
});
turns into
define((function(require){"use strict";return Module}))
This is using version 1.38.8 and the compile command:
"em++ -Os --bind a.cpp b.cpp -o src/cpp/gen/out.js --post-js src/cpp/post.js --memory-init-file 0 -s WASM=0"
The text was updated successfully, but these errors were encountered: