mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 15:29:40 +01:00
Now that they uses -mcpu, its better to have tune specific build directories, since aarch64 wont be appropriate any longer (From OE-Core rev: 030cd9021ef50d71482f6acf0e05fe425038c822) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
15 lines
628 B
PHP
15 lines
628 B
PHP
DEFAULTTUNE ?= "cortexa72"
|
|
|
|
TUNEVALID[cortexa72] = "Enable Cortex-A72 specific processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'cortexa72', ' -mcpu=cortex-a72', '', d)}"
|
|
|
|
require conf/machine/include/arm/arch-armv8a.inc
|
|
|
|
# Little Endian base configs
|
|
AVAILTUNES += "cortexa72"
|
|
ARMPKGARCH_tune-cortexa72 = "cortexa72"
|
|
TUNE_FEATURES_tune-cortexa72 = "aarch64 cortexa72 crc crypto"
|
|
PACKAGE_EXTRA_ARCHS_tune-cortexa72 = "${PACKAGE_EXTRA_ARCHS_tune-armv8a-crc-crypto} cortexa72"
|
|
TUNE_PKGARCH_tune-cortexa72 = "cortexa72"
|
|
BASE_LIB_tune-cortexa72 = "lib64"
|