aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-05-24 11:02:00 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-05-24 11:02:00 +0200
commit8746b3956d8996d2268f821eb8c98022146fbb04 (patch)
treebffd898dde8163f63457fc42bc19d70832d6b633
parent7dee9936074bcbbf9dfe4faf2d86165abb7d9eb9 (diff)
Skip auto-generated header mapping if include path is not normalizable
-rw-r--r--build2/cc/compile-rule.cxx67
1 files changed, 37 insertions, 30 deletions
diff --git a/build2/cc/compile-rule.cxx b/build2/cc/compile-rule.cxx
index b81b19a..ea07a09 100644
--- a/build2/cc/compile-rule.cxx
+++ b/build2/cc/compile-rule.cxx
@@ -2075,7 +2075,7 @@ namespace build2
// Update and add a header file to the list of prerequisite targets.
// Depending on the cache flag, the file is assumed to either have come
- // from the depdb cache or from the compiler run. Return whether the
+ // from the depdb cache or from the compiler run. Return true if the
// extraction process should be restarted.
//
auto add = [&trace, &pfx_map, &so_map,
@@ -2201,46 +2201,53 @@ namespace build2
//
if (f.relative ())
{
- f.normalize ();
-
// This is probably as often an error as an auto-generated file, so
// trace at level 4.
//
l4 ([&]{trace << "non-existent header '" << f << "'";});
- if (!pfx_map)
- pfx_map = build_prefix_map (bs, a, t, li);
-
- // First try the whole file. Then just the directory.
- //
- // @@ Has to be a separate map since the prefix can be the same as
- // the file name.
- //
- // auto i (pfx_map->find (f));
+ f.normalize ();
- // Find the most qualified prefix of which we are a sub-path.
+ // The relative path might still contain '..' (e.g., ../foo.hxx;
+ // presumably ""-include'ed). We don't attempt to support auto-
+ // generated headers with such inclusion styles.
//
- if (!pfx_map->empty ())
+ if (f.normalized ())
{
- dir_path d (f.directory ());
- auto i (pfx_map->find_sup (d));
+ if (!pfx_map)
+ pfx_map = build_prefix_map (bs, a, t, li);
+
+ // First try the whole file. Then just the directory.
+ //
+ // @@ Has to be a separate map since the prefix can be the same as
+ // the file name.
+ //
+ // auto i (pfx_map->find (f));
- if (i != pfx_map->end ())
+ // Find the most qualified prefix of which we are a sub-path.
+ //
+ if (!pfx_map->empty ())
{
- const dir_path& pd (i->second.directory);
+ dir_path d (f.directory ());
+ auto i (pfx_map->find_sup (d));
- // If this is a prefixless mapping, then only use it if we can
- // resolve it to an existing target (i.e., it is explicitly
- // spelled out in a buildfile).
- //
- // Note that at some point we will probably have a list of
- // directories.
- //
- pt = find (pd / d, f.leaf (), !i->first.empty ());
- if (pt != nullptr)
+ if (i != pfx_map->end ())
{
- f = pd / f;
- l4 ([&]{trace << "mapped as auto-generated " << f;});
+ const dir_path& pd (i->second.directory);
+
+ // If this is a prefixless mapping, then only use it if we can
+ // resolve it to an existing target (i.e., it is explicitly
+ // spelled out in a buildfile).
+ //
+ // Note that at some point we will probably have a list of
+ // directories.
+ //
+ pt = find (pd / d, f.leaf (), !i->first.empty ());
+ if (pt != nullptr)
+ {
+ f = pd / f;
+ l4 ([&]{trace << "mapped as auto-generated " << f;});
+ }
}
}
}
@@ -2260,7 +2267,7 @@ namespace build2
// symlinks. So now we realize (i.e., realpath(3)) it instead.
// Unless it comes from the depdb, in which case we've already done
// that. This is also where we handle src-out remap (again, not
- // needed if cached)
+ // needed if cached).
//
if (!cache)
{