Browse thread
make[1]: warning: Clock skew detected. Your build may be incomplete.
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | NaN-NaN-NaN (NaN:NaN) |
| From: | Jacques Garrigue <garrigue@m...> |
| Subject: | Re: [Caml-list] make[1]: warning: Clock skew detected. Your build may be incomplete. |
From: Mattias Waldau <mattias.waldau@abc.se> > I use NTFS, and I do not think it is a hardware problem. > > I also tried telling make to use 2 threads, i.e. "make -j 2", and then > the compilation fails after a while. Therefor, I think the most probably > cause is that not all dependencies are included in the Makefile. This is not really relevant. Many Makefiles include lines like target: dep1 dep2 dep3 where dep1, dep2 and dep3 are supposed to be run in that order. With -j, make will run them in parallel, which breaks this kind of Makefile. But without -j the build works correctly, so you cannot say that the Makefile is wrong, just that it doesn't support -j. Whether you use an SMP or not will not change that. Jacques Garrigue