diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-03-16 11:36:10 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-03-16 11:36:10 +0200 |
commit | 7a4f1ae238b918fe21671d0d1a5549aeb1fe6425 (patch) | |
tree | 6501d18854cc85644a3e73a857fda82b17b73c45 /libbuild2/context.cxx | |
parent | 99046d23d78d341674bbad3414567f362ffc60cd (diff) |
Define intermediate build results file cache interface
Diffstat (limited to 'libbuild2/context.cxx')
-rw-r--r-- | libbuild2/context.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libbuild2/context.cxx b/libbuild2/context.cxx index df06aa8..e8f671d 100644 --- a/libbuild2/context.cxx +++ b/libbuild2/context.cxx @@ -58,6 +58,7 @@ namespace build2 context:: context (scheduler& s, global_mutexes& ms, + file_cache& fc, bool mo, bool nem, bool dr, @@ -68,6 +69,7 @@ namespace build2 : data_ (new data (*this)), sched (s), mutexes (ms), + fcache (fc), match_only (mo), no_external_modules (nem), dry_run_option (dr), |