随笔分类 - 开源代码
摘要:1. 确认configure脚本 若是工程中没有,使用autoreconf工具生成即可。 autoreconf -i 2. 查看configure文件里的可用选项 ./configure --help 3. 依据编译环境,将选项填入合适的值 如: ./configure --host=mips-li
阅读全文
摘要:下载 到https://www.openssl.org/source/下载最新openssl源代码。 或使用git直接下拉代码,并切换到最新release版. 此处我下载的是1.1.1系列的版本,这个版本支持到2023年9月11号 git clone https://gitee.com/mirror
阅读全文
摘要:CJSON的数据结构 /* The cJSON structure: */ typedef struct cJSON { /* next/prev allow you to walk array/object chains. Alternatively, use GetArraySize/GetAr
阅读全文