mirror of
git://git.yoctoproject.org/poky
synced 2026-05-18 21:50:43 +00:00
* 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.
(From OE-Core rev: f7bb2d4cf18ca8d2a90b4b3b5c6c48dad106ca28)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
15 lines
576 B
PHP
15 lines
576 B
PHP
# Configurations for the Intel PXA27x Appications Processor Family.
|
|
# Please use tune-xscale for PXA255/PXA26x based processors.
|
|
|
|
DEFAULTTUNE ?= "iwmmxt"
|
|
|
|
require conf/machine/include/arm/arch-armv5-dsp.inc
|
|
|
|
TUNEVALID[iwmmxt] = "Enable Intel PXA27x specific processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'iwmmxt', ' -march=iwmmxt -mcpu=iwmmxt', '', d)}"
|
|
|
|
AVAILTUNES += "iwmmxt"
|
|
ARMPKGARCH_tune-iwmmxt = "iwmmxt"
|
|
TUNE_FEATURES_tune-iwmmxt = "thumb iwmmxt"
|
|
PACKAGE_EXTRA_ARCHS_tune-iwmmxt = "${PACKAGE_EXTRA_ARCHS_tune-armv5te} iwmmxt iwmmxtt"
|