diff options
author | Steve Wills <steve@mouf.net> | 2021-11-23 18:49:05 (GMT) |
---|---|---|
committer | Steve Wills <steve@mouf.net> | 2021-11-23 18:49:05 (GMT) |
commit | 5339c62bd63691d8030c6195cc83c50d5ccd9282 (patch) | |
tree | 42d4b41492eb70746bbadda9d001db648a29d3fd /src | |
parent | e5935b63757f3a788bc56d2c7afd9e390daf2f07 (diff) | |
download | Ninja-5339c62bd63691d8030c6195cc83c50d5ccd9282.zip Ninja-5339c62bd63691d8030c6195cc83c50d5ccd9282.tar.gz Ninja-5339c62bd63691d8030c6195cc83c50d5ccd9282.tar.bz2 |
Suggest possible cause for hitting cycle limit
Diffstat (limited to 'src')
-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 3e5c971..8e5a44a 100644 --- a/src/ninja.cc +++ b/src/ninja.cc @@ -1497,7 +1497,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); } |