This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Linux 2.6 nanosecond time stamp weirdness breaks GCC build


[ Linux 2.6 losing the nanoseconds from a file timestamp ]

There are two different failure modes, but in most cases only one
results in a real problem.

Case 1: make falsely thinks that the .o is younger than the .c.  It
decides not to rebuild the .o, resulting in a bad build.

Case 2: make falsely thinks that the .c is younger than the .o.  It
recompiles the .c file, even though it didn't have to.  Harmless.

So if we can make the bad situation look like a tie, and always rebuild
in the case of a tie, we will obtain valid builds, sometimes with
an extra compilation or two.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]