File tree Expand file tree Collapse file tree 2 files changed +15
-20
lines changed Expand file tree Collapse file tree 2 files changed +15
-20
lines changed Original file line number Diff line number Diff line change @@ -52,17 +52,15 @@ SECTIONS
52
52
53
53
.rela.dyn : ALIGN(8 ) { *(.rela .rela*) }
54
54
55
- .plt : {
55
+ .rodata : {
56
+ *(.rodata*)
57
+ *(.got)
58
+ *(.got.plt)
56
59
*(.plt)
57
60
*(.plt.*)
58
61
*(.iplt)
59
62
*(.igot .igot.plt)
60
- }
61
-
62
- .got : { *(.got) }
63
- .got.plt : { *(.got.plt) }
64
-
65
- .rodata : { *(.rodata*) } :text
63
+ } :text
66
64
67
65
_end = .;
68
66
PROVIDE(end = .);
Original file line number Diff line number Diff line change @@ -36,7 +36,15 @@ SECTIONS
36
36
37
37
.dynamic : { *(.dynamic) } :text :dynamic
38
38
39
- .rodata : { *(.rodata*) } :text
39
+ .rodata : {
40
+ *(.rodata*)
41
+ *(.got)
42
+ *(.got.plt)
43
+ *(.plt)
44
+ *(.rel.iplt)
45
+ *(.iplt)
46
+ *(.igot.plt)
47
+ } :text
40
48
41
49
.text : {
42
50
*(.text *)
@@ -46,18 +54,7 @@ SECTIONS
46
54
*(.v4_bx)
47
55
} :text =0xe7f001f2
48
56
49
- .rel.dyn : { *(.rel.text) }
50
-
51
- .got : { *(.got) }
52
- .rel.got : { *(.rel.got) }
53
- .got.plt : { *(.got.plt) }
54
- .rel.plt : { *(.rel.plt) }
55
- .plt : {
56
- *(.plt)
57
- *(.rel.iplt)
58
- *(.iplt)
59
- *(.igot.plt)
60
- }
57
+ .rel.dyn : { *(.rel*) }
61
58
62
59
ELF_DETAILS
63
60
.ARM.exidx : { *(.ARM.exidx*) }
You can’t perform that action at this time.
0 commit comments