mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 18:32:13 +02: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 ?= "cortexa55"
|
|
|
|
TUNEVALID[cortexa55] = "Enable Cortex-A55 specific processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'cortexa55', ' -mcpu=cortex-a55', '', d)}"
|
|
|
|
require conf/machine/include/arm/arch-armv8a.inc
|
|
|
|
# Little Endian base configs
|
|
AVAILTUNES += "cortexa55"
|
|
ARMPKGARCH_tune-cortexa55 = "cortexa55"
|
|
TUNE_FEATURES_tune-cortexa55 = "aarch64 cortexa55 crc crypto"
|
|
TUNE_PKGARCH_tune-cortexa55 = "cortexa55"
|
|
PACKAGE_EXTRA_ARCHS_tune-cortexa55 = "${PACKAGE_EXTRA_ARCHS_tune-armv8a-crc-crypto} cortexa55"
|
|
BASE_LIB_tune-cortexa55 = "lib64"
|