From 153da9400002a75bf4003f0c8779e9099e0185bc Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 26 Sep 2016 17:22:24 +0100 Subject: [PATCH] utils: Add all_multilib_tune_list function Its useful to be able to query a list of variables to obtain the values in each multilib context. This adds such a function which works even if called in the non-default recipe context. (From OE-Core rev: 4202a09dece07c0d3f654c2b1ae504a031b4ee90) Signed-off-by: Richard Purdie --- meta/classes/utils.bbclass | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass index 3c2a14fa42..800b56578c 100644 --- a/meta/classes/utils.bbclass +++ b/meta/classes/utils.bbclass @@ -382,3 +382,40 @@ def all_multilib_tune_values(d, var, unique = True, need_split = True, delim = ' else: ret = values return " ".join(ret) + +def all_multilib_tune_list(vars, d): + """ + Return a list of ${VAR} for each variable VAR in vars from each + multilib tune configuration. + Is safe to be called from a multilib recipe/context as it can + figure out the original tune and remove the multilib overrides. + """ + values = {} + for v in vars: + values[v] = [] + + localdata = bb.data.createCopy(d) + overrides = localdata.getVar("OVERRIDES", False).split(":") + newoverrides = [] + for o in overrides: + if not o.startswith("virtclass-multilib-"): + newoverrides.append(o) + localdata.setVar("OVERRIDES", ":".join(newoverrides)) + localdata.setVar("MLPREFIX", "") + origdefault = localdata.getVar("DEFAULTTUNE_MULTILIB_ORIGINAL", True) + if origdefault: + localdata.setVar("DEFAULTTUNE", origdefault) + bb.data.update_data(localdata) + values['ml'] = [''] + for v in vars: + values[v].append(localdata.getVar(v, True)) + variants = d.getVar("MULTILIB_VARIANTS", True) or "" + for item in variants.split(): + localdata = bb.data.createCopy(d) + overrides = localdata.getVar("OVERRIDES", False) + ":virtclass-multilib-" + item + localdata.setVar("OVERRIDES", overrides) + localdata.setVar("MLPREFIX", item + "-") + bb.data.update_data(localdata) + values[v].append(localdata.getVar(v, True)) + values['ml'].append(item) + return values