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/cxx/init.cxx | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'libbuild2/cxx') diff --git a/libbuild2/cxx/init.cxx b/libbuild2/cxx/init.cxx index 8f404ea..d2601c4 100644 --- a/libbuild2/cxx/init.cxx +++ b/libbuild2/cxx/init.cxx @@ -369,8 +369,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. // @@ -532,10 +531,8 @@ namespace build2 // Load cxx.guess. // - if (!cast_false (rs["cxx.guess.loaded"])) - load_module (rs, rs, "cxx.guess", loc, false, hints); + auto& cm (load_module (rs, rs, "cxx.guess", loc, hints)); - config_module& cm (*rs.lookup_module ("cxx.guess")); cm.init (rs, loc, hints); return true; } @@ -580,10 +577,11 @@ namespace build2 // Load cxx.config. // - if (!cast_false (rs["cxx.config.loaded"])) - load_module (rs, rs, "cxx.config", loc, false, hints); + // @@ TODO: move guess to config and use return value? + // + load_module (rs, rs, "cxx.config", loc, hints); - config_module& cm (*rs.lookup_module ("cxx.guess")); + config_module& cm (*rs.find_module ("cxx.guess")); auto& vp (rs.ctx.var_pool.rw (rs)); -- cgit v1.1