[Lldb-commits] [lldb] [lldb-dap] Refactoring lldb-dap port listening mode to allow multiple connections. (PR #116392)

Adrian Vogelsgesang via lldb-commits lldb-commits at lists.llvm.org
Fri Nov 15 10:04:47 PST 2024


================
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main(int argc, char const *argv[]) {
+  printf("hello world!\n"); // breakpoint 1
+  return 0;
+}
----------------
vogelsgesang wrote:

missing trailing new line (afaik, we are using UNIX conventions, not Windows conventions?)

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


More information about the lldb-commits mailing list