From 7cf3492e05e304fa4fdb17763a2bec9363dfcef5 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 20 Sep 2021 21:05:04 +0300 Subject: Allow options and arguments in any order inside argument groups in sync Also optimize options/arguments parsing in bdep.cxx. --- bdep/bdep.cxx | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'bdep/bdep.cxx') diff --git a/bdep/bdep.cxx b/bdep/bdep.cxx index 3e762e8..7bc747d 100644 --- a/bdep/bdep.cxx +++ b/bdep/bdep.cxx @@ -181,6 +181,12 @@ init (const common_options& co, { if (opt) { + // Parse the next chunk of options until we reach an argument (or eos). + // Stop (rather than fail) on unknown option to handle -@. + // + if (o.parse (scan, cli::unknown_mode::stop) && !scan.more ()) + break; + const char* a (scan.peek ()); // If we see first "--", then we are done parsing options. @@ -194,7 +200,7 @@ init (const common_options& co, continue; } - // @ & -@ + // Handle @ & -@ // if (*a == '@' || (*a == '-' && a[1] == '@')) { @@ -203,10 +209,10 @@ init (const common_options& co, continue; } - // Parse the next chunk of options until we reach an argument (or eos). + // Handle unknown option. // - if (o.parse (scan)) - continue; + if (a[0] == '-' && a[1] != '\0') + throw cli::unknown_option (a); // Fall through. } -- cgit v1.1