I get the following error when trying to run my wasm app: ``` $ lucet-wasi demo.so thread 'main' panicked at 'instance can be created: LimitsExceeded("heap spec initial size: HeapSpec { reserved_size: 4194304, guard_size: 4194304, initial_size: 1114112, max_size: None }")', src/libcore/result.rs:997:5 ``` It indeed requires much more memory than that, how do I allow it to allocate more? update: it seems that limits are specified during the compilation. I've tried to set them to 1 Gb: ``` lucetc --reserved-size 1073741824 --guard-size 1073741824 pedersen_demo_bg.wasm -o demo.so ``` But I still get the same error
I get the following error when trying to run my wasm app:
It indeed requires much more memory than that, how do I allow it to allocate more?
update: it seems that limits are specified during the compilation. I've tried to set them to 1 Gb:
But I still get the same error