mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 12:45:26 -05:00
explicitly align the ibss section by adjusting _iramend - fixes hang on m:robe (and potential problem on other arm targets)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17024 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
0840e1bf0b
commit
feb3b588e3
8 changed files with 8 additions and 1 deletions
|
|
@ -93,6 +93,7 @@ SECTIONS
|
|||
*(.icode)
|
||||
*(.irodata)
|
||||
*(.idata)
|
||||
. = ALIGN(0x4);
|
||||
_iramend = .;
|
||||
} > DRAM
|
||||
|
||||
|
|
|
|||
|
|
@ -110,6 +110,7 @@ SECTIONS
|
|||
*(.icode)
|
||||
*(.irodata)
|
||||
*(.idata)
|
||||
. = ALIGN(0x4);
|
||||
_iramend = .;
|
||||
} > IRAM AT> DRAM
|
||||
|
||||
|
|
|
|||
|
|
@ -110,6 +110,7 @@ SECTIONS
|
|||
*(.icode)
|
||||
*(.irodata)
|
||||
*(.idata)
|
||||
. = ALIGN(0x4);
|
||||
_iramend = .;
|
||||
} > IRAM AT> DRAM
|
||||
|
||||
|
|
|
|||
|
|
@ -110,6 +110,7 @@ SECTIONS
|
|||
*(.icode)
|
||||
*(.irodata)
|
||||
*(.idata)
|
||||
. = ALIGN(0x4);
|
||||
_iramend = .;
|
||||
} > IRAM AT> DRAM
|
||||
|
||||
|
|
|
|||
|
|
@ -94,6 +94,7 @@ SECTIONS
|
|||
*(.icode)
|
||||
*(.irodata)
|
||||
*(.idata)
|
||||
. = ALIGN(0x4);
|
||||
_iramend = .;
|
||||
} > IRAM AT> DRAM
|
||||
|
||||
|
|
|
|||
|
|
@ -91,6 +91,7 @@ SECTIONS
|
|||
*(.icode)
|
||||
*(.irodata)
|
||||
*(.idata)
|
||||
. = ALIGN(0x4);
|
||||
_iramend = .;
|
||||
} > DRAM
|
||||
|
||||
|
|
|
|||
|
|
@ -110,6 +110,7 @@ SECTIONS
|
|||
*(.icode)
|
||||
*(.irodata)
|
||||
*(.idata)
|
||||
. = ALIGN(0x4);
|
||||
_iramend = .;
|
||||
} > IRAM AT> DRAM
|
||||
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@ SECTIONS
|
|||
*(.icode)
|
||||
*(.irodata)
|
||||
*(.idata)
|
||||
. = ALIGN(0x4);
|
||||
. = ALIGN(0x4);
|
||||
_iramend = .;
|
||||
} > IRAM AT> DRAM
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue