
Emscripten
xinran0703
这个作者很懒,什么都没留下…
展开
-
Emscripten编译环境安装(ubuntu20.04)
1. 使用终端安装各类工具$ sudo apt upate$ sudo apt install openssh-server git curl eget tar unzip$ sudo apt install build-essential ptyhon cmake default-jre // 默认安装的是python 2.72. 使用git ,从github上clone 源$git clone https://github.com/juj/emsdk.git // 会在当前路径下原创 2021-05-13 14:34:24 · 1867 阅读 · 2 评论 -
使c++程序崩溃的原因
使c++程序奔溃的原因总结:空指针void emptyPointer(){ cout << __FUNCTION__ << " " << __LINE__ << endl; int* p = NULL; *p = 5; cout << *p << endl;}2. 数组越界void ArrayBounds(){ cout << __FUNCTION__ << " " <&原创 2021-03-30 14:57:16 · 1369 阅读 · 1 评论