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: 1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB
Fork of mbed by
Diff: LPC1768/GCC_ARM/LPC1768.ld
- Revision:
- 30:3991a86798e3
- Parent:
- 27:7110ebee3484
--- a/LPC1768/GCC_ARM/LPC1768.ld Fri Dec 09 12:10:12 2011 +0000
+++ b/LPC1768/GCC_ARM/LPC1768.ld Wed Jan 04 16:29:47 2012 +0000
@@ -80,9 +80,9 @@
} > FLASH
__exidx_end = .;
- _etext = .;
+ __etext = .;
- .data : AT (_etext)
+ .data : AT (__etext)
{
__data_start__ = .;
*(vtable)
@@ -91,22 +91,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);
