Build Tremor with -O3 for coldfire targets, gives a slight increase in speed, remember to make clean.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13598 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nils Wallménius 2007-06-08 22:51:39 +00:00
parent 7b1d90a851
commit a85793fc54

View file

@ -14,7 +14,13 @@ ifdef APPEXTRA
INCLUDES += $(patsubst %,-I$(APPSDIR)/%,$(subst :, ,$(APPEXTRA)))
endif
# Tremor is slightly faster on coldfire with -O3
ifeq ($(CPU),coldfire)
TREMOROPTS = -O3
else
TREMOROPTS = -O2
endif
CFLAGS = $(INCLUDES) $(GCCOPTS) $(TARGET_INC) $(TREMOROPTS) $(TARGET) \
$(EXTRA_DEFINES) -DMEM=${MEMORYSIZE} ${PROFILE_OPTS}