[Lldb-commits] [PATCH] D47110: [LLDB, lldb-mi] Add option --synchronous.

Greg Clayton via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon May 21 07:12:16 PDT 2018


clayborg accepted this revision.
clayborg added a comment.

Looks fine, just move the option parsing code down by the others instead of having it before the checking for file args.



================
Comment at: tools/lldb-mi/MIDriver.cpp:441-444
+      if (strArg.compare("--synchronous") == 0) {
+        CMICmnLLDBDebugSessionInfo::Instance().GetDebugger().SetAsync(false);
+      }
+
----------------
This should be moved down by the other arguments (like to line 471 of this file, or 473 of old one)


Repository:
  rL LLVM

https://reviews.llvm.org/D47110





More information about the lldb-commits mailing list