[Lldb-commits] [lldb] [lldb] Fix nullptr dereference on running x86 binary with x86-disabled llvm (PR #82603)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Mon Mar 11 09:23:03 PDT 2024
================
@@ -0,0 +1,10 @@
+# UNSUPPORTED: x86
----------------
DavidSpickett wrote:
This should be:
```
UNSUPPORTED: target-x86_64
```
Which I'm pretty sure is lldb's equivalent of `x86-registered-target`. Which is whether the lldb has that target built into it, vs. whether it's running on x86.
You see a lot of requires: native && target-x86-64 for this reason.
https://github.com/llvm/llvm-project/pull/82603
More information about the lldb-commits
mailing list