您的位置:首页 > 其它

执行make出现“Warning: File `xxx.c' has modification time 2.6e+04 s in the future“警告的解决方法

2016-01-17 16:18 513 查看
错误描述:

执行make命令时出现“make[2]: Warning: File `xxx.c' has modification time 1.6e+05 s in the future “警告,原因是宿主机与虚拟机的系统时间没有同步造成的.

解决方法:

将时间将同步!



由于时钟同步问题,出现 warning:  Clock skew detected.  Your build may be incomplete.这样的警告,

解决办法:

find . -type f | xargs -n 5 touch
make clean
make 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: