diff options
Diffstat (limited to 'meta/conf/machine/include/tune-iwmmxt.inc')
-rw-r--r-- | meta/conf/machine/include/tune-iwmmxt.inc | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/meta/conf/machine/include/tune-iwmmxt.inc b/meta/conf/machine/include/tune-iwmmxt.inc index 6bb76d5b32..14f59555a0 100644 --- a/meta/conf/machine/include/tune-iwmmxt.inc +++ b/meta/conf/machine/include/tune-iwmmxt.inc | |||
@@ -1,8 +1,16 @@ | |||
1 | require conf/machine/include/arm/arch-arm.inc | ||
2 | |||
3 | # Configurations for the Intel PXA27x Appications Processor Family. | 1 | # Configurations for the Intel PXA27x Appications Processor Family. |
4 | # Please use tune-xscale for PXA255/PXA26x based processors. | 2 | # Please use tune-xscale for PXA255/PXA26x based processors. |
5 | TUNE_CCARGS = "-march=iwmmxt -mcpu=iwmmxt -mtune=iwmmxt" | 3 | |
6 | PACKAGE_EXTRA_ARCHS = "arm armv4 armv4t armv5te iwmmxt" | 4 | DEFAULTTUNE ?= "iwmmxt" |
7 | TUNE_PKGARCH = "iwmmxt" | 5 | ARMPKGARCH ?= "iwmmxt" |
6 | |||
7 | require conf/machine/include/arm/arch-armv5-dsp.inc | ||
8 | |||
9 | TUNEVALID[iwmmxt] = "Enable Intel PXA27x specific processor optimizations" | ||
10 | TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "iwmmxt", "-march=iwmmxt -mtune=iwmmxt", "", d)}" | ||
11 | |||
12 | AVAILTUNES += "iwmmxt" | ||
13 | TUNE_FEATURES_tune-iwmmxt = "thumb iwmmxt" | ||
14 | PACKAGE_EXTRA_ARCHS_tune-iwmmxt = "${PACKAGE_EXTRA_ARCHS_tune-armv5te} iwmmxt" | ||
15 | |||
8 | 16 | ||