3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -469,6 +469,8 @@ emulated values may not match (this is true of native too, for that matter -
469
469
this is all undefined behavior). This approaches appears good enough to
470
470
support Python, which is the main use case motivating this feature.
471
471
472
+ .. note :: This setting is deprecated
473
+
472
474
Default value: false
473
475
474
476
.. _exception_debug :
@@ -3096,6 +3098,8 @@ normal wasm or that wasm2js code. For details of how to do that, see the
3096
3098
test_maybe_wasm2js test. This option can be useful for debugging and
3097
3099
bisecting.
3098
3100
3101
+ .. note :: This setting is deprecated
3102
+
3099
3103
Default value: false
3100
3104
3101
3105
.. _asan_shadow_size :
Original file line number Diff line number Diff line change @@ -344,6 +344,7 @@ var SAFE_HEAP_LOG = false;
344
344
// this is all undefined behavior). This approaches appears good enough to
345
345
// support Python, which is the main use case motivating this feature.
346
346
// [link]
347
+ // [deprecated]
347
348
var EMULATE_FUNCTION_POINTER_CASTS = false ;
348
349
349
350
// Print out exceptions in emscriptened code.
@@ -2027,6 +2028,7 @@ var MINIFY_HTML = true;
2027
2028
// test_maybe_wasm2js test. This option can be useful for debugging and
2028
2029
// bisecting.
2029
2030
// [link]
2031
+ // [deprecated]
2030
2032
var MAYBE_WASM2JS = false ;
2031
2033
2032
2034
// This option is no longer used. The appropriate shadow memory size is now
Original file line number Diff line number Diff line change 117
117
#
118
118
# At some point in the future, once folks have stopped using these
119
119
# settings we can move them to `LEGACY_SETTINGS`.
120
+ #
121
+ # All settings here should be tagged as `[deprecated]` in settings.js
120
122
DEPRECATED_SETTINGS = {
121
123
'SUPPORT_ERRNO' : 'emscripten no longer uses the setErrNo library function' ,
122
124
'EXTRA_EXPORTED_RUNTIME_METHODS' : 'please use EXPORTED_RUNTIME_METHODS instead' ,
0 commit comments