From 2169f0e960c6e2b94518c03e6eb0406908b96e65 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 27 Jan 2020 09:07:09 +0200 Subject: Improve module loading API --- libbuild2/c/init.cxx | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'libbuild2/c/init.cxx') diff --git a/libbuild2/c/init.cxx b/libbuild2/c/init.cxx index 423e6af..4efba69 100644 --- a/libbuild2/c/init.cxx +++ b/libbuild2/c/init.cxx @@ -146,8 +146,7 @@ namespace build2 // Load cc.core.vars so that we can cache all the cc.* variables. // - if (!cast_false (rs["cc.core.vars.loaded"])) - load_module (rs, rs, "cc.core.vars", loc); + load_module (rs, rs, "cc.core.vars", loc); // Enter all the variables and initialize the module data. // @@ -285,10 +284,8 @@ namespace build2 // Load c.guess. // - if (!cast_false (rs["c.guess.loaded"])) - load_module (rs, rs, "c.guess", loc, false, hints); + auto& cm (load_module (rs, rs, "c.guess", loc, hints)); - config_module& cm (*rs.lookup_module ("c.guess")); cm.init (rs, loc, hints); return true; } @@ -325,10 +322,11 @@ namespace build2 // Load c.config. // - if (!cast_false (rs["c.config.loaded"])) - load_module (rs, rs, "c.config", loc, false, hints); + // @@ TODO: move guess to config and use return value? + // + load_module (rs, rs, "c.config", loc, hints); - config_module& cm (*rs.lookup_module ("c.guess")); + config_module& cm (*rs.find_module ("c.guess")); cc::data d { cm, -- cgit v1.1