mirror of https://gitee.com/openkylin/qemu.git
tests/tcg: enable building for AArch64
We only have compilers for the (default) little endian variants. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
This commit is contained in:
parent
65eab0f8cb
commit
29e0436e3d
|
@ -136,6 +136,7 @@ L: qemu-arm@nongnu.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: target/arm/
|
F: target/arm/
|
||||||
F: tests/tcg/arm/
|
F: tests/tcg/arm/
|
||||||
|
F: tests/tcg/aarch64/
|
||||||
F: hw/arm/
|
F: hw/arm/
|
||||||
F: hw/cpu/a*mpcore.c
|
F: hw/cpu/a*mpcore.c
|
||||||
F: include/hw/cpu/a*mpcore.h
|
F: include/hw/cpu/a*mpcore.h
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
# Makefile.include for AArch64 targets
|
||||||
|
#
|
||||||
|
# We don't have any bigendian build tools so we only use this for AArch64
|
||||||
|
|
||||||
|
ifeq ($(TARGET_NAME),aarch64)
|
||||||
|
DOCKER_IMAGE=debian-arm64-cross
|
||||||
|
DOCKER_CROSS_COMPILER=aarch64-linux-gnu-gcc
|
||||||
|
endif
|
Loading…
Reference in New Issue