fitzgen opened Issue #1473:
Translating wasm into clif should not require a target, but right now it does:
$ cargo run -- wasm -tp ~/scratch/two-plus-five.wasm Finished dev [unoptimized + debuginfo] target(s) in 0.06s Running `/home/fitzgen/wasmtime/target/debug/clif-util wasm -tp /home/fitzgen/scratch/two-plus-five.wasm` Error: the wasm command requires an explicit isa.When the
-t
flag is passed, and therefore we are only doing wasm to clif translation, we should not require a--target
flag.
fitzgen labeled Issue #1473:
Translating wasm into clif should not require a target, but right now it does:
$ cargo run -- wasm -tp ~/scratch/two-plus-five.wasm Finished dev [unoptimized + debuginfo] target(s) in 0.06s Running `/home/fitzgen/wasmtime/target/debug/clif-util wasm -tp /home/fitzgen/scratch/two-plus-five.wasm` Error: the wasm command requires an explicit isa.When the
-t
flag is passed, and therefore we are only doing wasm to clif translation, we should not require a--target
flag.
github-actions[bot] commented on Issue #1473:
Subscribe to Label Action
This issue or pull request has been labeled: "cranelift"
<details> <summary>Users Subscribed to "cranelift"</summary>
- @bnjbvr
</details>
To subscribe or unsubscribe from this label, edit the <code>.github/subscribe-to-label.json</code> configuration file.
bjorn3 commented on Issue #1473:
The target is necessary to get the pointer size for things like reference types.
abrown commented on Issue #1473:
I think it would be nice to have a sane default here: if
--target
is not passed, try to use the host's native target. I've run into this several times in the past and it's annoying.
Last updated: Nov 22 2024 at 17:03 UTC