[Lldb-commits] [lldb] [lldb/crashlog] Add `--no-parallel-image-loading` hidden flag (PR #94513)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Jun 5 11:22:40 PDT 2024


================
@@ -1720,6 +1735,13 @@ def CreateSymbolicateCrashLogOptions(
         help="show source for all threads, not just the crashed thread",
         default=False,
     )
+    arg_parser.add_argument(
+        "--no-parallel-image-loading",
+        dest="parallel_image_loading",
+        action="store_false",
+        help=argparse.SUPPRESS,
+        default=True,
----------------
JDevlieghere wrote:

Does this mean parallel loading is on or off by default? The negation confuses me. 

https://github.com/llvm/llvm-project/pull/94513


More information about the lldb-commits mailing list