[Lldb-commits] [lldb] [lldb][rpc] Upstream RPC Client Library Emitters (PR #147655)

Med Ismail Bennani via lldb-commits lldb-commits at lists.llvm.org
Thu Jul 24 21:47:23 PDT 2025


================
@@ -46,6 +48,12 @@ static std::string GetServerOutputDirectory() {
   return std::string(Path);
 }
 
+static std::string GetLibraryOutputDirectory() {
+  llvm::SmallString<128> Path(OutputDir.getValue());
----------------
medismailben wrote:

nit: I was wondering if we should make the template argument here be `PATH_MAX` but that's only defined on unix platforms, on windows is another macro called `MAX_PATH` which is hard coded to 260 I believe. May be we should go with that to match the smallest path length.

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


More information about the lldb-commits mailing list