diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-06-04 11:29:58 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-06-04 11:29:58 -0700 |
commit | 65748bb85593d38967a4e8d45476b4fc35558105 (patch) | |
tree | 22d22c8060ed00d02a3f01d438daad7764b4b12f /src/settings.js | |
parent | af7dedb9be77ed2ce6bc3b14d2a250c0e233ce4d (diff) | |
parent | 4c231931a476f297c4b63164262b5e50a87e7098 (diff) |
Merge branch 'incoming-merge' of github.com:modeswitch/emscripten into incoming
Diffstat (limited to 'src/settings.js')
-rw-r--r-- | src/settings.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/settings.js b/src/settings.js index 52605bda..7e607996 100644 --- a/src/settings.js +++ b/src/settings.js @@ -175,6 +175,7 @@ var LIBRARY_DEBUG = 0; // Print out when we enter a library call (library*.js). // want it back. A simple way to set it in C++ is // emscripten_run_script("Runtime.debug = ...;"); var SOCKET_DEBUG = 0; // Log out socket/network data transfer. +var SOCKET_WEBRTC = 0; // Select socket backend, either webrtc or websockets. var OPENAL_DEBUG = 0; // Print out debugging information from our OpenAL implementation. @@ -194,7 +195,7 @@ var DISABLE_EXCEPTION_CATCHING = 0; // Disables generating code to actually catc // introduce silent failures, which is good). // DISABLE_EXCEPTION_CATCHING = 0 - generate code to actually catch exceptions // DISABLE_EXCEPTION_CATCHING = 1 - disable exception catching at all - // DISABLE_EXCEPTION_CATCHING = 2 - disable exception catching, but enables + // DISABLE_EXCEPTION_CATCHING = 2 - disable exception catching, but enables // catching in whitelist // TODO: Make this also remove cxa_begin_catch etc., optimize relooper // for it, etc. (perhaps do all of this as preprocessing on .ll?) |