make时遇到File `Makefile' has modification time 4e+04 s in the future的解决办法

1. 原因

是虚拟机时间和电脑时间不匹配造成。

2. 解决办法

在VMware 菜单虚拟机(M)-->设置(S)-->选项下设置开启时间同步

make时遇到File `Makefile' has modification time 4e+04 s in the future的解决办法

然后重启虚拟机

3. 若还出现 warning:  Clock skew detected.  Your build may be incomplete.

再执行

find . -type f | xargs -n 5 touch

make clean

make