karazu 33 Posted October 22, 2013 (edited) make[1]: warning: Clock skew detected. Your build may be incomplete. make[1]: Leaving directory `/home/*********/trunk/src/map' building conf/import folder... Edited October 22, 2013 by karazu Quote Share this post Link to post Share on other sites
0 Nameless2you 97 Posted October 22, 2013 After a quick google search and choosing the first result: http://stackoverflow.com/questions/3824500/compling-c-on-remote-linux-machine-clock-skew-detected-warning That message is usually an indication 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 files 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. Do take note it's only a warning, not an error, it should still have compiled. 1 karazu reacted to this Quote Share this post Link to post Share on other sites
0 karazu 33 Posted October 22, 2013 After a quick google search and choosing the first result: http://stackoverflow.com/questions/3824500/compling-c-on-remote-linux-machine-clock-skew-detected-warning That message is usually an indication 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 files 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. Do take note it's only a warning, not an error, it should still have compiled. Thank you for the answer, I was also searching, I just want to confirm if its fine. Thank you again. Quote Share this post Link to post Share on other sites
Share this post
Link to post
Share on other sites