diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2015-10-06 17:01:24 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-07 13:40:08 +0000 |
commit | f7bb2d4cf18ca8d2a90b4b3b5c6c48dad106ca28 (patch) | |
tree | 49844d933e95a5741193998a5a07815ff156f9ae /meta/conf/machine/include/tune-cortexa15.inc | |
parent | 35392025f3236f5e5393f9cf0857732da9a2e503 (diff) | |
download | openembedded-core-f7bb2d4cf18ca8d2a90b4b3b5c6c48dad106ca28.tar.gz openembedded-core-f7bb2d4cf18ca8d2a90b4b3b5c6c48dad106ca28.tar.bz2 openembedded-core-f7bb2d4cf18ca8d2a90b4b3b5c6c48dad106ca28.zip |
tune-*: use mcpu instead of mtune for ARM tunes
* since:
commit cffda9a821a3b83a8529d643c567859e091c6846
Author: Martin Jansa <Martin.Jansa@gmail.com>
Date: Tue Sep 11 17:05:45 2012 +0000
arch-arm: define different ARMPKGARCH when different CCARGS are used
we don't need to worry about e.g. cortexa7 device upgrading
binary package from armv7a feed which would be built with
-mcpu=cortexa15, so we can use -mcpu instead of -mtune, because
we won't share the binary feed with MACHINEs built with different
tune.
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/conf/machine/include/tune-cortexa15.inc')
-rw-r--r-- | meta/conf/machine/include/tune-cortexa15.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/machine/include/tune-cortexa15.inc b/meta/conf/machine/include/tune-cortexa15.inc index cfc81517ee..a33b27f327 100644 --- a/meta/conf/machine/include/tune-cortexa15.inc +++ b/meta/conf/machine/include/tune-cortexa15.inc @@ -3,7 +3,7 @@ DEFAULTTUNE ?= "armv7ve-neon" require conf/machine/include/arm/arch-armv7ve.inc TUNEVALID[cortexa15] = "Enable Cortex-A15 specific processor optimizations" -TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'cortexa15', ' -mtune=cortex-a15', '', d)}" +TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'cortexa15', ' -mcpu=cortex-a15', '', d)}" # Little Endian base configs AVAILTUNES += "cortexa15 cortexa15t cortexa15-neon cortexa15t-neon cortexa15-neon-vfpv4 cortexa15t-neon-vfpv4" |