上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 57 下一页
摘要: #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;} 阅读全文
posted @ 2021-11-17 11:26 zJanly 阅读(380) 评论(0) 推荐(0) 编辑
摘要: https://github.com/japaric/rust-cross https://www.jianshu.com/p/c4d816e1442a 阅读全文
posted @ 2021-11-16 16:37 zJanly 阅读(36) 评论(0) 推荐(0) 编辑
摘要: https://docs.rs/wasi/0.9.0+wasi-snapshot-preview1/wasi/wasi_snapshot_preview1/index.htmlstatic NativeSymbol native_symbols_libc_wasi[] = { REG_NATIVE_ 阅读全文
posted @ 2021-11-15 15:10 zJanly 阅读(169) 评论(0) 推荐(0) 编辑
摘要: #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; /* 阅读全文
posted @ 2021-11-15 14:25 zJanly 阅读(74) 评论(0) 推荐(0) 编辑
摘要: github.com/stretchr/testify/assert 阅读全文
posted @ 2021-11-15 10:15 zJanly 阅读(24) 评论(0) 推荐(0) 编辑
摘要: https://hub.fastgit.org/bytecodealliance/wasm-micro-runtime wasmer wasmtime wasm3 阅读全文
posted @ 2021-11-12 15:27 zJanly 阅读(111) 评论(0) 推荐(0) 编辑
摘要: /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" mac的brew修改国内源 清华源 阿里云 腾讯源 清华源(本人在用) # 替换brew.git cd "$(brew --r 阅读全文
posted @ 2021-11-12 14:16 zJanly 阅读(245) 评论(0) 推荐(0) 编辑
摘要: Mac下面除了用dmg、pkg来安装软件外,比较方便的还有用MacPorts来帮助你安装其他应用程序,跟BSD中的ports道理一样。MacPorts就像apt-get、yum一样,可以快速安装些软件。 1.安装包安装 https://www.macports.org/install.php 官网地 阅读全文
posted @ 2021-11-12 11:44 zJanly 阅读(143) 评论(0) 推荐(0) 编辑
摘要: git submodule update --init --recursive hub.fastgit.org git submodule add git@gitee.com:jalyzha/fp.git cat .gitmodules [submodule "fp"] path = fp url 阅读全文
posted @ 2021-11-12 11:41 zJanly 阅读(22) 评论(0) 推荐(0) 编辑
摘要: nm命令介绍的很多,但大多不介绍其函数符号标志的含义。最近在调试动态库时常用到,其中用的最多的用法:nm -A * |grep “aaa” | c++filt // -A 为了显示文件, c++filt转换为可读风格,好像有个参数也能实现类似功能 其他内容整理如下(原作者未知): nm用于列出目标文 阅读全文
posted @ 2021-11-11 15:52 zJanly 阅读(2406) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 57 下一页