[Lldb-commits] [lldb] [LLDB][MIPS] Fix signal SIGBUS number mismatch error on mips target (PR #132688)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Mar 31 20:20:31 PDT 2025
================
@@ -8,7 +8,10 @@
#include "LinuxSignals.h"
-#ifdef __linux__
+// Now, because we do not support mips debugging, if we compile LLVM on mips
+// target, would report error `static assertion failed:Value mismatch for signal
+// number SIGBUS`, so add this condition to avoid error.
----------------
yingopq wrote:
OK, thanks!
https://github.com/llvm/llvm-project/pull/132688
More information about the lldb-commits
mailing list