summaryrefslogtreecommitdiffstats
path: root/apps/plugins/searchengine
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-01-04 21:07:05 +0000
committerJens Arnold <amiconn@rockbox.org>2008-01-04 21:07:05 +0000
commitd3586837fa9221a7ef104550b4c0aadc1a6ea77c (patch)
tree9e25efe160052fc4184304907b0009b5b2cf0267 /apps/plugins/searchengine
parente6e5697212943ccb35e94664b138f9289d2758b4 (diff)
downloadrockbox-d3586837fa9221a7ef104550b4c0aadc1a6ea77c.tar.gz
rockbox-d3586837fa9221a7ef104550b4c0aadc1a6ea77c.zip
Stop wasting binary size + ram for several plugins. Plugins are supposed to be linked with --gc-sections, in case they use plugin library elements.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15997 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/searchengine')
-rw-r--r--apps/plugins/searchengine/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/searchengine/Makefile b/apps/plugins/searchengine/Makefile
index b24c89a4db..7e3cca4940 100644
--- a/apps/plugins/searchengine/Makefile
+++ b/apps/plugins/searchengine/Makefile
@@ -32,7 +32,7 @@ all: $(OUTPUT)
ifndef SIMVER
$(OBJDIR)/searchengine.elf: $(OBJS) $(LINKFILE)
$(call PRINTS,LD $(@F))$(CC) $(CFLAGS) -o $@ $(OBJS) -L$(BUILDDIR) -lplugin -lgcc \
- -T$(LINKFILE) -Wl,-Map,$(OBJDIR)/searchengine.map
+ -T$(LINKFILE) -Wl,--gc-sections -Wl,-Map,$(OBJDIR)/searchengine.map
$(OUTPUT): $(OBJDIR)/searchengine.elf
$(call PRINTS,OBJCOPY $(@F))$(OC) -O binary $< $@