<div dir="ltr">Ah, I used CreateTargetWithFileAndArch() and missed this one. Feeling embarrassed... Thank you!</div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Mar 9, 2016 at 10:10 AM, Greg Clayton <span dir="ltr"><<a href="mailto:gclayton@apple.com" target="_blank">gclayton@apple.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">The SBDebugger::CreateTarget() call take an "SBError &error" as the last argument. The error will contain any error message:<br>
<br>
    lldb::SBTarget<br>
    CreateTarget (const char *filename,<br>
                  const char *target_triple,<br>
                  const char *platform_name,<br>
                  bool add_dependent_modules,<br>
                  lldb::SBError& error);<br>
<br>
<br>
<br>
This function is the one that should be used. Any of the "const char *" arguments can be NULL. But typically you want to specify at least the filename. The triple is only really needed if you are debugging files that have more than one architecture or if the file you are debugging doesn't completely specify what you want to debug. The triple can be "x86_64" or more specific like "x86_64-apple-ios". The platform name only needs to be specified if your executable file (ELF file, mach-o file, or other exe format) doesn't have enough information inside of it to extract the triple from the object file. ELF has very sparse information inside of it to help us identify what platform it can/should be used for. You will know if you need to specify the platform if LLDB gets it wrong. To see what happens, try things out from the command line:<br>
<br>
<br>
(lldb) target create /tmp/a.out<br>
(lldb) target list<br>
Current targets:<br>
* target #0: /tmp/a.out ( arch=x86_64-apple-macosx, platform=host )<br>
<br>
We see that the "host" platform was auto selected and the architecture was extracted from the executable as "x86_64-apple-macosx".<br>
<br>
To see a list of platform names you can do:<br>
<br>
(lldb) platform select <TAB><br>
Available completions:<br>
        remote-freebsd<br>
        remote-linux<br>
        remote-netbsd<br>
        remote-windows<br>
        kalimba<br>
        remote-android<br>
        remote-ios<br>
        remote-macosx<br>
        ios-simulator<br>
        darwin-kernel<br>
        tvos-simulator<br>
        watchos-simulator<br>
        remote-tvos<br>
        remote-watchos<br>
        remote-gdb-server<br>
<br>
So if you have an iOS binary that was targeting a device (not a simulator), you could create your target with:<br>
<br>
lldb::SBError error;<br>
lldb::SBTarget target = debugger.CreateTarget("/tmp/a.out", "armv7-apple-ios", "remote-ios", false, error);<br>
<div><div class="h5"><br>
<br>
> On Mar 8, 2016, at 5:22 PM, Jeffrey Tan via lldb-dev <<a href="mailto:lldb-dev@lists.llvm.org">lldb-dev@lists.llvm.org</a>> wrote:<br>
><br>
> Hi,<br>
><br>
> In lldb, when I try to "target create [invalid_target]", I got some meaningful error message like:<br>
> error: 'XXX' doesn't contain any 'host' platform architectures: x86_64h, x86_64, i386<br>
><br>
> What is the python API to get this from? I tried to check SBTarget.IsValid() and then use SBTarget.GetDescription(eDescriptionLevelVerbose), but that does not return the error message.<br>
><br>
> Thanks<br>
> Jeffrey<br>
</div></div>> _______________________________________________<br>
> lldb-dev mailing list<br>
> <a href="mailto:lldb-dev@lists.llvm.org">lldb-dev@lists.llvm.org</a><br>
> <a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev</a><br>
<br>
</blockquote></div><br></div>