Hello!
First off, thank you all for your work on emscripten -- such an awesome and exciting tool!
The specific issue I'm writing about has to do with emcc's --preload-file option. My .data file gets created and I'm successfully running my generated code in a web worker, but the data that's supposed to be injected into MEMFS never winds up there. I can see the .data file gets fetched from the server, but when I try FS.readFile (after Module.main has been run), I get
Array [ ".", "..", "tmp", "home", "dev", "proc" ]
which doesn't include my application data. Are there size issues and/or limits at play here? My .data file is quite large (54M).
Anyway I'm having a lot of fun hacking around with the compiler. Great work!
-Gareth