mirror of
https://git.yoctoproject.org/poky
synced 2026-02-23 18:09:40 +01:00
SIMD instructions are a mandatory part of armv8a (they were optional in armv7a), and the gcc docs also say that they are always enabled. (From OE-Core rev: 02288c94e99e9dd444d8c1af186b6d89085b7b8b) Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 lines
576 B
PHP
14 lines
576 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"
|
|
BASE_LIB_tune-cortexa72 = "lib64"
|