diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-07-06 12:54:03 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-07-06 12:54:03 +0000 |
commit | 858b658d39ee627da66d1296e7b623604adee556 (patch) | |
tree | 8bd31e04060f8223fe8a2f9bc65765462f649d92 /os/common/startup/ARM/compilers/GCC/ld | |
parent | 3a109194972f3671092d4e0767fc2f3c63a5a363 (diff) | |
download | ChibiOS-858b658d39ee627da66d1296e7b623604adee556.tar.gz ChibiOS-858b658d39ee627da66d1296e7b623604adee556.tar.bz2 ChibiOS-858b658d39ee627da66d1296e7b623604adee556.zip |
Makefile optimizations, adjusted some scatter files.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12129 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/common/startup/ARM/compilers/GCC/ld')
-rw-r--r-- | os/common/startup/ARM/compilers/GCC/ld/rules.ld | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/common/startup/ARM/compilers/GCC/ld/rules.ld b/os/common/startup/ARM/compilers/GCC/ld/rules.ld index 61a5b6132..c6245820b 100644 --- a/os/common/startup/ARM/compilers/GCC/ld/rules.ld +++ b/os/common/startup/ARM/compilers/GCC/ld/rules.ld @@ -111,7 +111,7 @@ SECTIONS _etext = .;
_textdata = _etext;
- .stacks :
+ .stacks (NOLOAD) :
{
. = ALIGN(8);
__stacks_base__ = .;
@@ -132,7 +132,7 @@ SECTIONS PROVIDE(_edata = .);
} > DATA_RAM AT > flash
- .bss : ALIGN(4)
+ .bss (NOLOAD) : ALIGN(4)
{
. = ALIGN(4);
PROVIDE(_bss_start = .);
|