aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>2011-10-20 20:58:08 +0159
committerBernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>2011-10-20 20:58:08 +0159
commita921e278efa9fcf62fbe140b177ec7b3ee891a99 (patch)
tree0c4c471c8f09930f61ee8d7c9ffd745e0ec2e8c0
parent1110f467b89da988c49079e8ddb769f27f327f87 (diff)
downloadsnowball-a921e278efa9fcf62fbe140b177ec7b3ee891a99.tar.gz
snowball: Set TARGET_EXTRA_CFLAGS
Setting TARGET_GLOBAL_CFLAGS here didn't accomplish anything because TARGET_GLOBAL_CFLAGS was reset later by config.mk. TARGET_EXTRA_CFLAGS (introduced in commit 959a2d9f816f14b05e8b9896110b59c389228b5c) is added to TARGET_GLOBAL_CFLAGS at the right time, actually making sure the flags are used. Signed-off-by: Bernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>
-rw-r--r--BoardConfig.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/BoardConfig.mk b/BoardConfig.mk
index 2d29875..5894c4e 100644
--- a/BoardConfig.mk
+++ b/BoardConfig.mk
@@ -53,4 +53,4 @@ BOARD_KERNEL_CMDLINE := omapdss.def_disp=hdmi consoleblank=0
# Snowball uses a Nova A9500 -- Dual-Core Cortex A9
TARGET_CPU_SMP := true
-TARGET_GLOBAL_CFLAGS += -mtune=cortex-a9 -mcpu=cortex-a9
+TARGET_EXTRA_CFLAGS += -mtune=cortex-a9 -mcpu=cortex-a9