[Lldb-commits] [PATCH] D15152: Change Platform::LoadImage to copy the file to the remote platform

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Thu Dec 3 10:54:31 PST 2015


clayborg added a comment.

PlatformPOSIX::LoadImage() and PlatformAndroid::LoadImage() should now become PlatformPOSIX::DoLoadImage() and PlatformAndroid::DoLoadImage() and the common code between them removed, add Platform::LoadImage() and move the common code that looks at both FileSpec arguments, does the remote path fixup and install, then call the virtual DoLoadImage(). It is ok to have a base implementation of Platform::DoLoadImage() that returns an error.


http://reviews.llvm.org/D15152





More information about the lldb-commits mailing list