[Lldb-commits] [lldb] [LLDB][MIPS] Fix signal number of SIGBUS on mips (PR #132688)

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Wed Mar 26 03:00:47 PDT 2025


labath wrote:

> If it is, then we may just want to make this build in that configuration, but not actually claim to support mips debugging (in theory, you should still be able to debug e.g. x86 core files with a mips build of lldb)

One way to do that would be to change `#ifdef __linux__` on line 11 to `#if defined(__linux__) && !defined(__mips__)` and add a comment to say that this is because we don't support mips debugging.

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


More information about the lldb-commits mailing list