File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed
lldb/test/API/functionalities/thread/step_until Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ def _build_dict_for_discontinuity(self):
2222 CFLAGS_EXTRAS = "-funique-basic-block-section-names "
2323 + "-ffunction-sections -fbasic-block-sections=list="
2424 + self .getSourcePath ("function.list" ),
25- LD_EXTRAS = "-Wl,--section-ordering-file ="
25+ LD_EXTRAS = "-Wl,--script ="
2626 + self .getSourcePath ("symbol.order" ),
2727 )
2828
Original file line number Diff line number Diff line change 1- .text : {
2- *(.text.call_me)
3- *(.text.foo)
4- *(.text.call_me.call_me.__part.1)
5- *(.text.call_me.call_me.__part.2)
6- *(.text.call_me.call_me.__part.3)
7- }
1+ SECTIONS {
2+ .text : {
3+ *(.text.call_me)
4+ *(.text.foo)
5+ *(.text.call_me.call_me.__part.1)
6+ *(.text.call_me.call_me.__part.2)
7+ *(.text.call_me.call_me.__part.3)
8+ }
9+ } INSERT BEFORE .text;
You can’t perform that action at this time.
0 commit comments