[Lldb-commits] [PATCH] D49739: Add new API to SBTarget class

Jim Ingham via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Aug 9 10:11:05 PDT 2018


jingham added a subscriber: apolyakov.
jingham added a comment.

It looks like lots of options to debugserver were added without also adding them to the --help output.  Probably because there are so few clients they already know the options (the same person added & used them...)  But if you look at the actual options in debugserver.cpp, you will see:

  {"unix-socket", required_argument, NULL,
   'u'}, // If we need to handshake with our parent process, an option will be
         // passed down that specifies a unix socket name to use
  {"fd", required_argument, NULL,
   '2'}, // A file descriptor was passed to this process when spawned that
         // is already open and ready for communication
  {"named-pipe", required_argument, NULL, 'P'},
  {"reverse-connect", no_argument, NULL, 'R'},

Will one of those serve your purpose?

Jim


Repository:
  rL LLVM

https://reviews.llvm.org/D49739





More information about the lldb-commits mailing list