Skip to content

Commit b18e69c

Browse files
ibmzachwghoffa
authored andcommitted
Put .plt input section in its own output section
Change-Id: I77aafc010fae8d5fb6755adc8c1139b9a5ddaa40 Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/103727 Tested-by: Jenkins Server <[email protected]> Tested-by: Jenkins OP Build CI <[email protected]> Tested-by: FSP CI Jenkins <[email protected]> Tested-by: Jenkins Combined Simics CI <[email protected]> Reviewed-by: Ilya Smirnov <[email protected]> Reviewed-by: Nicholas E Bofferding <[email protected]> Reviewed-by: William G Hoffa <[email protected]>
1 parent 923b093 commit b18e69c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/module.ld

+4-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ SECTIONS
3838
*(.glink)
3939
}
4040

41+
.plt ALIGN(0x8): {
42+
*(.plt)
43+
}
44+
4145
.rodata ALIGN(0x8): {
4246
__minimum_data_start_addr = ALIGN(0x1000);
4347
tls_start_address = .;
@@ -57,7 +61,6 @@ SECTIONS
5761
*(.toc)
5862
*(.opd)
5963
*(.got)
60-
*(.plt)
6164
*(.data.rel.ro.*)
6265
*(.data.*traceData_codeInfo*)
6366
. = __minimum_data_start_addr > . ? __minimum_data_start_addr : .;

0 commit comments

Comments
 (0)