Re: [lldb-dev] Using LLDB API on windows

2017-04-04 Thread Russell Greene via lldb-dev
Well I would guess the main problem is lldb being compiled in a msys environment which I guess lldb recognizes to be so posix to try and launch lldb-server. The results I gave you are from the mingw-w64-x86_64-lldb package in msys2. Pretty sure mingw and msvc have different ABIs though (at least f

Re: [lldb-dev] Using LLDB API on windows

2017-04-03 Thread Russell Greene via lldb-dev
ntation. On the > other hand, as you said there is no lldb-server. > > If you're interested in digging into the source code and trying to add a > patch for MinGW support, I can give you some pointers. > > On Mon, Apr 3, 2017 at 3:41 PM Russell Greene via lldb-dev < > ll

Re: [lldb-dev] Using LLDB API on windows

2017-04-03 Thread Russell Greene via lldb-dev
s Process::Launch, which (on > Windows) will do the correct thing to start up and connect to a Windows > process. > > > > See PlatformWindows::DebugProcess in > source\Plugins\Platform\Windows\PlatformWindows.cpp and > ProcessLauncherWIndows::LaunchProcess in > source\Host\w

Re: [lldb-dev] Using LLDB API on windows

2017-04-03 Thread Russell Greene via lldb-dev
PlatformWindows::DebugProcess in > source\Plugins\Platform\Windows\PlatformWindows.cpp and > ProcessLauncherWIndows::LaunchProcess in > source\Host\windows\ProcessLauncherWindows.cpp . > > > > Ted > > > > -- > > Qualcomm Innovation Center, Inc. > > The Qual

Re: [lldb-dev] Using LLDB API on windows

2017-04-03 Thread Russell Greene via lldb-dev
a > Linux Foundation Collaborative Project > > > > *From:* lldb-dev [mailto:lldb-dev-boun...@lists.llvm.org] *On Behalf Of > *Russell > Greene via lldb-dev > *Sent:* Sunday, April 02, 2017 4:38 PM > *To:* lldb-dev@lists.llvm.org > *Subject:* [lldb-dev] Using LLDB API on windows

[lldb-dev] Using LLDB API on windows

2017-04-02 Thread Russell Greene via lldb-dev
Hey so I am developing a project using LLDB as a debugger and am looking to make it cross-platform. As I see it, the LLDB API boots up an instance of lldb-server, but lldb-server isn't available on windows. Is there a way to use the LLDB C++ API on windows? On the status page