What error is this? (COMPILING)

karazu

New member
Messages
1,115
Points
0
make[1]: warning:  Clock skew detected.  Your build may be incomplete.
make[1]: Leaving directory `/home/*********/trunk/src/map'
building conf/import folder...
 
Last edited by a moderator:
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.

 
Last edited by a moderator:
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.

 
Back
Top