diff options
author | Jan Niklas Hasse <jhasse@bixense.com> | 2022-01-28 11:17:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-28 11:17:46 (GMT) |
commit | 41156cd9c97a4e49473c473b7952f8cb7c43c56c (patch) | |
tree | f3e971b058253b2e673b766eefd61c8db57d3e4c | |
parent | 7c2df31839302177b809fd5de33aa7727432d26f (diff) | |
parent | 5339c62bd63691d8030c6195cc83c50d5ccd9282 (diff) | |
download | Ninja-41156cd9c97a4e49473c473b7952f8cb7c43c56c.zip Ninja-41156cd9c97a4e49473c473b7952f8cb7c43c56c.tar.gz Ninja-41156cd9c97a4e49473c473b7952f8cb7c43c56c.tar.bz2 |
Merge pull request #2055 from swills/still-dirty-time
Suggest possible cause for hitting cycle limit
-rw-r--r-- | src/ninja.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ninja.cc b/src/ninja.cc index 89580ae..06be1da 100644 --- a/src/ninja.cc +++ b/src/ninja.cc @@ -1515,7 +1515,7 @@ NORETURN void real_main(int argc, char** argv) { exit(result); } - status->Error("manifest '%s' still dirty after %d tries", + status->Error("manifest '%s' still dirty after %d tries, perhaps system time is not set", options.input_file, kCycleLimit); exit(1); } |