diff options
author | Dave Chapman <dave@dchapman.com> | 2005-02-15 22:25:53 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2005-02-15 22:25:53 +0000 |
commit | 9d4a79b444aadf332c9c60df33b0234a7c8e3b9a (patch) | |
tree | a2cf5178cd000a4b2db31db4f2fad7662174de25 /apps/plugins/plugin.lds | |
parent | b9ea50796da5d36ab8631491ad556218122b970c (diff) |
Discard .eh_frame, otherwise the codec viewer plugins are about 800MB in size. See http://www.rockbox.org/mail/archive/rockbox-archive-2004-07/0445.shtml
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5960 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/plugin.lds')
-rw-r--r-- | apps/plugins/plugin.lds | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugins/plugin.lds b/apps/plugins/plugin.lds index 6737803c1f..acbeb52652 100644 --- a/apps/plugins/plugin.lds +++ b/apps/plugins/plugin.lds @@ -44,6 +44,10 @@ SECTIONS *(.data) } > PLUGIN_RAM + /DISCARD/ : { + *(.eh_frame) + } + .bss : { *(.bss) } > PLUGIN_RAM |