You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
298 B

PHDRS
{
text PT_LOAD FLAGS(5);
data PT_LOAD FLAGS(6);
tls PT_TLS;
}
SECTIONS
{
.init :
{
} :text
.text :
{
}
.data :
{
} :data
.got : { *(.got .toc) }
.tdata :
{
*(.tdata*)
} :data :tls
.tbss :
{
*(.tbss*)
} :data :tls
}