boards/arm64: Add an impls section to the link script
Signed-off-by: wangming9 <wangming9@xiaomi.com> Signed-off-by: lipengfei28 <lipengfei28@xiaomi.com>
This commit is contained in:
parent
c18f722185
commit
5ff147e07c
|
@ -82,6 +82,11 @@ SECTIONS
|
|||
*(.data.page_aligned)
|
||||
*(.data)
|
||||
. = ALIGN(8);
|
||||
__start_impls = .;
|
||||
*(.impls)
|
||||
KEEP(*(.impls))
|
||||
. = ALIGN(4);
|
||||
__stop_impls = .;
|
||||
*(.data.rel)
|
||||
*(.data.rel.*)
|
||||
CONSTRUCTORS
|
||||
|
|
|
@ -105,6 +105,11 @@ SECTIONS
|
|||
*(.data.page_aligned)
|
||||
*(.data)
|
||||
. = ALIGN(8);
|
||||
__start_impls = .;
|
||||
*(.impls)
|
||||
KEEP(*(.impls))
|
||||
. = ALIGN(4);
|
||||
__stop_impls = .;
|
||||
*(.data.rel)
|
||||
*(.data.rel.*)
|
||||
CONSTRUCTORS
|
||||
|
|
Loading…
Reference in New Issue