提交 601ab358 编写于 作者: wuyangyong's avatar wuyangyong

update gcc linker script: fixed __bss_start align error.

上级 7a36b1f9
......@@ -67,7 +67,7 @@ SECTIONS
__data_end = .;
. = ALIGN(4);
__bss_start = __data_end;
__bss_start = .;
.bss :
{
*(.bss)
......
......@@ -75,7 +75,7 @@ SECTIONS
__data_end = .;
. = ALIGN(4);
__bss_start = __data_end;
__bss_start = .;
.bss :
{
*(.bss)
......
......@@ -92,7 +92,7 @@ SECTIONS
__data_end = .;
. = ALIGN(4);
__bss_start = __data_end;
__bss_start = 0;
.bss :
{
*(.bss)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册