more improvement on reGNUal

This commit is contained in:
NIIBE Yutaka
2013-03-15 16:06:42 +09:00
parent 13b9e7bcf3
commit 1ee99b30e4
2 changed files with 27 additions and 29 deletions

View File

@@ -23,18 +23,6 @@ SECTIONS
{
. = 0;
.bss :
{
_bss_start = .;
*(.bss)
. = ALIGN(4);
*(.bss.*)
. = ALIGN(4);
*(COMMON)
. = ALIGN(4);
_bss_end = .;
} > ram0
.text : ALIGN(16) SUBALIGN(16)
{
_text = .;
@@ -97,6 +85,18 @@ SECTIONS
_edata = .;
} > ram1
.bss :
{
_bss_start = .;
*(.bss)
. = ALIGN(4);
*(.bss.*)
. = ALIGN(4);
*(COMMON)
. = ALIGN(4);
_bss_end = .;
} > ram1
PROVIDE(end = .);
_end = .;
}