From d06e8d1d3b0594c74fa444da76c3c7925ed58f70 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 22 Sep 2020 11:28:53 +0200 Subject: Add ability to skip external modules during bootstrap (--no-external-modules) --- libbuild2/context.hxx | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libbuild2/context.hxx') diff --git a/libbuild2/context.hxx b/libbuild2/context.hxx index c4e1259..0790355 100644 --- a/libbuild2/context.hxx +++ b/libbuild2/context.hxx @@ -146,6 +146,10 @@ namespace build2 // bool match_only; + // Skip booting external modules flag (see --no-external-modules). + // + bool no_external_modules; + // Dry run flag (see --dry-run|-n). // // This flag is set (based on dry_run_option) only for the final execute @@ -479,6 +483,7 @@ namespace build2 context (scheduler&, global_mutexes&, bool match_only = false, + bool no_external_modules = false, bool dry_run = false, bool keep_going = true, const strings& cmd_vars = {}, -- cgit v1.1