diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-08-05 15:26:45 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-08-05 15:26:45 +0200 |
commit | c5f14c1735d1eb1c7df29515da78e3acde15a5a3 (patch) | |
tree | ebf1ba81e1eabac7d3e3253f7c2401a92c577160 /libbuild2/cc/link-rule.hxx | |
parent | 3f10e86873306e443159d3b8296eb024461e5c2f (diff) |
Implement traversal pruning in process_libraries()
Diffstat (limited to 'libbuild2/cc/link-rule.hxx')
-rw-r--r-- | libbuild2/cc/link-rule.hxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/libbuild2/cc/link-rule.hxx b/libbuild2/cc/link-rule.hxx index f990415..fd12e89 100644 --- a/libbuild2/cc/link-rule.hxx +++ b/libbuild2/cc/link-rule.hxx @@ -174,19 +174,22 @@ namespace build2 append_libraries (appended_libraries&, strings&, const scope&, action, const file&, bool, lflags, linfo, - bool = true, bool = true) const; + bool = true, bool = true, + library_cache* = nullptr) const; void append_libraries (sha256&, bool&, timestamp, const scope&, action, - const file&, bool, lflags, linfo) const; + const file&, bool, lflags, linfo, + library_cache* = nullptr) const; using rpathed_libraries = small_vector<const file*, 256>; void rpath_libraries (rpathed_libraries&, strings&, const scope&, - action, const file&, bool, linfo, bool, bool) const; + action, const file&, bool, linfo, bool, bool, + library_cache* = nullptr) const; void rpath_libraries (strings&, |