You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I end up with the Rust linker linking against /Users/anovak/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/wasm32-wasi/lib/libcompiler_builtins-a0294efb55e060eb.rlib, which does not define __extenddftf2. But the WASI SDK compiler version 20 (the current release) builds C code assuming it will link against itswasi-sdk-20.0/lib/clang/16/lib/wasi/libclang_rt.builtins-wasm32.a file, which does define __extenddftf2.
The WASI SDK folks suggested that the real problem is that the Rust libcompiler_builtinsshould define that symbol, and is out of date and needs updating. But I installed the wasm32-wasi target with rustup within the past 48 hours, so presumably I have the current version.
Can that function be added?
My full list of missing intrinsic-looking functions from my build seems to be:
The WASI SDK folks said that WebAssembly/wasi-sdk#361 is probably a Rust issue.
I'm trying to build a Rust project that uses
rusqlite
(which compiles C code), for WebAssembly, for thewasm32-wasi
Rust target.When I do my build with:
I end up with the Rust linker linking against
/Users/anovak/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/wasm32-wasi/lib/libcompiler_builtins-a0294efb55e060eb.rlib
, which does not define__extenddftf2
. But the WASI SDK compiler version 20 (the current release) builds C code assuming it will link against itswasi-sdk-20.0/lib/clang/16/lib/wasi/libclang_rt.builtins-wasm32.a
file, which does define__extenddftf2
.The WASI SDK folks suggested that the real problem is that the Rust
libcompiler_builtins
should define that symbol, and is out of date and needs updating. But I installed thewasm32-wasi
target withrustup
within the past 48 hours, so presumably I have the current version.Can that function be added?
My full list of missing intrinsic-looking functions from my build seems to be:
Is
libcompiler_builtins
somehow out of date enough to be missing all of these?The text was updated successfully, but these errors were encountered: