Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: hello SerialTestv11 SerialTestv12 Sierpinski ... more
Diff: TARGET_LPC1549/TOOLCHAIN_GCC_ARM/LPC1549.ld
- Revision:
- 171:3a7713b1edbc
- Parent:
- 88:9327015d4013
- Child:
- 172:65be27845400
diff -r e95d10626187 -r 3a7713b1edbc TARGET_LPC1549/TOOLCHAIN_GCC_ARM/LPC1549.ld --- a/TARGET_LPC1549/TOOLCHAIN_GCC_ARM/LPC1549.ld Thu Sep 06 13:39:34 2018 +0100 +++ b/TARGET_LPC1549/TOOLCHAIN_GCC_ARM/LPC1549.ld Thu Nov 08 11:45:42 2018 +0000 @@ -89,13 +89,13 @@ *(vtable) *(.data*) - . = ALIGN(4); + . = ALIGN(8); /* preinit data */ PROVIDE (__preinit_array_start = .); KEEP(*(.preinit_array)) PROVIDE (__preinit_array_end = .); - . = ALIGN(4); + . = ALIGN(8); /* init data */ PROVIDE (__init_array_start = .); KEEP(*(SORT(.init_array.*))) @@ -103,14 +103,14 @@ PROVIDE (__init_array_end = .); - . = ALIGN(4); + . = ALIGN(8); /* finit data */ PROVIDE (__fini_array_start = .); KEEP(*(SORT(.fini_array.*))) KEEP(*(.fini_array)) PROVIDE (__fini_array_end = .); - . = ALIGN(4); + . = ALIGN(8); /* All data end */ __data_end__ = .;