[Lldb-commits] [PATCH] D155117: Platform qemu-user: Build path to qemu automatically if not specified

Ted Woodward via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue Jul 18 12:23:44 PDT 2023


ted added a comment.

As for the GetSupportedArchitectures case, downstream I left in the code that checks the property, but changed the return {}; to

  return {ArchSpec(llvm::Triple("riscv32-unknown-linux")),
          ArchSpec(llvm::Triple("riscv64-unknown-linux"))};

I don't think we want that upstream, but downstream the only time we're targetting riscv linux is when using qemu.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D155117/new/

https://reviews.llvm.org/D155117



More information about the lldb-commits mailing list