e73d59675d
Running test-fcvtmod triggers the following deprecation warning: warning: CPU property 'Zfa' is deprecated. Please use 'zfa' instead Let's fix that. Signed-off-by: Christoph Müllner <christoph.muellner@vrull.eu> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-ID: <20240229180656.1208881-1-christoph.muellner@vrull.eu> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
21 lines
509 B
Makefile
21 lines
509 B
Makefile
# -*- Mode: makefile -*-
|
|
# RISC-V specific tweaks
|
|
|
|
VPATH += $(SRC_PATH)/tests/tcg/riscv64
|
|
TESTS += test-div
|
|
TESTS += noexec
|
|
|
|
# Disable compressed instructions for test-noc
|
|
TESTS += test-noc
|
|
test-noc: LDFLAGS = -nostdlib -static
|
|
run-test-noc: QEMU_OPTS += -cpu rv64,c=false
|
|
|
|
TESTS += test-aes
|
|
run-test-aes: QEMU_OPTS += -cpu rv64,zk=on
|
|
|
|
# Test for fcvtmod
|
|
TESTS += test-fcvtmod
|
|
test-fcvtmod: CFLAGS += -march=rv64imafdc
|
|
test-fcvtmod: LDFLAGS += -static
|
|
run-test-fcvtmod: QEMU_OPTS += -cpu rv64,d=true,zfa=true
|