blob: bdae3d8fc30007d94c28a015f70e2262a0516271 [file] [log] [blame]
Patrick Williams73bd93f2024-02-20 08:07:48 -06001# Scalable Vector Extension (SVE) for Armv8-A and R
2# Enabled by default for Armv9
Andrew Geissler5082cc72023-09-11 08:41:39 -04003
Patrick Williams73bd93f2024-02-20 08:07:48 -06004TUNEVALID[sve] = "Enable SVE instructions for ARMv8"
Andrew Geissler5082cc72023-09-11 08:41:39 -04005TUNE_CCARGS_MARCH_OPTS .= "${@bb.utils.contains('TUNE_FEATURES', 'sve', '+sve', '', d)}"
Patrick Williams73bd93f2024-02-20 08:07:48 -06006
7TUNEVALID[sve2] = "Enable SVE2 instructions for ARMv8"
8TUNE_CCARGS_MARCH_OPTS .= "${@bb.utils.contains('TUNE_FEATURES', 'sve2', '+sve2', '', d)}"