Skip to content

Commit 6539481

Browse files
committed
[lldb] Account for DWARF 5 sections in TestCTF.py
Update the TestCTF Makefile to remove the DWARF 5 sections.
1 parent cadfd0b commit 6539481

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

lldb/test/API/macosx/ctf/Makefile

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,19 @@ a.ctf: a.out.dSYM
1717
-o a.ctf \
1818
a.out.dSYM/Contents/Resources/DWARF/a.out
1919
$(OBJCOPY) \
20-
-R __DWARF,__debug_line \
21-
-R __DWARF,__debug_aranges \
22-
-R __DWARF,__debug_info \
23-
-R __DWARF,__debug_abbrev \
24-
-R __DWARF,__debug_str \
2520
-R __DWARF,__apple_names \
2621
-R __DWARF,__apple_namespac \
27-
-R __DWARF,__apple_types \
2822
-R __DWARF,__apple_objc \
23+
-R __DWARF,__apple_types \
24+
-R __DWARF,__debug_abbrev \
25+
-R __DWARF,__debug_addr \
26+
-R __DWARF,__debug_aranges \
27+
-R __DWARF,__debug_info \
28+
-R __DWARF,__debug_line \
29+
-R __DWARF,__debug_line_str \
30+
-R __DWARF,__debug_names \
31+
-R __DWARF,__debug_str \
32+
-R __DWARF,__debug_str_offs \
2933
a.ctf a.ctf
3034
rm -rf a.out.dSYM
3135
rm -rf test.o

0 commit comments

Comments
 (0)