生锈,WebAssembly和传递参数以增加总内存

时间:2017-08-22 02:04:08

标签: rust asm.js webassembly

我有一个生锈项目,我按照http://asquera.de/blog/2017-04-10/the-path-to-rust-on-the-web/

编译给webasm

项目编译。当我在Chrome Canary中运行它时,它会耗尽内存并给我一个非常有用的错误消息:

abort("Cannot enlarge memory arrays. Either (1) compile with  -s 
TOTAL_MEMORY=X  with X higher than the current value 16777216, (2) compile 
with  -s ALLOW_MEMORY_GROWTH=1  which allows increasing the size at runtime, 
...

问题是,它不清楚如何将这些标志传递给rustc /构建工具链。

既不设置EMMAKEN_CFLAGS,也不设置以下工作:

cargo  rustc -v --target=wasm32-unknown-emscripten --release -- -Clink-args="-s TOTAL_MEMORY=33554432" 

1 个答案:

答案 0 :(得分:3)

This博文提供的解决方案我认为也适用于您的情况:

  

尽我所知,没有办法通过货物传递大多数链接器参数。相反,通过指定自定义链接器来破解限制,该链接器实际上是包装真实链接器的shell脚本。

创建一个像emcc_link这样的shell脚本,它使用适当的选项调用emscripten:

emcc "-s" "TOTAL_MEMORY=33554432" $@

(您可能需要其他选项才能使其有效。请查看blog post了解详细信息。)

通过编辑/创建.cargo/config指定将其用于您的项目:

[target.wasm32-unknown-emscripten]
linker = "/your/project/dir/emcc_sdl"

[target.asmjs-unknown-emscripten]
linker = "/your/project/dir/emcc_sdl"

我无情地认为构建环境是Linux等。在Windows上,shell脚本应该是批处理脚本,我不确定.cargo/config是否存在任何差异。

免责声明:我没有尝试过这些。