美文网首页
Wasmtime之源码编译流程

Wasmtime之源码编译流程

作者: Lee_5566 | 来源:发表于2020-11-10 13:45 被阅读0次
    image.png

    编译Wasmtime

    1. 下载代码,进入代码目录wasmtime执行:
    git submodule update --init
    

    2)编译CLI bin文件执行:

    cargo build --release
    

    可执行文件位置:
    target/release/wasmtime

    编译c语言动态库

    执行:

    cargo build --release --manifest-path crates/c-api/Cargo.toml
    

    动态库文件位置:target/release/

    相关文章

      网友评论

          本文标题:Wasmtime之源码编译流程

          本文链接:https://www.haomeiwen.com/subject/miqjbktx.html