We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 053e352 + 0b7f927 commit 92a99c4Copy full SHA for 92a99c4
lldb/examples/python/crashlog.py
@@ -356,7 +356,11 @@ def locate_module_and_debug_symbols(self):
356
# Keep track of unresolved source paths.
357
unavailable_source_paths = set()
358
if os.path.exists(self.dsymForUUIDBinary):
359
- dsym_for_uuid_command = "%s %s" % (self.dsymForUUIDBinary, uuid_str)
+ dsym_for_uuid_command = (
360
+ "{} --copyExecutable --ignoreNegativeCache {}".format(
361
+ self.dsymForUUIDBinary, uuid_str
362
+ )
363
364
s = subprocess.check_output(dsym_for_uuid_command, shell=True)
365
if s:
366
try:
0 commit comments