[Lldb-commits] [lldb] r313210 - Fix for bug 34532 - A few rough corners related to post-mortem debugging (core/minidump)

Ed Maste via lldb-commits lldb-commits at lists.llvm.org
Sat Sep 16 05:21:12 PDT 2017


On 13 September 2017 at 18:57, Adrian McCarthy via lldb-commits
<lldb-commits at lists.llvm.org> wrote:
> Author: amccarth
> Date: Wed Sep 13 15:57:11 2017
> New Revision: 313210
>
> URL: http://llvm.org/viewvc/llvm-project?rev=313210&view=rev
> Log:
> Fix for bug 34532 - A few rough corners related to post-mortem debugging (core/minidump)

I suspect this was responsible for breaking debugging on FreeBSD:
```
% bin/lldb /bin/ls
(lldb) target create "/bin/ls"
Current executable set to '/bin/ls' (x86_64).
(lldb) b main
Breakpoint 1: where = ls`main + 33 at ls.c:163, address = 0x00000000004023f1
(lldb) run
Process 42854 launching
error: process resume at entry point failed: error: freebsd does not
support resuming processes
(lldb)
```

I haven't bisected yet to confirm, just reviewed changes between
rL312270 (working) and rL313327 (failing). It looks like the fix may
be straightforward, but I'm traveling to a conference and won't be
able to look for a short while so am noting it here.


More information about the lldb-commits mailing list