Merge .plt into .text
ld writes .plt immediately after .text which corrupts the alignment of .reloc Signed-off-by: Callum Farmer <gmbr3@opensuse.org>
This commit is contained in:
parent
262c1f4604
commit
0bb329b0bf
@ -17,6 +17,7 @@ SECTIONS
|
||||
*(.text)
|
||||
*(.text.*)
|
||||
*(.gnu.linkonce.t.*)
|
||||
*(.plt)
|
||||
. = ALIGN(16);
|
||||
}
|
||||
_etext = .;
|
||||
|
@ -9,6 +9,7 @@ SECTIONS
|
||||
*(.text)
|
||||
*(.text.*)
|
||||
*(.gnu.linkonce.t.*)
|
||||
*(.plt)
|
||||
. = ALIGN(16);
|
||||
}
|
||||
_etext = .;
|
||||
|
@ -17,6 +17,7 @@ SECTIONS
|
||||
*(.text)
|
||||
*(.text.*)
|
||||
*(.gnu.linkonce.t.*)
|
||||
*(.plt)
|
||||
. = ALIGN(16);
|
||||
}
|
||||
_etext = .;
|
||||
|
@ -17,6 +17,7 @@ SECTIONS
|
||||
*(.text)
|
||||
*(.text.*)
|
||||
*(.gnu.linkonce.t.*)
|
||||
*(.plt)
|
||||
. = ALIGN(16);
|
||||
}
|
||||
_etext = .;
|
||||
|
@ -9,6 +9,7 @@ SECTIONS
|
||||
*(.text)
|
||||
*(.text.*)
|
||||
*(.gnu.linkonce.t.*)
|
||||
*(.plt)
|
||||
. = ALIGN(16);
|
||||
}
|
||||
_etext = .;
|
||||
|
@ -9,6 +9,7 @@ SECTIONS
|
||||
*(.text)
|
||||
*(.text.*)
|
||||
*(.gnu.linkonce.t.*)
|
||||
*(.plt)
|
||||
. = ALIGN(16);
|
||||
}
|
||||
_etext = .;
|
||||
|
@ -11,6 +11,7 @@ SECTIONS {
|
||||
*(.text)
|
||||
*(.text.*)
|
||||
*(.gnu.linkonce.t.*)
|
||||
*(.plt)
|
||||
. = ALIGN(16);
|
||||
}
|
||||
_etext = .;
|
||||
|
@ -19,6 +19,7 @@ SECTIONS
|
||||
*(.text)
|
||||
*(.text.*)
|
||||
*(.gnu.linkonce.t.*)
|
||||
*(.plt)
|
||||
. = ALIGN(16);
|
||||
}
|
||||
_etext = .;
|
||||
|
Loading…
Reference in New Issue
Block a user