美文网首页
2019 wasm的hello world

2019 wasm的hello world

作者: jqbdpgb | 来源:发表于2019-03-11 14:21 被阅读0次

    从网上找了找已有的wasm 0基础教程,内容老旧,过程复杂。目前wasm的编译器emscripten github仓库已经进行了更新,不再需要初学者进行繁琐的编译,可以直接下载windows下的exe安装包。

    本文将介绍如何把c++代码编译为html文件。

    大体需要3步:

    1. 到这个里下载最新的 exe执行文件 并安装。

    https://github.com/emscripten-core/emsdk

    2 打开记事本 复制粘贴如下代码,重命名为 arr.cpp;

    #include <stdio.h>

    #include <iostream>

    using namespace std;

    int main(int argc, char ** argv)

    {

    cout << "hello wasm";return 0;

    }

    3.打开第一步安装的emsdk,

    在命令行cd到你写记事本的目录,我的是 C:\Users\cc\source\repos\arr\arr

    然后 输入 emmc arr.cpp -s wasm=1 -o hello.html 回车

    最后你会看到目录下多出了几个文件

    大功告成

    参考 1 https://webassembly.org/getting-started/developers-guide/

            2 https://www.jianshu.com/p/326ee8e3300b

    相关文章

      网友评论

          本文标题:2019 wasm的hello world

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