aboutsummaryrefslogtreecommitdiff
path: root/build2/scope
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-06-27 16:59:09 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-06-27 16:59:09 +0200
commit41cad5bba8a718a0403c0578660c60e81c9f46e4 (patch)
tree7eebba42dac307fdfcf600f5f6527afe0c0f4fea /build2/scope
parent34cc74df52ed129bffeb7b6fcf11f05c222550ba (diff)
Add config.bin.target var/hint, use to decide libso{} install mode
Normally the user doesn't need to specify config.bin.target explicitly since the cxx module will hint it. We now also have the whole set of target's components: bin.target.{cpu,vendor,system,version,class}
Diffstat (limited to 'build2/scope')
-rw-r--r--build2/scope10
1 files changed, 5 insertions, 5 deletions
diff --git a/build2/scope b/build2/scope
index 3649aa1..b7c9aef 100644
--- a/build2/scope
+++ b/build2/scope
@@ -154,17 +154,17 @@ namespace build2
// is returned.
//
value&
- assign (const variable& var) {return vars.assign (var).first.get ();}
+ assign (const variable& var) {return vars.assign (var);}
value&
- assign (const string& name) {return vars.assign (name).first.get ();}
+ assign (const string& name) {return vars.assign (name);}
- // Unlike the two above, assign a non-overridable variable with normal
- // visibility.
+ // Unlike the two above, assign a typed non-overridable variable with
+ // normal visibility.
//
template <typename T>
value&
- assign (string name) {return vars.assign<T> (move (name)).first.get ();}
+ assign (string name) {return vars.assign<T> (move (name));}
// Return a value suitable for appending. If the variable does not
// exist in this scope's map, then outer scopes are searched for