We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4798290 + 53fc43c commit 2539a0fCopy full SHA for 2539a0f
1 file changed
examples/transcode_wasm/src/wasm.rs
@@ -33,6 +33,9 @@ pub struct Encoded {
33
pub data: Vec<u8>,
34
}
35
36
+// Rust 1.96.0 以降、未定義シンボルのリンクが厳格化されたため、
37
+// JS 側から提供される関数を "env" モジュールからインポートすることを明示する。
38
+#[link(wasm_import_module = "env")]
39
unsafe extern "C" {
40
pub fn consoleLog(msg: *const u8, msg_len: i32);
41
0 commit comments