aboutsummaryrefslogtreecommitdiff
path: root/build/cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-06-22 09:51:32 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-06-22 09:51:32 +0200
commit4f52c4ed65883dacef32587cf066fbb1182c6628 (patch)
tree0f28031e7ee382e97495cfc595dc261c0c1b3dfc /build/cxx
parent88d26293e08647361824622765f6f3c9cafde577 (diff)
Remove prerequisite rewriting from c/c++ dependency injection code
Diffstat (limited to 'build/cxx')
-rw-r--r--build/cxx/rule.cxx18
1 files changed, 4 insertions, 14 deletions
diff --git a/build/cxx/rule.cxx b/build/cxx/rule.cxx
index 9564638..e4c0dd7 100644
--- a/build/cxx/rule.cxx
+++ b/build/cxx/rule.cxx
@@ -333,30 +333,20 @@ namespace build
//
// Note that if the file has no extension, we record an empty
// extension rather than NULL (which would signify that the
- // default extension needs to be added).
+ // default extension should be added).
//
dir_path d (f.directory ());
string n (f.leaf ().base ().string ());
const char* es (f.extension ());
const string* e (&extension_pool.find (es != nullptr ? es : ""));
- // Find or insert prerequisite.
+ // Find or insert target.
//
// If there is no extension (e.g., standard C++ headers),
// then assume it is a header. Otherwise, let the standard
// mechanism derive the type from the extension. @@ TODO.
//
- prerequisite& p (
- ds.prerequisites.insert (
- hxx::static_type, move (d), move (n), e, ds, trace).first);
-
- // Add to our prerequisites list.
- //
- t.prerequisites.emplace_back (p);
-
- // Resolve to target.
- //
- path_target& pt (dynamic_cast<path_target&> (search (p)));
+ path_target& pt (search<hxx> (d, n, e, &ds));
// Assign path.
//
@@ -367,7 +357,7 @@ namespace build
//
build::match (a, pt);
- // Add to our resolved target list.
+ // Add to our prerequisite target list.
//
t.prerequisite_targets.push_back (&pt);
}