summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/clang/liblldbPluginProcess (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Shuffle how lldb register contexts are built.mortimer2021-02-141-3/+2
| | | | | | | | | | | | Instead of using #if defined(__arch__) to include / exclude the entire contents of the NativeRegisterContext implementations, use a single NativeRegisterContextOpenBSD_arch which includes the right arch specific register context, and provides a dummy implementation for unsupported architectures. This allows building lldb on architectures which do not have a register context implementation so it can be used as a remote client. ok patrick@
* Update build infrastructure for LLVM 10.0.0.patrick2020-08-031-9/+13
| | | | | ok hackroom@ tested by plenty
* Add arm64 support for lldb.mortimer2019-12-211-1/+2
| | | | "Go for it" kettenis@
* In lldb, use a OpenBSD signal map instead of leveraging the FreeBSD one.mortimer2019-11-271-1/+2
| | | | ok kettenis@
* Add lldb support for debugging running binaries on amd64.mortimer2019-11-091-2/+12
| | | | | | | Follows a similar model as NetBSD. Much help from patrick, kettenis and guenther. lldb and lldb-server remain not installed by default. ok patrick@
* Update clang build infrastructure for LLVM 8.0.0.patrick2019-06-231-1/+6
|
* Update clang build infrastructure for LLVM 7.0.1.patrick2019-01-271-2/+4
|
* Add infrastructure to compile and link LLDB. Inspecting core filespatrick2018-10-041-0/+96
works, but actually running stuff probably won't. ok kettenis@