diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-01-31 09:07:05 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-01-31 09:07:05 +0200 |
commit | a71590646f37b2696f857dd71a68b34e2f57d15c (patch) | |
tree | dd870234ee4c139aff400939df721fdf72708260 /libbuild2/cc/common.hxx | |
parent | 5a22b156fac945ed03503b12ebfda4cc9e80772d (diff) |
Tag installed library targets with linker path
This makes sure we get different targets for different toolchains.
Diffstat (limited to 'libbuild2/cc/common.hxx')
-rw-r--r-- | libbuild2/cc/common.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libbuild2/cc/common.hxx b/libbuild2/cc/common.hxx index 84d287c..76c8cff 100644 --- a/libbuild2/cc/common.hxx +++ b/libbuild2/cc/common.hxx @@ -299,8 +299,9 @@ namespace build2 static ulock insert_library (context&, T*&, - const string&, - const dir_path&, + string, + dir_path, + const process_path&, optional<string>, bool, tracer&); |