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
When emcc runs internal tools such as the JS compiler and the closure compiler we currently have different ways to enable the next level of debugging. We should probably decide on one of:
Recommend re-running with -sVERBOSE on the command line
Recommend re-running with EMCC_DEBUG=1 in environment
Recommend re-running with -save-temps
Always save temps somewhere in case of error (avoid re-running at all?)
Currently (1) is used for JS compiler and (2) is used for closure compiler, but (3) is the standard gcc/clang name.