欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

WebAssembly 编译C++代码

程序员文章站 2022-07-12 16:31:05
...

最近做WebAssembly的技术预言。

中文网站:

https://wasm.zcopy.site/

https://developer.mozilla.org/zh-CN/docs/WebAssembly

 

采用的教程

https://emscripten.org/docs/getting_started/downloads.html#installation-instructions

1. 下载工具

# Get the emsdk repo
git clone https://github.com/emscripten-core/emsdk.git

# Enter that directory
cd emsdk

2. 安装最新

git pull

# windows环境所以直接写 emsdk
# Download and install the latest SDK tools.
emsdk install latest

# Make the "latest" SDK "active" for the current user. (writes ~/.emscripten file)
emsdk activate latest

# 把emsdk加到环境变量中
# Activate PATH and other environment variables in the current terminal
emsdk_env.bat

如果修改了DK的位置,那么需要重新执行 emsdk activate latest 和 emsdk_env.bat 指令

3. 写个简单的helloworld.c

#include <stdio.h>

int main() {
  printf("hello, world!\n");
  return 0;
}

4. 编译helloworld.c

./emcc tests/hello_world.c

会生成a.out.js 和 a.out.wasm 

5. 运行 node a.out.js会出现hello world表示生成的没问题。

6. 生成网页HTML

emcc tests/hello_world.c -o hello.html

7.网页显示,创建httpserver(chrome不支持本地文件方式),浏览器键入http://localhost:8000/hello.html,发现ok!

#创建httpserver
python -m http.server

 

相关标签: WebAssembly