Based on bytecodealliance/wasmtime#5152 it looks like the stack depth specified in:
|
#define MAX_MARSHAL_STACK_DEPTH 2000 |
and:
|
MAX_MARSHAL_STACK_DEPTH = 2000 |
are too high for wasmtime 2.0 (in development). We should drop it to either 1000 to match Windows or something like 1500 if we want a higher, but still acceptable, limit.
Based on bytecodealliance/wasmtime#5152 it looks like the stack depth specified in:
cpython/Python/marshal.c
Line 38 in 4702552
and:
cpython/Lib/test/test_marshal.py
Line 264 in 7644935
are too high for wasmtime 2.0 (in development). We should drop it to either 1000 to match Windows or something like 1500 if we want a higher, but still acceptable, limit.