Re: [lldb-dev] What is the difference between an Arch and a Triple

2021-01-21 Thread Jim Ingham via lldb-dev
The fix is in: https://reviews.llvm.org/D95164 but without any doc verbiage. Jim > On Jan 21, 2021, at 12:04 PM, Jim Ingham via lldb-dev > wrote: > > We have two API's: > > SBDebugger.CreateTargetWithFileAndTargetTriple > SBDebugger.CreateTargetWithFileAndArch > > Both take a path and a st

[lldb-dev] What is the difference between an Arch and a Triple

2021-01-21 Thread Jim Ingham via lldb-dev
We have two API's: SBDebugger.CreateTargetWithFileAndTargetTriple SBDebugger.CreateTargetWithFileAndArch Both take a path and a string. Currently, their implementations are almost identical, the major difference being that the first one ignores the error from target creation, but I don't think