aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2018-05-09 10:31:30 +0100
committerAlex Bennée <alex.bennee@linaro.org>2018-06-20 20:22:34 +0100
commit29e0436e3d86f750bed6ab2ff3132aeabb72c92a (patch)
tree175523216ca74820acdcece2972f7c0d39832812 /tests/tcg
parent65eab0f8cb2b13e03b8608fd255e4bc0c5df5a59 (diff)
downloadqemu-29e0436e3d86f750bed6ab2ff3132aeabb72c92a.zip
qemu-29e0436e3d86f750bed6ab2ff3132aeabb72c92a.tar.gz
qemu-29e0436e3d86f750bed6ab2ff3132aeabb72c92a.tar.bz2
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>
Diffstat (limited to 'tests/tcg')
-rw-r--r--tests/tcg/aarch64/Makefile.include8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/tcg/aarch64/Makefile.include b/tests/tcg/aarch64/Makefile.include
new file mode 100644
index 0000000..de32c91
--- /dev/null
+++ b/tests/tcg/aarch64/Makefile.include
@@ -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