aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/cc/link-rule.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-10-29 09:35:46 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-10-29 09:35:46 +0200
commitf189e03a083df9538ef914943b2cf552ee663bbb (patch)
tree2856298a243b2068eb42b46eddd11d32a4a80118 /libbuild2/cc/link-rule.cxx
parentbb2ad1820e3f1811edd8ab11ee0cbe4d19908367 (diff)
Add support for specifying custom load prefix and version clean patterns
Diffstat (limited to 'libbuild2/cc/link-rule.cxx')
-rw-r--r--libbuild2/cc/link-rule.cxx15
1 files changed, 10 insertions, 5 deletions
diff --git a/libbuild2/cc/link-rule.cxx b/libbuild2/cc/link-rule.cxx
index a9f798a..8a3b493 100644
--- a/libbuild2/cc/link-rule.cxx
+++ b/libbuild2/cc/link-rule.cxx
@@ -458,7 +458,9 @@ namespace build2
// a base for the version clean pattern.
//
cp_l = b;
- if (append_sep (cp_l, ls))
+ if (auto* p = cast_null<string> (t["bin.lib.load_suffix_pattern"]))
+ cp_l += *p;
+ else if (append_sep (cp_l, ls))
cp_l += "[0-9]*";
else
cp_l.clear (); // Non-digit load suffix (use custom clean pattern).
@@ -485,14 +487,17 @@ namespace build2
// we have the load clean pattern, `foo-[0-9]*-[0-9]*.dll`).
//
cp_v = cp_l.empty () ? b : cp_l;
- if (append_sep (cp_v, ver))
- {
+
+ if (auto* p = cast_null<string> (t["bin.lib.version_pattern"]))
+ cp_v += *p;
+ else if (append_sep (cp_v, ver))
cp_v += "[0-9]*";
- append_ext (cp_v);
- }
else
cp_v.clear (); // Non-digit version (use custom clean pattern).
+ if (!cp_v.empty ())
+ append_ext (cp_v);
+
b += ver;
}