diff options
author | Ludovic Courtès <ludo@gnu.org> | 2011-06-30T15·19+0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2011-06-30T15·19+0000 |
commit | 5c9e9f732df6d95d712f25de9880b7461c53d6ca (patch) | |
tree | d4e562f7048f57d0ec87461bce441dfd450374f7 /src/libstore/globals.cc | |
parent | 9c99aa2620b8f86c0e7f99ebfe868e8ccb306f71 (diff) |
Add support for the `build-timeout' and `--timeout' options.
Diffstat (limited to 'src/libstore/globals.cc')
-rw-r--r-- | src/libstore/globals.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstore/globals.cc b/src/libstore/globals.cc index 7069d104aae4..2e9dc88237d1 100644 --- a/src/libstore/globals.cc +++ b/src/libstore/globals.cc @@ -26,6 +26,7 @@ unsigned int buildCores = 1; bool readOnlyMode = false; string thisSystem = "unset"; time_t maxSilentTime = 0; +time_t buildTimeout = 0; Paths substituters; bool useBuildHook = true; bool printBuildTrace = false; |