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

错误描述:

执行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 


原文地址:https://www.cnblogs.com/alan666/p/8312485.html