摘要:
#include <iostream>#define F(a, b, c) f(c)void f(int a){ std::cout << a << std::endl;}int main() { F(9,,4); return 0;} 阅读全文
摘要:
https://github.com/japaric/rust-cross https://www.jianshu.com/p/c4d816e1442a 阅读全文
摘要:
https://docs.rs/wasi/0.9.0+wasi-snapshot-preview1/wasi/wasi_snapshot_preview1/index.htmlstatic NativeSymbol native_symbols_libc_wasi[] = { REG_NATIVE_ 阅读全文
摘要:
#include <iostream>#include "stdint.h"typedef struct { uint16_t param_count; uint16_t result_count; uint16_t param_cell_num; uint16_t ret_cell_num; /* 阅读全文
摘要:
github.com/stretchr/testify/assert 阅读全文
摘要:
https://hub.fastgit.org/bytecodealliance/wasm-micro-runtime wasmer wasmtime wasm3 阅读全文
摘要:
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" mac的brew修改国内源 清华源 阿里云 腾讯源 清华源(本人在用) # 替换brew.git cd "$(brew --r 阅读全文
摘要:
Mac下面除了用dmg、pkg来安装软件外,比较方便的还有用MacPorts来帮助你安装其他应用程序,跟BSD中的ports道理一样。MacPorts就像apt-get、yum一样,可以快速安装些软件。 1.安装包安装 https://www.macports.org/install.php 官网地 阅读全文
摘要:
git submodule update --init --recursive hub.fastgit.org git submodule add git@gitee.com:jalyzha/fp.git cat .gitmodules [submodule "fp"] path = fp url 阅读全文
摘要:
nm命令介绍的很多,但大多不介绍其函数符号标志的含义。最近在调试动态库时常用到,其中用的最多的用法:nm -A * |grep “aaa” | c++filt // -A 为了显示文件, c++filt转换为可读风格,好像有个参数也能实现类似功能 其他内容整理如下(原作者未知): nm用于列出目标文 阅读全文