[Lldb-commits] [lldb] r252254 - Jim thinks we shouldn't bother to pollute the svn repo with these

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Thu Nov 5 16:55:17 PST 2015


Author: jmolenda
Date: Thu Nov  5 18:55:17 2015
New Revision: 252254

URL: http://llvm.org/viewvc/llvm-project?rev=252254&view=rev
Log:
Jim thinks we shouldn't bother to pollute the svn repo with these
internal details, so I'll pull it back to just our own branch
of the sources.

Modified:
    lldb/trunk/source/Host/macosx/Symbols.cpp

Modified: lldb/trunk/source/Host/macosx/Symbols.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/macosx/Symbols.cpp?rev=252254&r1=252253&r2=252254&view=diff
==============================================================================
--- lldb/trunk/source/Host/macosx/Symbols.cpp (original)
+++ lldb/trunk/source/Host/macosx/Symbols.cpp Thu Nov  5 18:55:17 2015
@@ -469,9 +469,9 @@ Symbols::DownloadObjectAndSymbolFile (Mo
             
             StreamString command;
             if (!uuid_str.empty())
-                command.Printf("%s --ignoreNegativeCache --copyExecutable --databases bursar.apple.com,uuidsymmap.apple.com %s", g_dsym_for_uuid_exe_path, uuid_str.c_str());
+                command.Printf("%s --ignoreNegativeCache --copyExecutable %s", g_dsym_for_uuid_exe_path, uuid_str.c_str());
             else if (file_path[0] != '\0')
-                command.Printf("%s --ignoreNegativeCache --copyExecutable --databases bursar.apple.com,uuidsymmap.apple.com %s", g_dsym_for_uuid_exe_path, file_path);
+                command.Printf("%s --ignoreNegativeCache --copyExecutable %s", g_dsym_for_uuid_exe_path, file_path);
             
             if (!command.GetString().empty())
             {




More information about the lldb-commits mailing list