# Get the emsdk repo
git clone https://github.com/juj/emsdk.git
Enter that directory
cd emsdk
- 下载依赖环境:
```sh
# Fetch the latest version of the emsdk (not needed the first time you clone)
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
1. 安装 Emscripten 环境
参考官方文档: http://kripken.github.io/emscripten-site/docs/getting_started/downloads.html
系统环境建议使用 Ubuntu18.04,我在 CentOS7 上因 glibcxx 的版本过低的问题搞不定 clang 报错的问题。
Enter that directory
cd emsdk
执行这行命令
./emsdk install latest
时有概率会失败,建议使用代理。最后一行设置环境变量的命令
source ./emsdk_env.sh
每次重新开机需要重新执行。2. 写个 Demo
参考了 http://www.ruanyifeng.com/blog/2017/09/asmjs_emscripten.html
但是版本可能有点旧了,谷歌搜下报错也都能解决。
新建
t1.c
文件,内容为:然后新建文件
t1.html
,内容为:执行命令:
然后在浏览器中打开 http://localhost:8080/t1.html