mirror of
https://git.yoctoproject.org/poky
synced 2026-02-15 13:13:02 +01:00
Add support for SVE2 and add to 8-2a, as it can be used there. Also, clean up the comments (From OE-Core rev: 683443d57cb18b3b54245b1a09b6e5d2bae4f5d0) Signed-off-by: Jon Mason <jon.mason@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 lines
373 B
PHP
9 lines
373 B
PHP
# Scalable Vector Extension (SVE) for Armv8-A and R
|
|
# Enabled by default for Armv9
|
|
|
|
TUNEVALID[sve] = "Enable SVE instructions for ARMv8"
|
|
TUNE_CCARGS_MARCH_OPTS .= "${@bb.utils.contains('TUNE_FEATURES', 'sve', '+sve', '', d)}"
|
|
|
|
TUNEVALID[sve2] = "Enable SVE2 instructions for ARMv8"
|
|
TUNE_CCARGS_MARCH_OPTS .= "${@bb.utils.contains('TUNE_FEATURES', 'sve2', '+sve2', '', d)}"
|