From 27f7248eac04852b116398d7b31230a9848f5908 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Thu, 25 Jul 2024 16:10:58 +0100 Subject: [PATCH] arm-gcs: set compiler tune to 8.0 This matches the behaviour from mainstream distributions which don't tune for 8.4. Signed-off-by: Ross Burton --- meta-arm-gcs/gcs.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta-arm-gcs/gcs.yml b/meta-arm-gcs/gcs.yml index 06aad95d..f8a196c0 100644 --- a/meta-arm-gcs/gcs.yml +++ b/meta-arm-gcs/gcs.yml @@ -37,6 +37,9 @@ local_conf_header: CORE_IMAGE_EXTRA_INSTALL += "ssh-pregen-hostkeys" fvp_options: | + # Set the instruction set tune to 8.0 to match binary distributions + DEFAULTTUNE = "armv8a-crc" + # Set the cores to v9.4 and turn on more features FVP_CONFIG[cluster0.has_arm_v9-4] = "1" FVP_CONFIG[cluster1.has_arm_v9-4] = "1"