diff options
| author | Karl Kurbjun <kkurbjun@gmail.com> | 2006-12-13 06:52:10 +0000 |
|---|---|---|
| committer | Karl Kurbjun <kkurbjun@gmail.com> | 2006-12-13 06:52:10 +0000 |
| commit | 29a13872d747ec8754195ed607ca1627b577e2e2 (patch) | |
| tree | 9bda085f31b3f1b44e920452139ddd46842dba4f /apps/plugins/doom/Makefile | |
| parent | 4084b5d478f079dbe0b30a42cf63fac1d2f118da (diff) | |
| download | rockbox-29a13872d747ec8754195ed607ca1627b577e2e2.zip rockbox-29a13872d747ec8754195ed607ca1627b577e2e2.tar.gz rockbox-29a13872d747ec8754195ed607ca1627b577e2e2.tar.bz2 rockbox-29a13872d747ec8754195ed607ca1627b577e2e2.tar.xz | |
Free more plugin memory
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11743 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/doom/Makefile')
| -rw-r--r-- | apps/plugins/doom/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/apps/plugins/doom/Makefile b/apps/plugins/doom/Makefile index 16a47ee..3565612 100644 --- a/apps/plugins/doom/Makefile +++ b/apps/plugins/doom/Makefile @@ -3,7 +3,10 @@ # $Id$ # # $Log$ -# Revision 1.12 2006/12/13 05:46:51 kkurbjun +# Revision 1.13 2006/12/13 06:52:09 kkurbjun +# Free more plugin memory +# +# Revision 1.12 2006-12-13 05:46:51 kkurbjun # Will it fit? # # Revision 1.11 2006-12-13 04:44:17 kkurbjun @@ -53,11 +56,13 @@ endif # The arm code compiles too large for the plugin buffer when set to optimize for speed #ifeq ($(CC), arm-elf-gcc) -ifneq (,$(strip $(foreach tgt,IPOD_NANO IPOD_COLOR IPOD_VIDEO IPOD_MINI IPOD_3G IPOD_4G IRIVER_H10_5GB IRIVER_H10,$(findstring $(tgt),$(TARGET))))) +ifneq (,$(strip $(foreach tgt,SANSA_E200 IPOD_NANO IPOD_COLOR IPOD_VIDEO IPOD_MINI IPOD_3G IPOD_4G IRIVER_H10_5GB IRIVER_H10,$(findstring $(tgt),$(TARGET))))) CFLAGS += -Os ifndef SIMVER +ifeq ($(TARGET), IRIVER_H100) CFLAGS += -mstructure-size-boundary=8 endif +endif else CFLAGS += -O2 endif |