aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>2011-12-06 19:37:35 +0059
committerBernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>2011-12-06 19:37:35 +0059
commit59de27577b64b81c873254c6c67fb543c401801d (patch)
tree429c592499d903c3321aa2b7b2d2d94cb96d2d30
parent1a9a0d717331566776968168dc14930ac9a527d1 (diff)
downloadsnowball-59de27577b64b81c873254c6c67fb543c401801d.tar.gz
snowball: Set TARGET_EXTRA_CFLAGS
Use CPU specific optimizations if available Signed-off-by: Bernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>
-rw-r--r--BoardConfig.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/BoardConfig.mk b/BoardConfig.mk
index d753f62..563196b 100644
--- a/BoardConfig.mk
+++ b/BoardConfig.mk
@@ -41,3 +41,6 @@ BOARD_FLASH_BLOCK_SIZE := 4096
#TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true
#TARGET_USE_GATOR:= true
+
+# Snowball uses a Nova A9500 -- Dual-Core Cortex A9
+TARGET_EXTRA_CFLAGS += $(call cc-option,-mtune=cortex-a9,$(call cc-option,-mtune=cortex-a8)) $(call cc-option,-mcpu=cortex-a9,$(call cc-option,-mcpu=cortex-a8))