当前位置: 首页 > 工具软件 > json.c > 使用案例 >

关于Openwrt编译出现“blobmsg_json.c json.h: No such file”的问题

符风畔
2023-12-01

https://github.com/json-c/json-c根据说明编译安装
默认的安装路径应该是/usr/local/include/

执行以下命令进行软连接

sudo ln -s /usr/local/include/json-c /usr/include/json

修改blobmsg_json.c和jshn.c文件
#include <json.h>
改为
#include <json/json.h>

问题解决

 类似资料: