From 861b91d9757ac4b2e15ee99d52cef230d07409e9 Mon Sep 17 00:00:00 2001 From: Oliver Smith-Denny Date: Mon, 28 Oct 2024 10:56:07 -0700 Subject: ArmVirtPkg: Add RNDR Support to QEMU In order to use dynamic stack cookies in ArmVirtQemu, we need RNDR support. This is added by using the neoverse-n2 cpu. Signed-off-by: Oliver Smith-Denny --- ArmVirtPkg/PlatformCI/PlatformBuildLib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArmVirtPkg/PlatformCI/PlatformBuildLib.py b/ArmVirtPkg/PlatformCI/PlatformBuildLib.py index ccc61feaff..3ba6dea561 100644 --- a/ArmVirtPkg/PlatformCI/PlatformBuildLib.py +++ b/ArmVirtPkg/PlatformCI/PlatformBuildLib.py @@ -235,7 +235,7 @@ class PlatformBuilder(UefiBuilder, BuildSettingsManager): if (self.env.GetValue("TARGET_ARCH").upper() == "AARCH64"): cmd = "qemu-system-aarch64" args = "-M virt" - args += " -cpu cortex-a57" # emulate cpu + args += " -cpu neoverse-n2" # emulate cpu elif(self.env.GetValue("TARGET_ARCH").upper() == "ARM"): cmd = "qemu-system-arm" args = "-M virt,highmem=off" -- cgit