当前位置: 代码迷 >> 综合 >> make时 has modification time 4182034 s in the future
  详细解决方案

make时 has modification time 4182034 s in the future

热度:5   发布时间:2023-12-18 11:59:03.0

make时的烦人问题modification time in the future

   今天因为处理视频时,发现老的版本不能使用,所以编译一个新的来看看,但怎么样打make 都没有反应。

后来实在没有法子,打了一下make clean,清除一下,然后在重来,发现提示时间不对。在make时就提示

make: Warning: File `config.mak’ has modification time 2.7e+04 s in the future
make: warning:  Clock skew detected.  Your build may be incomplete

原因:如果上一次编译时为20071001,你把系统时间改成20070901后再编译就会报这样的错误.
解决:把时间改了或运行下来命令再make
find . -type f -exec touch {} \;

  相关解决方案