aboutsummaryrefslogtreecommitdiff
path: root/build2/cxx/compile.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-03-10 09:33:27 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-03-10 09:33:27 +0200
commit3e78b3eea3a95e8ef5bee59a9c85ddfa73c03ab7 (patch)
treee1513f918f55a8f68e55a2ddebe5c21f1ac42502 /build2/cxx/compile.cxx
parent39a0e4230d9f79447755e765446f7fe6b897da99 (diff)
Rename cxx.host.* to cxx.target.*
Diffstat (limited to 'build2/cxx/compile.cxx')
-rw-r--r--build2/cxx/compile.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/build2/cxx/compile.cxx b/build2/cxx/compile.cxx
index 2b37250..3cd4b9d 100644
--- a/build2/cxx/compile.cxx
+++ b/build2/cxx/compile.cxx
@@ -131,7 +131,7 @@ namespace build2
if (a == perform_update_id)
{
scope& rs (t.root_scope ());
- const string& sys (as<string> (*rs["cxx.host.system"]));
+ const string& sys (as<string> (*rs["cxx.target.system"]));
// The cached prerequisite target should be the same as what is in
// t.prerequisite_targets since we used standard search() and match()
@@ -463,7 +463,7 @@ namespace build2
auto init_args = [&t, &s, &rs, &args, &cxx_std] ()
{
const string& cxx (as<string> (*rs["config.cxx"]));
- const string& sys (as<string> (*rs["cxx.host.system"]));
+ const string& sys (as<string> (*rs["cxx.target.system"]));
args.push_back (cxx.c_str ());
@@ -925,7 +925,7 @@ namespace build2
scope& rs (t.root_scope ());
const string& cxx (as<string> (*rs["config.cxx"]));
- const string& sys (as<string> (*rs["cxx.host.system"]));
+ const string& sys (as<string> (*rs["cxx.target.system"]));
cstrings args {cxx.c_str ()};