Jump to content
  • 0
Sign in to follow this  
karazu

What error is this? (COMPILING)

Question

make[1]: warning:  Clock skew detected.  Your build may be incomplete.
make[1]: Leaving directory `/home/*********/trunk/src/map'
building conf/import folder...
Edited by karazu

Share this post


Link to post
Share on other sites

2 answers to this question

Recommended Posts

  • 0

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.

Share this post


Link to post
Share on other sites
  • 0

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.

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.