debugserver is sometimes run in bringup environments, where debugserver doesn't yet recognize its platform code. debugserver will crash shortly after when strlen() is run on the nullptr returned, creating a std::string.
Instead, have debugserver return an empty platform name back up to lldb. lldb is in a better position to handle a triple with a missing component and surface an error message to the user, instead of having debugserver cease to be running.
This is unused