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: 2doejemplo Labo_TRSE_Drone
Fork of mbed by
Diff: LPC11U24/GCC_ARM/LPC11U24.ld
- Revision:
- 30:3991a86798e3
- Parent:
- 27:7110ebee3484
--- a/LPC11U24/GCC_ARM/LPC11U24.ld Fri Dec 09 12:10:12 2011 +0000
+++ b/LPC11U24/GCC_ARM/LPC11U24.ld Wed Jan 04 16:29:47 2012 +0000
@@ -77,9 +77,9 @@
} > FLASH
__exidx_end = .;
- _etext = .;
+ __etext = .;
- .data : AT (_etext)
+ .data : AT (__etext)
{
__data_start__ = .;
*(vtable)
@@ -88,22 +88,22 @@
. = ALIGN(4);
/* preinit data */
PROVIDE (__preinit_array_start = .);
- *(.preinit_array)
+ KEEP(*(.preinit_array))
PROVIDE (__preinit_array_end = .);
. = ALIGN(4);
/* init data */
PROVIDE (__init_array_start = .);
- *(SORT(.init_array.*))
- *(.init_array)
+ KEEP(*(SORT(.init_array.*)))
+ KEEP(*(.init_array))
PROVIDE (__init_array_end = .);
. = ALIGN(4);
/* finit data */
PROVIDE (__fini_array_start = .);
- *(SORT(.fini_array.*))
- *(.fini_array)
+ KEEP(*(SORT(.fini_array.*)))
+ KEEP(*(.fini_array))
PROVIDE (__fini_array_end = .);
. = ALIGN(4);
