diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-05-15 12:11:30 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-05-27 08:28:34 +0200 |
commit | 02d902cb8e5e69b123fcdf170e5eeb9ca5605304 (patch) | |
tree | 29ed61127744a3fc1554bee96230342cae8f5972 /libbuild2/dump.cxx | |
parent | ba1fb800d20e7757cd8523a0793f63cff137c7cf (diff) |
Amalgamation cutoff support
Now a project that disables amalgamation will not logically "see" an outer
project even if it's physically inside its scope.
Diffstat (limited to 'libbuild2/dump.cxx')
-rw-r--r-- | libbuild2/dump.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libbuild2/dump.cxx b/libbuild2/dump.cxx index e253988..8ee68b7 100644 --- a/libbuild2/dump.cxx +++ b/libbuild2/dump.cxx @@ -400,6 +400,11 @@ namespace build2 // Nested scopes of which we are an immediate parent. // + // Note that because we use the logical (rather than physical) parent, we + // will be printing the logical scope hierarchy (i.e., a project with + // disabled amalgamation will be printed directly inside the global + // scope). + // for (auto e (p.ctx.scopes.end ()); i != e && i->second.parent_scope () == &p; ) { |