summaryrefslogtreecommitdiffstats
path: root/firmware/target/arm/ipod/app.lds
diff options
context:
space:
mode:
authorBoris Gjenero <dreamlayers@rockbox.org>2011-12-18 06:43:08 +0000
committerBoris Gjenero <dreamlayers@rockbox.org>2011-12-18 06:43:08 +0000
commitca9111ef641f42ccb32610d8f3ac44767b062e94 (patch)
tree09ae9a1760e8eae9a502b24c2b5cc8981cc73837 /firmware/target/arm/ipod/app.lds
parentdc07503ad4f6f9722baddddca5ba7abe22ec34ba (diff)
downloadrockbox-ca9111ef641f42ccb32610d8f3ac44767b062e94.tar.gz
rockbox-ca9111ef641f42ccb32610d8f3ac44767b062e94.zip
Add KEEP() around vectors in linker scripts.
Vectors are needed by the CPU, but they don't need to be accessed by Rockbox. Without the KEEP(), they can be removed when liking with --gc-sections, creating a broken binary without any warnings. This tells the linker to not remove them. It should enable use of --gc-sections for all targets. When not using --gc-sections, this does not change the binary. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31351 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/ipod/app.lds')
-rw-r--r--firmware/target/arm/ipod/app.lds2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/ipod/app.lds b/firmware/target/arm/ipod/app.lds
index 9c7eb16391..f0773e0139 100644
--- a/firmware/target/arm/ipod/app.lds
+++ b/firmware/target/arm/ipod/app.lds
@@ -84,7 +84,7 @@ SECTIONS
.vectors 0x0 :
{
_vectorsstart = .;
- *(.vectors);
+ KEEP(*(.vectors));
_vectorsend = .;
} AT> DRAM