aboutsummaryrefslogtreecommitdiff
path: root/build2/cc/link
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-02-15 03:55:15 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-03-02 14:03:34 +0200
commitb37f1aa6398065be806e6605a023189685669885 (patch)
treeb9b32091e3d70a31852302b24c99ecb62465464a /build2/cc/link
parenta64b2ae2099346471ead988d5f2d383d55a9bf89 (diff)
Implement parallel match
Diffstat (limited to 'build2/cc/link')
-rw-r--r--build2/cc/link19
1 files changed, 10 insertions, 9 deletions
diff --git a/build2/cc/link b/build2/cc/link
index c787015..cd83516 100644
--- a/build2/cc/link
+++ b/build2/cc/link
@@ -25,10 +25,10 @@ namespace build2
link (data&&);
virtual match_result
- match (slock&, action, target&, const string& hint) const override;
+ match (action, target&, const string&) const override;
virtual recipe
- apply (slock&, action, target&) const override;
+ apply (action, target&) const override;
target_state
perform_update (action, const target&) const;
@@ -70,18 +70,17 @@ namespace build2
void
append_libraries (strings&,
const file&, bool,
- const scope&, lorder) const;
+ const scope&, action, lorder) const;
void
hash_libraries (sha256&,
const file&, bool,
- const scope&, lorder) const;
+ const scope&, action, lorder) const;
void
rpath_libraries (strings&,
const target&,
- const scope&,
- lorder,
+ const scope&, action, lorder,
bool) const;
// Windows rpath emulation (windows-rpath.cxx).
@@ -98,13 +97,15 @@ namespace build2
using windows_dlls = std::set<windows_dll>;
timestamp
- windows_rpath_timestamp (const file&, const scope&, lorder) const;
+ windows_rpath_timestamp (const file&,
+ const scope&,
+ action, lorder) const;
windows_dlls
- windows_rpath_dlls (const file&, const scope&, lorder) const;
+ windows_rpath_dlls (const file&, const scope&, action, lorder) const;
void
- windows_rpath_assembly (const file&, const scope&, lorder,
+ windows_rpath_assembly (const file&, const scope&, action, lorder,
const string&,
timestamp,
bool) const;