mirror of
https://github.com/apache/nuttx.git
synced 2026-08-02 04:38:59 +00:00
boards/qemu-armv8a: Fix location of kasan.shadows
The location of the kasan.shadows section was causing mysterious CI issues. Signed-off-by: Matteo Golin <matteo.golin@gmail.com>
This commit is contained in:
parent
803853ad3f
commit
b2eb2c447a
1 changed files with 7 additions and 3 deletions
|
|
@ -45,9 +45,6 @@ SECTIONS
|
|||
KEEP (*(.data..LASAN0))
|
||||
KEEP (*(.data.rel.local..LASAN0))
|
||||
}
|
||||
.kasan.shadows : {
|
||||
*(.kasan.shadows)
|
||||
}
|
||||
#endif
|
||||
|
||||
_start = .;
|
||||
|
|
@ -128,6 +125,13 @@ SECTIONS
|
|||
_ebss = .;
|
||||
_szbss = _ebss - _sbss;
|
||||
|
||||
#ifdef CONFIG_MM_KASAN_GLOBAL
|
||||
.kasan.shadows : {
|
||||
KEEP(*(.kasan.shadows))
|
||||
} :text
|
||||
. = ALIGN(4096);
|
||||
#endif
|
||||
|
||||
.initstack : { /* INIT STACK */
|
||||
_s_initstack = .;
|
||||
*(.initstack)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue