(1)Emscripten环境搭建以及简单的使用方法介绍

简介:Emscripten可以把C/C++编译成.js和.wasm文件,用于浏览器使用。

①,安装Emscripten编译期

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

# Enter that directory
cd emsdk
git pull

# 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

# Activate PATH and other environment variables in the current terminal

source ./emsdk_env.sh


②,编写代码
hello.c

#include<stdio.h>



int main(){

printf(“hello world\n”);

}

 

编译:可以输出html,也k可以不进行输出。

./emcc hello.c -o hello.html

 

使用浏览器打开hello.html,结果如下,网页和控制台都能看到hello world。

 

 

参考
https://github.com/emscripten-core/emscripten
https://webassembly.org/
https://emscripten.org/

Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐