aboutsummaryrefslogtreecommitdiffstats
path: root/os/common
diff options
context:
space:
mode:
authoredolomb <none@example.com>2018-06-19 16:42:51 +0000
committeredolomb <none@example.com>2018-06-19 16:42:51 +0000
commit243112664b8904708067e1ca2d12828dfc165ecf (patch)
tree508644b94e40c65f22d8623d4a58d3306098b373 /os/common
parent718abc8b5349adf9628344bbe9ade5fdeabf7003 (diff)
downloadChibiOS-243112664b8904708067e1ca2d12828dfc165ecf.tar.gz
ChibiOS-243112664b8904708067e1ca2d12828dfc165ecf.tar.bz2
ChibiOS-243112664b8904708067e1ca2d12828dfc165ecf.zip
Fixed bug: removed subalign
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12115 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/common')
-rw-r--r--os/common/startup/ARMCAx-TZ/compilers/GCC/ld/rules.ld8
1 files changed, 4 insertions, 4 deletions
diff --git a/os/common/startup/ARMCAx-TZ/compilers/GCC/ld/rules.ld b/os/common/startup/ARMCAx-TZ/compilers/GCC/ld/rules.ld
index 93ca8b847..5a35f87f2 100644
--- a/os/common/startup/ARMCAx-TZ/compilers/GCC/ld/rules.ld
+++ b/os/common/startup/ARMCAx-TZ/compilers/GCC/ld/rules.ld
@@ -48,13 +48,13 @@ SECTIONS
. = 0;
_text = .;
- startup : ALIGN(16) SUBALIGN(16)
+ startup : ALIGN(16)
{
KEEP(*(.vectors))
KEEP(*(.boot))
} > flash
- constructors : ALIGN(4) SUBALIGN(4)
+ constructors : ALIGN(4)
{
PROVIDE(__init_array_start = .);
KEEP(*(SORT(.init_array.*)))
@@ -62,7 +62,7 @@ SECTIONS
PROVIDE(__init_array_end = .);
} > flash
- destructors : ALIGN(4) SUBALIGN(4)
+ destructors : ALIGN(4)
{
PROVIDE(__fini_array_start = .);
KEEP(*(.fini_array))
@@ -70,7 +70,7 @@ SECTIONS
PROVIDE(__fini_array_end = .);
} > flash
- .text : ALIGN(16) SUBALIGN(16)
+ .text : ALIGN(16)
{
*(.text)
*(.text.*)