juj
juj
(The `[ '--externs', 'äö.js', '--js_output_file', 'out.js', '--js', 'a.js' ]` print is one of my own added debug prints, trying to look if the proper path names even reach Closure, which...
Coming back to this after a while.. How do I enable the AliasStrings pass? I tried looking at the documentation at https://github.com/google/closure-compiler/wiki/Flags-and-Options , searching for "pass" or "alias", but was...
Optimizing Emscripten WebGL support library in https://github.com/emscripten-core/emscripten/pull/13732 today, and still affected by this issue. In today's scenario, I have ```js function getLeftBracePos(name) { return name.slice(-1) == ']' && name.lastIndexOf('['); }...
The bug reported to Web Audio in https://github.com/WebAudio/web-audio-api/issues/2442 is not necessary for using Audio Worklets with Emscripten. Support for Audio Worklets with Emscripten has already landed, and the Web Audio...
Yeah, I agree there is a problem here... I'll do some testing on this. I definitely don't want to require users to start naming their libraries in the format "libStaticLib.a/bc/lib".
For (Windows) Emscripten development, my recommendation is that people should always use the suffix `.o` for object files, `.bc` for static libraries, and we should make `-lfile` directive look for...
Yeah.. The newly released Emsdk 1.21.0 release http://tiny.cc/2npmix still has this issue, but let's hope we'll be able to fix it by the next release.
I believe that is done in the DLL that is being reused from https://code.google.com/p/vs-android/, try peeking into the sources of that project.
So if user passes `-lfoo.lib`, then only the file `foo.lib` would be searched, instead of (or perhaps in addition to(?)) the current `foo.lib.{bc,a,lib}`? That sounds like a good feature, I...
The audio uses the Mozilla Audio Data API, which does not do audio elements or fetching from the network (as far as I know). I am not quite sure what...