如何解决Fedora Linux中“检测到时钟偏差。您的构建可能不完整”错误?
我在终端中使用make
命令时收到此错误。
答案 0 :(得分:3)
是的,当然,清理代码库然后发布
find . -exec touch {} \;
诀窍。
正如链接所说:
Sometimes the last modified time on the files is wrong:
because it is greater than the time of day clock. `make'
then issues the above message.
You usually see these sort of problems in programming
enviroments that use NFS to share files but don't sync
clocks using NTP.
答案 1 :(得分:2)
简单的解决方案:
一切都会好的。
欲了解更多信息: http://embeddedbuzz.blogspot.in/2012/03/make-warning-clock-skew-detected-your.html
答案 2 :(得分:1)