[Lldb-commits] [lldb] 803fd73 - Branch island no dsym (#139191)

via lldb-commits lldb-commits at lists.llvm.org
Thu May 8 18:23:32 PDT 2025


Author: jimingham
Date: 2025-05-08T18:22:10-07:00
New Revision: 803fd732ae634b49c308e88e9b508fdbff664034

URL: https://github.com/llvm/llvm-project/commit/803fd732ae634b49c308e88e9b508fdbff664034
DIFF: https://github.com/llvm/llvm-project/commit/803fd732ae634b49c308e88e9b508fdbff664034.diff

LOG: Branch island no dsym (#139191)

When we get to the branch island, we don't see the symbol for
    it.
    
    The only other thing I can think of that would be a dsymutil bug?
Let's try this just with dwarf, and then I'll have to revert all this
    and see if I can reproduce this locally somehow.

Added: 
    

Modified: 
    lldb/test/API/macosx/branch-islands/TestBranchIslands.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/macosx/branch-islands/TestBranchIslands.py b/lldb/test/API/macosx/branch-islands/TestBranchIslands.py
index a8dd1886d5568..2d768d35aad03 100644
--- a/lldb/test/API/macosx/branch-islands/TestBranchIslands.py
+++ b/lldb/test/API/macosx/branch-islands/TestBranchIslands.py
@@ -15,7 +15,7 @@ class TestBranchIslandStepping(TestBase):
     @skipUnlessAppleSilicon
     def test_step_in_branch_island(self):
         """Make sure we can step in across a branch island"""
-        self.build()
+        self.build(debug_info="dwarf")
         self.main_source_file = lldb.SBFileSpec("main.c")
         self.do_test()
 


        


More information about the lldb-commits mailing list