diff options
-rw-r--r-- | lldb/source/API/SBDebugger.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/API/SBDebugger.cpp b/lldb/source/API/SBDebugger.cpp index cc55230d8b3..9a047085260 100644 --- a/lldb/source/API/SBDebugger.cpp +++ b/lldb/source/API/SBDebugger.cpp @@ -1228,12 +1228,15 @@ SBDebugger::SetCurrentPlatform (const char *platform_name_cstr) bool SBDebugger::SetCurrentPlatformSDKRoot (const char *sysroot) { + Log *log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); if (m_opaque_sp) { PlatformSP platform_sp (m_opaque_sp->GetPlatformList().GetSelectedPlatform()); if (platform_sp) { + if (log && sysroot) + log->Printf ("SBDebugger::SetCurrentPlatformSDKRoot (\"%s\")", sysroot); platform_sp->SetSDKRootDirectory (ConstString (sysroot)); return true; } |