I've come to Emscripten with very little knowledge of web technologies beyond writing static HTML by hand. I'm a C programmer by trade, who is happier with assembler than C++. This means I lack some background for understanding Emscripten and Node.js. I'm making progress with my Emscripten/WebAssembly project, but I have a problem at link time. I get this message:
> cache:INFO: generating system asset: symbol_lists/5694415f89fa8ad6c14652d4e41d66929bce05f4.json...
> (this will be cached in "/path/to/server/disk/emscripten/v3.1.71/emsdk/upstream/emscripten/cache/symbol_lists/5694415f89fa8ad6c14652d4e41d66929bce05f4.json"
> for subsequent builds)
> cache:INFO: - ok
My organisation really, really, wants to make sure that everyone using a compiler has the same version of the compiler. We're had terrible trouble on other platforms with product bugs not reproducing in different versions of a compiler. Therefore, when possible we want to put compilers on a server's disk and have everyone use the same copy of the compiler.
How do I suppress this caching?
Thanks in advance,
John