summaryrefslogtreecommitdiff
path: root/apps/plugins/pacbox/Makefile
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/pacbox/Makefile
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/pacbox/Makefile')
-rw-r--r--apps/plugins/pacbox/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/pacbox/Makefile b/apps/plugins/pacbox/Makefile
index 7a62d98462..e1b998a7aa 100644
--- a/apps/plugins/pacbox/Makefile
+++ b/apps/plugins/pacbox/Makefile
@@ -35,7 +35,7 @@ all: $(OUTPUT)
35ifndef SIMVER 35ifndef SIMVER
36$(OBJDIR)/pacbox.elf: $(OBJS) $(LINKFILE) 36$(OBJDIR)/pacbox.elf: $(OBJS) $(LINKFILE)
37 $(call PRINTS,LD $(@F))$(CC) $(CFLAGS) -o $@ $(OBJS) -L$(BUILDDIR) -lplugin -lgcc \ 37 $(call PRINTS,LD $(@F))$(CC) $(CFLAGS) -o $@ $(OBJS) -L$(BUILDDIR) -lplugin -lgcc \
38 -T$(LINKFILE) -Wl,-Map,$(OBJDIR)/pacbox.map 38 -T$(LINKFILE) -Wl,--gc-sections -Wl,-Map,$(OBJDIR)/pacbox.map
39 39
40$(OUTPUT): $(OBJDIR)/pacbox.elf 40$(OUTPUT): $(OBJDIR)/pacbox.elf
41 $(call PRINTS,OBJCOPY $(@F))$(OC) -O binary $< $@ 41 $(call PRINTS,OBJCOPY $(@F))$(OC) -O binary $< $@