File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,8 @@ SECTIONS
74
74
.got : { *(.got) } :text
75
75
.plt : { *(.plt) }
76
76
77
+ .rela.dyn : { *(.rela .rela*) }
78
+
77
79
_end = .;
78
80
__end = .;
79
81
PROVIDE(end = .);
@@ -87,7 +89,7 @@ SECTIONS
87
89
*(.branch_lt)
88
90
*(.data .data .* .gnu.linkonce .d.* .sdata*)
89
91
*(.bss .sbss .dynbss .dynsbss)
90
- *(.got1 .glink .iplt .rela* )
92
+ *(.got1 .glink .iplt)
91
93
}
92
94
}
93
95
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ SECTIONS
69
69
.eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
70
70
.eh_frame : { KEEP (*(.eh_frame)) } :text
71
71
.gcc_except_table : { *(.gcc_except_table) }
72
- .rela.dyn ALIGN(8 ) : { *(.rela.dyn ) }
72
+ .rela.dyn ALIGN(8 ) : { *(.rela .rela* ) }
73
73
74
74
.got ALIGN(8 ) : { *(.got .toc) }
75
75
@@ -86,7 +86,7 @@ SECTIONS
86
86
*(.data .data .* .gnu.linkonce .d.* .sdata*)
87
87
*(.bss .sbss .dynbss .dynsbss)
88
88
*(.opd)
89
- *(.glink .iplt .plt .rela* )
89
+ *(.glink .iplt .plt)
90
90
}
91
91
}
92
92
You can’t perform that action at this time.
0 commit comments