chandlerc wrote:
@dyung - OK, I think the current just-pushed version of this PR is worth
another test.
I've taught the TableGen string table emission to go back to working around the
MSVC issues using a different table form that we used to use in LLVM when MSVC
had a reliable error on it. It
https://github.com/SuibianP ready_for_review
https://github.com/llvm/llvm-project/pull/121269
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Hu Jialun (SuibianP)
Changes
Currently, the named pipe is passed by name and a transient `ofstream` is
constructed at each I/O request. This assumes,
- Blocking semantics: FIFO I/O waits for the other side to connect.
- Buffered semanti
SuibianP wrote:
As it turns out that Win32 `execvp` actually [creates a new process instead of
replace the current process
image](https://github.com/python/cpython/issues/101191#issuecomment-1399013437),
I changed the implementation to use `CreateProcess` before reporting the PID
of the targe
https://github.com/SuibianP updated
https://github.com/llvm/llvm-project/pull/121269
>From c23b994141630ef9a1c56760aae889f37334aa69 Mon Sep 17 00:00:00 2001
From: Hu Jialun
Date: Sat, 28 Dec 2024 22:39:33 +0800
Subject: [PATCH] [lldb-dap] Implement runInTerminal for Windows
Currently, the name