aboutsummaryrefslogtreecommitdiff
path: root/build2
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-08-25 09:45:42 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-08-25 09:45:42 +0200
commite347540d400c552917ca7067c4571f1028f6e1af (patch)
treeca22e42072df4a0277bfa7d63b57b74a2aeacc4b /build2
parent78724c86b63d08b08ebe8be2a98856a7c9dc6d75 (diff)
Handle *.export.loptions
Diffstat (limited to 'build2')
-rw-r--r--build2/cc/link.cxx28
1 files changed, 26 insertions, 2 deletions
diff --git a/build2/cc/link.cxx b/build2/cc/link.cxx
index b608817..7e639ed 100644
--- a/build2/cc/link.cxx
+++ b/build2/cc/link.cxx
@@ -1059,8 +1059,17 @@ namespace build2
//
if (const string* t = cast_null<string> (l.vars[c_type]))
{
+ // @@ Shouldn't, ideally, we filter loptions to only include -L?
+ //
+ append_options (args, l, c_loptions);
append_options (args, l, c_libs);
- append_options (args, l, *t == x ? x_libs : var_pool[*t + ".libs"]);
+
+ append_options (args,
+ l,
+ *t == x ? x_loptions : var_pool[*t + ".loptions"]);
+ append_options (args,
+ l,
+ *t == x ? x_libs : var_pool[*t + ".libs"]);
}
}
else
@@ -1109,7 +1118,10 @@ namespace build2
// @@ Should we also pick one based on cc.type? And also *.poptions in
// compile? Feels right.
//
+ append_options (args, l, c_export_loptions);
append (c_export_libs);
+
+ append_options (args, l, x_export_loptions);
append (x_export_libs);
}
}
@@ -1140,8 +1152,17 @@ namespace build2
//
if (const string* t = cast_null<string> (l.vars[c_type]))
{
+ // @@ Shouldn't, ideally, we filter loptions to only include -L?
+ //
+ hash_options (cs, l, c_loptions);
hash_options (cs, l, c_libs);
- hash_options (cs, l, *t == x ? x_libs : var_pool[*t + ".libs"]);
+
+ hash_options (cs,
+ l,
+ *t == x ? x_loptions : var_pool[*t + ".loptions"]);
+ hash_options (cs,
+ l,
+ *t == x ? x_libs : var_pool[*t + ".libs"]);
}
}
else
@@ -1185,7 +1206,10 @@ namespace build2
}
};
+ hash_options (cs, l, c_export_loptions);
hash (c_export_libs);
+
+ hash_options (cs, l, x_export_loptions);
hash (x_export_libs);
}
}