Makefile常见错误日志及解决方法

gcc src/config.c -o build/config
错误日志:/usr/bin/ld: cannot open output file build/config: No such file or directory
collect2: error: ld returned 1 exit status
解决方案:新建build目录

错误日志:fatal error: tcpd.h: No such file or directory.
解决方案:安装libwrap0-dev(Debian 上的名称)

错误日志:linux error: ‘SIGUNUSED’ undeclared
解决方案:
由于 glibc 2.26SIGUNUSED 已被删除,建议我们使用它SIGSYS(具有相同的值)。
为了兼容旧版本,请使用
#define SIGUNUSED SIGSYS
要不就
#define SIGUNUSED 31

错误日志:
/usr/bin/ld: /tmp/ccOLj5go.o: in function RunAnalysis': lsrootkit.c:(.text+0x279a): undefined reference to pthread_create’
/usr/bin/ld: lsrootkit.c:(.text+0x27dd): undefined reference to `pthread_join’
collect2: error: ld returned 1 exit status
解决方案:
一些比较老的代码makefile中会出现gcc -lpthread xx.c,改为gcc xx.c -lpthread即可。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

摔不死的笨鸟

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值