SA
메인 내용으로 이동

Clock skew detected

make: warning: Clock skew detected. Your build may be incomplete.

This can happen when make-ing inside a VM and when VM has a different time than the Hosting Machine.

That message usually indicates that some of your files have modification times later than the current system time. Since make decides which files to compile when performing an incremental build by checking if a source file has been modified more recently than its object file, this situation can cause unnecessary files to be built, or worse, necessary files to not be built. However, if you are building from scratch (not doing an incremental build), you can likely ignore this warning without consequence. - makefile - Compiling C++ on remote Linux machine - "clock skew detected" warning - Stack Overflow

이 문서를 언급한 문서들