Skip to content
Snippets Groups Projects
Commit c4f40546 authored by Macpaul Lin's avatar Macpaul Lin
Browse files

nds32: fix data section of linker script


Make linker script handles .data.rel sections.

Signed-off-by: default avatarMacpaul Lin <macpaul@andestech.com>
Tested-by: default avatarMacpaul Lin <macpaul@gmail.com>
Cc: Mike Frysinger <vapier@gentoo.org>
parent 2ba5b1d3
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ SECTIONS ...@@ -41,7 +41,7 @@ SECTIONS
.rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) } .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
. = ALIGN(4); . = ALIGN(4);
.data : { *(.data) } .data : { *(.data*) }
. = ALIGN(4); . = ALIGN(4);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment