aboutsummaryrefslogtreecommitdiff
path: root/build2/cc/link
diff options
context:
space:
mode:
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;