From b37f1aa6398065be806e6605a023189685669885 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 15 Feb 2017 03:55:15 +0200 Subject: Implement parallel match --- build2/cc/link | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'build2/cc/link') 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; 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; -- cgit v1.1