forked from len0rd/rockbox
mikmod: enable compiler optimizations for coldfire, they were disabled to work around a bug in the old toolchain.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30427 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
6cb5ec1bfe
commit
060b3fa4f1
1 changed files with 1 additions and 6 deletions
|
@ -18,12 +18,7 @@ MIKMOD_OBJ := $(call c2obj, $(MIKMOD_SRC))
|
|||
# add source files to OTHER_SRC to get automatic dependencies
|
||||
OTHER_SRC += $(MIKMOD_SRC)
|
||||
|
||||
MIKMODCFLAGS = $(PLUGINFLAGS) -I$(MIKMODSRCDIR)
|
||||
ifeq ($(CPU),coldfire)
|
||||
MIKMODCFLAGS += -O0
|
||||
else
|
||||
MIKMODCFLAGS += -O2
|
||||
endif
|
||||
MIKMODCFLAGS = $(PLUGINFLAGS) -I$(MIKMODSRCDIR) -O2
|
||||
|
||||
$(MIKMODBUILDDIR)/mikmod.rock: $(MIKMOD_OBJ) $(CODECDIR)/libtlsf.a
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue