Add initial support for TLS sections in PE format files.
This commit is contained in:
parent
100bcc3f4e
commit
ca6dee30a3
4 changed files with 35 additions and 3 deletions
|
@ -25,6 +25,10 @@ if test "${RELOCATING}"; then
|
|||
SORT(*)(.idata$6)
|
||||
SORT(*)(.idata$7)'
|
||||
R_CRT='*(SORT(.CRT$*))'
|
||||
R_TLS='
|
||||
*(.tls)
|
||||
*(.tls$)
|
||||
*(SORT(.tls$*))'
|
||||
R_RSRC='*(SORT(.rsrc$*))'
|
||||
else
|
||||
R_TEXT=
|
||||
|
@ -129,6 +133,11 @@ SECTIONS
|
|||
${R_CRT}
|
||||
}
|
||||
|
||||
.tls ${RELOCATING+BLOCK(__section_alignment__)} :
|
||||
{
|
||||
${R_TLS}
|
||||
}
|
||||
|
||||
.endjunk ${RELOCATING+BLOCK(__section_alignment__)} :
|
||||
{
|
||||
/* end is deprecated, don't use it */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue