From c16d68bc60d7e6e90cc8358aa6e0674a2f57faa2 Mon Sep 17 00:00:00 2001 From: Patrick O'Neill Date: Fri, 8 Sep 2023 13:56:57 -0700 Subject: [PATCH] Specify vector spec v1.0 in QEMU arguments. Some testcases in GCC's testsuite check stdout. Qemu will print a warning if the vector spec is not specified which will cause those testcases to fail. The warning: vector version is not specified, use the default value v1.0 Signed-off-by: Patrick O'Neill --- scripts/march-to-cpu-opt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/march-to-cpu-opt b/scripts/march-to-cpu-opt index 752cf03135b..493ab1399f6 100755 --- a/scripts/march-to-cpu-opt +++ b/scripts/march-to-cpu-opt @@ -12,7 +12,7 @@ EXT_OPTS = { "zbb": "zbb=true", "zbc": "zbc=true", "zbs": "zbs=true", - "v": "v=true", + "v": "v=true,vext_spec=v1.0", "zve32f": "Zve32f=true", "zve64f": "Zve64f=true", "zfh": "Zfh=true",