ca1e9c3ba1
Use a shared driver and backends for i386, aarch64, ppc64, riscv64. Acked-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
15 lines
335 B
Makefile
15 lines
335 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
|