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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

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