David Spickett

Results 107 comments of David Spickett

> I'm trying to do a workaround with platform put-file Did that work for you? I have had issues with permissions on the remote before, though I seem to remember...

I didn't see the issue if I started a platform locally then connected to that,~~but in my qemu-system setup I was able to reproduce it.~~ Edit: Turns out didn't manage...

I did find something useful though. We know from that logging you at least got to https://github.com/llvm/llvm-project/blob/1bd31a689844a43c9cde41a067119bef11159539/lldb/source/Target/Platform.cpp#L1205. So either we failed to get permissions (`GetPermissions` takes an `error` but we...

Here is what I get from my working setup which is using lldb from `main` and connecting to a qemu-system remote. ``` (lldb) log enable lldb platform (lldb) target create...

Do you/does anyone know how `lldb-1316.0.9.46` maps to upstream llvm? I assume it is the system lldb on a Mac, based on lldb 13? I can try that on my...

There is a very short window before 15.0.3 https://github.com/llvm/llvm-project/milestone/14, but it could still be backported.

Looking at the test https://github.com/llvm/llvm-project/blob/main/llvm/test/DebugInfo/ARM/split-complex.ll it doesn't run the code so that shouldn't be a problem. I see what you mean though, why is the test calling llc with an...

I suppose because this only checks dwarf and IR output it works 99% of the time then. Simple fix is to pass the triple in the RUN line instead.

Well first off make sure you can build and run the test suite succesfully: https://lldb.llvm.org/resources/build.html The conversion from the format Jim mentioned is in `lldb/include/lldb/Utility/AnsiTerminal.h`, but you'll want to find...

So this is an instance of https://discourse.llvm.org/t/cant-find-all-values-of-enum-attrkind-in-attributes-h-file/65869/2?u=davidspickett See if that helps any, this is a very common thing to trip over. Still gets me sometimes. Once you find where the...