Linux下编译libxml源码时,报错:/usr/include/x86_64-linux-gnu/bits/fcntl2.h:50:4: error: call to '__open...
2024-08-12
76
问题描述
在Linux中编译libxml的源码时,报错如下:
In function open,
inlined from xmlNanoHTTPSave at nanohttp.c:1185:12:
/usr/include/x86_64-linux-gnu/bits/fcntl2.h:50:4: error: call to __open_missing_mode declared with attribute error: open with O_CREAT or O_TMPFILE in second argument needs 3 arguments
__open_missing_mode ();
解决方法
解决方法是,修该nanohttp.c文件1185行,如下:
- fd = open(stat_path, O_CREAT | O_WRONLY | O_TRUNC);
+ fd = open(stat_path, O_CREAT | O_WRONLY | O_TRUNC, 0600);
修改之后,再次make就正常了。
更新于:3个月前赞一波!1
相关文章
- 源码多多进鱼带VUE源码任务悬赏源码安装说明文档
- 游戏陪玩系统语音聊天系统商业版源码安装教程
- fiora二次元聊天室宝塔源码+搭建教程 带后台小黑屋
- PHP 导出 Excel 报错: Formula Error: An unexpected error occurred
- MySQL5.7 中使用 group by 报错 this is incompatible with sql_mode=only_full_group_by
- 免费源码和免费教程,有需要的收藏(第一期)
- linux中Qt工程编译报错: error: 找不到 -lGL
- PHP7.4命令行报错:VC运行库和PHP版本不兼容
- 打开vmware虚拟机报错—该虚拟机似乎正在使用中
- React Error: Exceeded timeout of 5000 ms for a test. 错误
- 前端请求PHP接口,报错跨域问题
- Apache报错:无法使用可靠的服务器域名
- mysql报错xamp table 'pma__recent' is read only
- 浏览器报错 ERR_SSL_VERSION_OR_CIPHER_MISMATCH
- 火爆全网的ChatGPT智能AI机器人微信小程序源码 (附带部署教程)
- linux编译报错:/usr/include/c++/7/cstdlib:41:10: fatal error: bits/c++config.h: No such file or directory
- Linux下编译libxml2的源码报错:you must specify a host type if you use `--no-verify'
- vscode中通过ssh远程连接linux报错:Bad owner or permissions on C:\\Users\\用户名/.ssh/config
- 支付宝自动领取赏金 免复制口令html源码分享
- 如何用宝塔来安装下载的php源码教程
文章评论
评论问答