Hi,
I'm failing to get the native object using "wasm2obj" on a Wasm bytecode with SIMD.
The Wasm (with SIMD) was generated from C source compiled with WASI-SDK, and I can check the WAT with Wasm SIMD type/ops.
Anything I'm doing wrong here?
Wasmtime version: 0.27.0
$ wasmtime wasm2obj --cranelift --wasm-features simd sample.wasm sample.o
Error: WebAssembly failed to compile
Caused by:
0: WebAssembly translation error
1: Invalid input WebAssembly code at offset 14731: SIMD support is not enabled
Thanks & Regards,
Sambit
I think this is a bug in the wasm2obj
command, it goes through different configuration infrastructure than wasmtime
itself, and we haven't gotten around to unifying them. I think you can get this working with the deprecated --enable-simd
flag, but wasm2obj
isn't intended for production use right now per se
Thanks @Alex Crichton - that flag worked.
Just trying to experiment/understand more with the assembly etc. so not a production situation.
Last updated: Nov 22 2024 at 17:03 UTC