aboutsummaryrefslogtreecommitdiff
path: root/build/cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-04-28 16:14:30 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-04-28 16:14:30 +0200
commitfc1e4124a533b7f628dc00d343b9061367634b27 (patch)
treef2bdf45f35a6c92b6094517dcdb7749259c0bd0a /build/cxx
parent56ce5687567150b0b2cc3e57540d564793ef6bf7 (diff)
Second iteration over import/export support
Diffstat (limited to 'build/cxx')
-rw-r--r--build/cxx/rule.cxx87
1 files changed, 77 insertions, 10 deletions
diff --git a/build/cxx/rule.cxx b/build/cxx/rule.cxx
index ec2a0b9..a23e81e 100644
--- a/build/cxx/rule.cxx
+++ b/build/cxx/rule.cxx
@@ -68,6 +68,22 @@ namespace build
}
}
+ // Append library options from one of the cxx.export.* variables
+ // recursively, prerequisite libraries first.
+ //
+ static void
+ append_lib_options (vector<const char*>& args, target& l, const char* var)
+ {
+ for (target* t: l.prerequisite_targets)
+ {
+ if (t != nullptr &&
+ (t->is_a<lib> () || t->is_a<liba> () || t->is_a<libso> ()))
+ append_lib_options (args, *t, var);
+ }
+
+ append_options (args, l, var);
+ }
+
// compile
//
void* compile::
@@ -121,12 +137,25 @@ namespace build
// When cleaning, ignore prerequisites that are not in the same
// or a subdirectory of ours.
//
- switch (a.operation ())
+ for (prerequisite& p: group_prerequisites (t))
{
- case default_id:
- case update_id: search_and_match (a, t); break;
- case clean_id: search_and_match (a, t, t.dir); break;
- default: assert (false);
+ target& pt (search (p));
+
+ if (a.operation () == clean_id && !pt.dir.sub (t.dir))
+ continue;
+
+ build::match (a, pt);
+
+ // A dependency on a library is there so that we can get its
+ // cxx.export.poptions. In particular, making sure it is
+ // executed before us will only restrict parallelism. But we
+ // do need to match it in order to get its prerequisite_targets
+ // populated; see append_lib_options() above.
+ //
+ if (pt.is_a<lib> () || pt.is_a<liba> () || pt.is_a<libso> ())
+ continue;
+
+ t.prerequisite_targets.push_back (&pt);
}
// Inject additional prerequisites. For now we only do it for
@@ -205,6 +234,16 @@ namespace build
vector<const char*> args {cxx.c_str ()};
+ // Add cxx.export.poptions from prerequisite libraries.
+ //
+ for (prerequisite& p: group_prerequisites (t))
+ {
+ target& pt (*p.target); // Already searched and matched.
+
+ if (pt.is_a<lib> () || pt.is_a<liba> () || pt.is_a<libso> ())
+ append_lib_options (args, pt, "cxx.export.poptions");
+ }
+
append_options (args, t, "cxx.poptions");
// @@ Some C++ options (e.g., -std, -m) affect the preprocessor.
@@ -369,6 +408,16 @@ namespace build
vector<const char*> args {cxx.c_str ()};
+ // Add cxx.export.poptions from prerequisite libraries.
+ //
+ for (prerequisite& p: group_prerequisites (t))
+ {
+ target& pt (*p.target); // Already searched and matched.
+
+ if (pt.is_a<lib> () || pt.is_a<liba> () || pt.is_a<libso> ())
+ append_lib_options (args, pt, "cxx.export.poptions");
+ }
+
append_options (args, t, "cxx.poptions");
append_options (args, t, "cxx.coptions");
@@ -586,6 +635,7 @@ namespace build
// We may need the project roots for rule chaining (see below).
// We will resolve them lazily only if needed.
//
+ scope* root (nullptr);
const dir_path* out_root (nullptr);
const dir_path* src_root (nullptr);
@@ -673,16 +723,16 @@ namespace build
continue;
}
- if (out_root == nullptr)
+ if (root == nullptr)
{
// Which scope shall we use to resolve the root? Unlikely,
// but possible, the prerequisite is from a different project
// altogether. So we are going to use the target's project.
//
- scope* rs (t.root_scope ());
- assert (rs != nullptr); // Shouldn't have matched.
- out_root = &rs->path ();
- src_root = &rs->src_path ();
+ root = t.root_scope ();
+ assert (root != nullptr); // Shouldn't have matched.
+ out_root = &root->path ();
+ src_root = &root->src_path ();
}
prerequisite& cp (p);
@@ -817,6 +867,23 @@ namespace build
// Note: add the source to the group, not the member.
//
pt->prerequisites.emplace_back (cp);
+
+ // Add our imported lib*{} prerequisites to the object file (see
+ // cxx.export.poptions above for details).
+ //
+ for (prerequisite& p: group_prerequisites (t))
+ {
+ if (p.is_a<lib> () || p.is_a<liba> () || p.is_a<libso> ())
+ {
+ // Check that it is imported, that is its root scope differs
+ // from ours.
+ //
+ if (p.dir.absolute () && // Imported is always absolute.
+ scopes.find (p.dir).root_scope () != root)
+ pt->prerequisites.emplace_back (p);
+ }
+ }
+
build::match (a, *ot);
}